Code: Select all
^p::
WinActivate, DaVinci Resolve by Blackmagic Design - 17.0.0
WinWaitActive, DaVinci Resolve by Blackmagic Design - 17.0.0
Send !f
return
Code: Select all
^p::
WinActivate, DaVinci Resolve by Blackmagic Design - 17.0.0
WinWaitActive, DaVinci Resolve by Blackmagic Design - 17.0.0
Send !f
return
Code: Select all
Sleep, 300000
Progress,B2 fs18 c0 zh0 w200 h30 CWcf9797 cbBlack,You Are Notified
Sleep, 2000
Progress, off
reload
^Esc::ExitApp ; Ctrl+Esc to exit the script
Code: Select all
Run, %A_WinDir%\SysNative\soundrecorder.exe "/file outputfile.wav"
Code: Select all
Run, %comspec% /c "%A_WinDir%\system32\soundrecorder.exe"
Code: Select all
Run, %comspec% /c "%A_WinDir%\system32\soundrecorder.exe /file outputfile.wav"
Code: Select all
Run, %comspec% /c "%A_WinDir%\SysNative\soundrecorder.exe /file outputfile.wav"
Code: Select all
run, SoundRecorder.exe
Code: Select all
run, soundrecorder /file "C:\some folder\outputfile.wav", C:\Windows\Sysnative
Code: Select all
string := "-0.0032 "
string2 := "0.0032 "
Hallo := StrReplace(string, "0." , ".")
Hallo2 := StrReplace(string2, "0." , ".")
MsgBox, % Hallo
MsgBox, % Hallo2
Code: Select all
stopOn := "\)"
Code: Select all
n = 9223372036854775806
maxnum = 9223372036854775807
minnum = -9223372036854775808
if (n >= maxnum || n <= minnum){
MsgBox, Outside allowed range
return
}
if (n >= maxnum || n <= "0")
MsgBox, Not allowed
else
MsgBox, allowed
Code: Select all
n = 50
maxnum = 50
if (n >= maxnum + 1) || if (n <= "0")
MsgBox, Not allowed
else
MsgBox, allowed
Code: Select all
if (n >= maxnum) || if (n <= "0")
MsgBox, Not allowed range %n%
else
MsgBox, Allowed range %n%