Ludatha
07-31-2008, 03:01 PM
Ok, I have a movie clip with these actions applied to it:
onClipEvent (load) {
GID = "frontpage.php?id=01";
url = "frontpage.php?url=01";
}
Inside that is some text inside a movie clip and a button, the text has these actions applied to it:
onClipEvent (load) {
loadVariables(GID, this, "GET");
}
The Button has these actions applied to it:
on (release) {
getURL(url);
}
When I run it, I get no errors, but if I click the button, it will go to the url set in the variable, but the text doesnt show anything, if I change the text to:
onClipEvent (load) {
loadVariables("frontpage.php?id=01", this, "GET");
}
It works fine.. what am I doing wrong? (Im very new to actionscript xD)
If you need any more info or I havnt explained it very well please ask :)
onClipEvent (load) {
GID = "frontpage.php?id=01";
url = "frontpage.php?url=01";
}
Inside that is some text inside a movie clip and a button, the text has these actions applied to it:
onClipEvent (load) {
loadVariables(GID, this, "GET");
}
The Button has these actions applied to it:
on (release) {
getURL(url);
}
When I run it, I get no errors, but if I click the button, it will go to the url set in the variable, but the text doesnt show anything, if I change the text to:
onClipEvent (load) {
loadVariables("frontpage.php?id=01", this, "GET");
}
It works fine.. what am I doing wrong? (Im very new to actionscript xD)
If you need any more info or I havnt explained it very well please ask :)