Archive for the ‘Flash Tutorials and ActionScript Solutions’ category

Mini Tip #4 Disabling Right-click in Flash MX and higher

May 14th, 2009

Don’t like that default right-click menu when you create a Flash movie? Here’s a simple way of removing it!

Create a new layer in your main timeline. Click on the first frame. Press F9 to bring up the Actions window and paste this code:

Stage.showMenu = false;

And you’re done! Test your movie and right-click to see the change.

Have yourself a merry little Christmas!

December 24th, 2008

Wishing all our readers and clients a very festive Christmas!

- The McM Team.

A few helpful forums

July 6th, 2008

Ever needed that little bit of extra help solving a design/implementation problem?

Fear no longer, for here are a few helpful sites for you to get those all important answers you crave.

Kirupa.com

An online Flash/CSS/PhotoShop resource that provides useful tutorials, links, downloads, and support for all levels of expertise. The tutorials are very educational although personally, the forums, which are worth a try, aren’t the most welcoming for beginners of the ‘noob’ kind. Be prepared to bump your thread up until you get what you need!

The Ultrashock Forums

A great resource site for Flash Professionals. The forums are great, with many a helpful members willing to take time over any questions/problems you have.

PC Mech Forums

Wonderfully helpful forum. Any computer hardware issues and you’ll be sure to find help here. If we had a badge of approval we’d pin it here.

Joomla! Forums

This is the best place to find information about Joomla and solutions to any Joomla related problems you may have. The forums are massively popular and if you follow the forum rules you will find someone who can help solve your Joomla problems. But be sure to do a thorough search of the forums before you post a new topic – you will almost always find that someone has already solved your problem!

External flash movie with gallery and thumbnail scroller just will not work?

June 19th, 2008

Recently whilst tweaking a project outsourced to us we came upon a problem with a Flash gallery. The gallery in question was an external movie loaded into the main ‘holder.swf’ when called upon.

The gallery worked fine when previewed seperately. Only when it loaded as an external movie, into the holder.swf did the gallery refuse to work. By this, I mean, the thumbnails, and the scroll bar they were placed in, would not respond to the mouse.

Now, theres possibly a few things to do at this point, but when working to a deadline, obviously, the quickest choice is the best choice. The ActionScript for the thumbnails worked with ‘_root.’ instructions, and appeared to be becoming confused with the holder.swf mistaking that as the main ‘_root.’ file.

Adding this: this._lockroot = true;

To the main timeline of the ‘gallery.swf’ corrects this confusion by making the timeline on the external movie the actual ‘_root.’ for the entire time the external movie is open.

This solution is quick, involves minimal coding and is easy to implement.