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?
Encrypt a text
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hi avelasco,
maybe this does what you want? See the first line!
I hope I understand you correct.
Best from germany
Klaus
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
Klaus