Custom Query
Results (34 - 36 of 3894)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #1448 | Fixed | #OnAutoItStartRegister ignored in compiled scripts | Valik | jchd |
| Description |
#OnAutoItStartRegister "function" works as expected from interpretor, but doesn't from the same script when compiled. #OnAutoItStartRegister "MsgFunc" MsgBox(0, "", "Did you see the other message?") Func MsgFunc() MsgBox(0, "", "#OnAutoItStartRegister doing its job.") EndFunc That seems to affect all platforms, from various confirmations arrived in thread http://www.autoitscript.com/forum/index.php?showtopic=109341 |
|||
| #1760 | Fixed | #OnAutoItStartRegister, ignores single quoted function names. | trancexx | mvg |
| Description |
More a general inconsistency than anything else.
#OnAutoItStartRegister "MyTestFunc1"
#OnAutoItStartRegister 'MyTestFunc2'
Sleep(1000)
Func MyTestFunc1()
MsgBox(64, "Start Results 2", 'Start Message from MyTestFunc1()')
EndFunc
Func MyTestFunc2()
MsgBox(64, "Start Results 3", 'Start Message from MyTestFunc()')
EndFunc
Running:(3.3.6.1), Environment(Language:0409 Keyboard:00000409 OS:WIN_XP/Service Pack 3 CPU:X86 OS:X86) |
|||
| #329 | Works For Me | #RequireAdmin | anixon | |
| Description |
#RequireAdmin RegWrite("HKLM\SOFTWARE\Test", "TestKey", "REG_SZ", "Hello this is a test") Exit If you run this script in SciTE Tools/Go the registry value is not written. If you compile the script to an *.exe then run the executable the value is written to registry. |
|||
