kakashi Posted December 10, 2008 Posted December 10, 2008 (edited) Hey guy'sI never had problems with scripts beforethe only one that i couldn't understand is the Msgboxhere is an example$ash = msgbox(4, "Installing", "Do You Want To Install Software?!") If $ash - 7 Then MsgBox(0, "Exit", "OK. Bye!") Exit EndIf MsgBox(0, "ok", "the software will be installed now!") ExitUnfortunately there is something wrong somewareand I'm too stupid to know what is it LOLso please help me out if U canthanks a lotlater~ Edited December 10, 2008 by kakashi
toonboon Posted December 10, 2008 Posted December 10, 2008 Please state the error-message that you are getting. [right]~What can I say, I'm a Simplistic person[/right]
Andreik Posted December 10, 2008 Posted December 10, 2008 $ash = msgbox(4, "Installing", "Do You Want To Install Software?!") If $ash = 7 Then MsgBox(0, "Exit", "OK. Bye!") Exit EndIf MsgBox(0, "ok", "the software will be installed now!")
99ojo Posted December 10, 2008 Posted December 10, 2008 Hey guy'sI never had problems with scripts beforethe only one that i couldn't understand is the Msgboxhere is an exampleUnfortunately there is something wrong somewareand I'm too stupid to know what is it LOLso please help me out if U canthanks a lotlater~change If $ash - 7 to If $ash = 7, then it should work.;-))Stefan
Andreik Posted December 10, 2008 Posted December 10, 2008 (edited) change If $ash - 7 to If $ash = 7, then it should work.;-))StefanOtherwise may be If $ash - 6 Then ;then condition is true and the code work correctly Edited December 10, 2008 by Andreik
kakashi Posted December 10, 2008 Author Posted December 10, 2008 (edited) Thanks a lot guy's you rock!! Edited December 10, 2008 by kakashi
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now