3 Oct
Resources Update
It’s been some time since I’ve posted some resources for Web Designers/Developers. A quick trip to Digg yielded me 2 sites that each have their own list of resources.
The first is 100 (Legal) Sources for Free Stock Images.
The next one is 77 Resources to Simplify your Life as a Web Designer.


Posted by sherry on 03.10.07 at 8:57 pm
hey edwin can i ask rite some qn about classes in as2
where it is at a external file
the code is
class ball extends MovieClip{
public function inta()
{
this._x+=5;
trace(”here”)
}
}
//code ends here
then how do i call this function from a fla?
Posted by DarkSuiyoken on 03.10.07 at 8:57 pm
hmm i haven’t delve into classes too much. but if i’m not wrong, you should be able to call it by calling MovieClip.inta() where MovieClip is the instance name of the movieclip you want to move the _x of.