Jacobo
07-29-2008, 01:59 AM
I have three custom actions:
CUSTOMACTION1 -> Execute vbscript
CUSTOMACTION2 -> Execute vbscript
CUSTOMACTION3 -> Execute LUA script
On the Exit Dialog (exit success), I have published three events for the Finish Button (the last button viewed during de installation progress...). I have specified the numeric timing secuence to do this action in order. The last published event executes his the default published action (Event: Dialog --- Return).
Definitively, when i push Finish button, CUSTOMACTION1 and CUSTOMACTION2 are executed, but CUSTOMACTION3 (exe LUA) do nothing.
This LUA script file only have one sentence:
Dialog.Message("Hello","Hello", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
-------------------------------------------
That are the options for CUSTOMACTION3:
Scheduling: Inmediate.
Return: Ignore.
Supress modularization: unchecked.
Timing secuence empty.
------------------------------------------
Published Events for Finish button:
Event: DoAction Value: CUSTOMACTION1 (timing secuence 996).
Event: DoAction Value: CUSTOMACTION2 (timing secuence 997).
Event: DoAction Value: CUSTOMACTION3 (timing secuence 998).
Event: EndDialog Value:Return (timing secuence 999).
-----------------------------------------
What is the problem?
CUSTOMACTION1 -> Execute vbscript
CUSTOMACTION2 -> Execute vbscript
CUSTOMACTION3 -> Execute LUA script
On the Exit Dialog (exit success), I have published three events for the Finish Button (the last button viewed during de installation progress...). I have specified the numeric timing secuence to do this action in order. The last published event executes his the default published action (Event: Dialog --- Return).
Definitively, when i push Finish button, CUSTOMACTION1 and CUSTOMACTION2 are executed, but CUSTOMACTION3 (exe LUA) do nothing.
This LUA script file only have one sentence:
Dialog.Message("Hello","Hello", MB_OK, MB_ICONINFORMATION, MB_DEFBUTTON1);
-------------------------------------------
That are the options for CUSTOMACTION3:
Scheduling: Inmediate.
Return: Ignore.
Supress modularization: unchecked.
Timing secuence empty.
------------------------------------------
Published Events for Finish button:
Event: DoAction Value: CUSTOMACTION1 (timing secuence 996).
Event: DoAction Value: CUSTOMACTION2 (timing secuence 997).
Event: DoAction Value: CUSTOMACTION3 (timing secuence 998).
Event: EndDialog Value:Return (timing secuence 999).
-----------------------------------------
What is the problem?