Questions tagged [loadvars]
20 questions
0
votes
1 answer
Using LoadVars to load cbsnews.com sometimes returns GIF89a
For some reason when I use LoadVars in actionscript 2 to load cbsnews.com, I sometimes properly get the html for the page and other times I get GIF89a. I'm not sure what this means, so any help or suggestions would be appreciated. Here is some…

Anton
- 12,285
- 20
- 64
- 84
0
votes
1 answer
Loading External Text file into a Flash - URL not loading
Flash ActionScript
myData = new LoadVars();
myData.onLoad = function() {
myText_txt.text = this.myVariable;
};
myData.load("http://www.myserver.com/test/myText.txt");

sjpatel
- 59
- 4
- 10
0
votes
1 answer
Flash AS2 - Webpage crashes when using LoadVars()
As the title says I am loading a flash in my webpage and when I call LoadVars() it crashes the web page.
Here is my code:
Flash
lv = new LoadVars();
lv.onLoad = onLoadCallBack;
lv.load("php/flash_getitems.php");
function…

ThatBenderGuy
- 307
- 1
- 6
- 15
-1
votes
1 answer
ActionScript: loading variables from a text file into _root
I'm basically a noob in ActionScript, and I've run into a problem. I want to load variables from a text file into the _root of my movie. Like, the text file contains &var=value&var2=value2& , and I want them to go straight into _root so that I'd be…
user3079266
-2
votes
1 answer
jquery load new vars
It´s posible , if i have one var , use jquery for load news vars and change these
For example if i have :
var activate_auto="yes";
$("#play").click(function() {
/// load vars
activate_auto="yes";
});
$("#stop").click(function() {
/// load…

Fran
- 57
- 1
- 10