i'm trying to create login in flash using PHP
i have 2 input text (user, pass) & submit button in flash.
on submit i have action:
on (release) {
loadVariables("login.php", _root.test1, "GET");
}
php script returns variable access=allowed
but i have 1 problem:
flash doesn't know, when variables coming in.
one movie_clip has action:
if (access = allowed) (
gotoAndPlay(3)
)
and this movie clip loops (on 1st there is action, and then there are 5 free frames)
I tested it with dynamic text (access), and all was ok, but it still doesn't work
Please, Help me!!
Tomot