Sorry for stupid question... it`s my first project..![]()
I created project with menu bar and two pages:
page1
page2
every page contains 1 web object - web1 with default url:
http://myproject.com/index.php
also i created script for function keys in page1/properties/script/On Key:
and same script on page2/properties/script/On KeyCode:if e_Key == 112 then Page.Jump("page1"); elseif e_Key == 113 then Page.Jump("page2"); -- elseif e_Key == 114 then Page.Jump("page1"); Web.LoadURL("Web1", "http://myproject.com/index.php?s=888"); elseif e_Key == 115 then Page.Jump("page2"); Web.LoadURL("Web1", "http://myproject.com/index.php?s=999"); end
Next i`m created script for main menu project/actions/On Menu:
------------------------------------------Code:if e_ID == 999 then Application.Exit(0); elseif e_ID == 101 then Page.Jump("page1"); elseif e_ID == 102 then Page.Jump("page2"); -- elseif e_ID == 103 then Page.Jump("page1"); Web.LoadURL("Web1", "http://myproject.com/index.php?s=666"); elseif e_ID == 104 then Page.Jump("page2"); Web.LoadURL("Web1", "http://myproject.com/index.php?s=999"); end
When (in compiled and running project) i`m pressing F3, page1 loads with default (http://myproject.com/index.php) url in Web1 window.
Also when i`m select this pages ( http://myproject.com/index.php?s=999 or http://myproject.com/index.php?s=666 ) from main menu - nothing happened.. pages always opened with default (http://myproject.com/index.php) url in Web1 window![]()
Where i`m missing ? Help please a.s.a.p
Thanks in advance..

) where i can insert this script?