Page 1 of 1

Encrypt a text

Posted: Wed Feb 18, 2009 7:37 pm
by avelasco
To protect a stack, I used the following procedure:
1. In the first card I include a botton with the following script:

on mouseUp
ask "ESCREVA A PASSWORD"
global clave
put it into clave
if clave is "tvzdt" then go to next card
end mouseUp

I want to encrypt the text that appears in the dialog box.

How can I do it?

Posted: Wed Feb 18, 2009 10:19 pm
by Klaus
Hi avelasco,

maybe this does what you want? See the first line!
I hope I understand you correct.

Code: Select all

on mouseUp 
  ask PASSWORD CLEAR "ESCREVA A PASSWORD" 
  global clave 
  put it into clave 
  if clave is "tvzdt" then 
     go to next card 
  end if
end mouseUp 
Best from germany

Klaus