Archive: invalid opcode??


invalid opcode??
Hi! I have already searched the forum for this and I know that this error is due to an invalid jump statement. But the problem is I do not know which jump statement. I also read the documentation on relative jumps but i still dont get it. I am posting my script below and I hope that someone would reply soon as I only have till friday to finish my installer and this is the very last part. After friday i would be done with my attachment. Thank you!


have a look at the lines 322 and 325 of your script:

continue: Pop ${TEMP1}
...
kill: MessageBox MB_OK|MB_ICONSTOP "Sorry! You have exceded the maximum number of tries. Setup will exit now."

won't work.
must be:
continue:
Pop ${TEMP1}
...
kill:
MessageBox MB_OK|MB_ICONSTOP "Sorry! You have exceded the maximum number of tries. Setup will exit now."

Thanks Comm@nder21, my code works fine now. I appreciate your help!