Monthly Archives: August 2007
Flash call PHP & wait for return variables
| August 29, 2007 | Posted by The Futtock under Other Stuff |
url = “something.php?variable=number”;
_root.myLoadVars = new LoadVars();
myLoadVars.place = place; // place is an example variable returned by PHP
_root.myLoadVars.onLoad = function(succes)
{
if(succes)
{
for(var i in this)
{
trace(i+” = “+this);
}
}
else
{
trace(“error”);
}
};
_root.myLoadVars.load(url);
Pop up flash window redirects parent window and closes pop up window
| August 29, 2007 | Posted by The Futtock under Other Stuff |
on (release) {
getURL(“javascript:window.opener.location.href = ‘page.htm’; self.close();”);
}
Free game
| August 7, 2007 | Posted by The Futtock under Other Stuff |
A little off topic but I have mention a little game I made for the Million Dollar Wiki.
The game is called the Million Dollar Wiki Space Shooter Game!
Have fun.
Recent Comments