Flash tip of the day
Flash tip of the day
Out of context: Reply #44
- Started
- Last post
- 47 Responses
- Cptn_Uncanny0
Thanks!
In the days of AS 2 fp7 I used to find these useful too (deactivates hand cursor for all mc's and btns):MovieClip.prototype.useHandCurso... = false;
Button.prototype.useHandCursor = false;--
And then there's this which I find/found invaluable in some odd circumstances:
//retrieve name of swf
SWFName = function () {
return this._url.split("/").pop();
};