Loop video in Flash AS2

If you want to loop a movie on your flash project, select the movie / video and in the action script box put:
/////////////////////////////
on(complete){
 this.autoRewind = true;
 this.play();
}
/////////////////////////////
This should just keep it running for ever.
Bookmark to:

Flash call PHP & wait for return variables

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[i]);
   
  }
 }
 else
 {
  trace(”error”);
 }
};
_root.myLoadVars.load(url);
Bookmark to:

Pop up flash window redirects parent window and closes pop up window

on (release) {
 getURL(”javascript:window.opener.location.href = ‘page.htm’; self.close();”);
}
Bookmark to:

A file permissions error has occurred. Please check the permissions on the script and the directory it is in and try again

If you upgrade wordpress and get the following error:
A file permissions error has occurred. Please check the permissions on the script and the directory it is in and try again.
Check the root of your website for a file called index.cgi. Remove it and that should fix the problem. It did for me anyway.
Bookmark to:

Tables & CSS. Designing the Web.

As a web designer since early 90s I have seen the internet develop pretty much from birth to web 2.0. The funniest thing I have seen is the bitch slapping HTML tables have had over the past few years.
Before CSS they where pretty much the only way to layout a web page, and I as […]