January 4th, 2008
Filed under: AS2, Flash, Web Design, IT |
No Comments »
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:
August 29th, 2007
Filed under: Web Design |
No Comments »
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:
August 29th, 2007
Filed under: Web Design |
No Comments »
on (release) {
getURL(”javascript:window.opener.location.href = ‘page.htm’; self.close();”);
}
Bookmark to:
June 30th, 2007
Filed under: Web Design, IT |
No Comments »
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:
June 30th, 2007
Filed under: Web Design |
No Comments »
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 […]