What the URL Does |
URL Syntax |
Run an application Open a file Run an application and close the EZPresentation Window |
|
Display a message Display a message with custom OK button Display a message with 2 buttons |
|
Ask questions and respond accordingly |
ezp:if(msg('Please select:','Option A','Option B')=0,msg('You chose A'),msg('You chose B')) |
Perform a series of tasks in order. |
ezp:seq(msg('Click OK to start'),wait(1.5),open('sample.exe')) |
Play a WAV or MP3 (or other audio) file Play an AVI (or other video) file |
|
Set a variable Get a variable Set a registry value Get a registry value |
ezp:setvar(1,0) -- ezp:setvar(1,1) ezp:if(getvar(1)=1,msg('Variable #1 equals 1'),msg('Variable #1 is not 1')) ezp:setregint('HKEY_CURRENT_USER\Software\EZPresentation','Test',0) -- ezp:setregint('HKEY_CURRENT_USER\Software\EZPresentation','Test',1) |
Browse to a new location Bring a small popup browser window up View standard web page in default browser |
|
Close the browser |