Monday, January 17th, 2005 - 7:34 am
A Flashcom Application coded with OOP patterned to MVP, to detect user bandwidth and play specific FLV. The application uses Object Oriented Progamming Methodology and is patterned closely to Model-View-Presenter.
Read the article
Saturday, October 2nd, 2004 - 8:36 am
Here is a common reply to my students, forum users for the querry, “How do I remove the hand cursor from all instance of Buttons or MCs without specifying it individually?”. Modify the script below to suit your needs. Apply it using removeHand();
myRoot = this;
function removeHand() {
for (i in myRoot) {
if ((myRoot[i] instanceof Button) || (myRoot[i] instanceof …
Read the article