mmikeww / AHK-v2-script-converter

AHK v1 -> v2 script converter
https://autohotkey.com/boards/viewtopic.php?f=6&t=25100
The Unlicense
580 stars 44 forks source link

Add comment "; V1toV2: Not currently supported ->" #264

Closed fade2gray closed 4 months ago

fade2gray commented 4 months ago

Change some comments from "; V1toV2: Removed" to "; V1toV2: Not currently supported ->"

V1 code SoundGetWaveVolume, OutputVar SoundSetWaveVolume, 50 SoundGet, bass_level, Master, Bass SoundSet, +20, Master, Bass

V2 converted ; V1toV2: Not currently supported -> SoundGetWaveVolume, OutputVar ; V1toV2: Not currently supported -> SoundSetWaveVolume, 50 ; V1toV2: Not currently supported -> CV2 bass_level := SoundGetBass("Master") ; V1toV2: Not currently supported -> CV2 SoundsetBass(+20, "Master")