CS4 Flash shared libraries time saver
August 25th, 2009, by Bodie Leonard

CS4 Flash shared libraries time saver

I am always working on large scale sites in flash and I work with creatives that have a tendency to change their mind every once in a while :-) . I needed to come up with a quick solution to change assets quickly across an entire site. Some sites can have at least 20 or more different swf’s and it is way too time consuming to go into each fla library and change that asset. So I started working with shared libraries.

Why have I missed out on this for so long?

Shared libraries are very easy to setup and save soo much time. Here is how I setup my shared libraries.

  1. Create an .fla that will hold all shared assets for instance sharring an arrow button.
    picture-1
  2. Create the arrow button then convert that arrow into a movie clip symbol and Linkage it to any Class com.Arrows.
  3. Then in Sharing check Export for runtime sharing and then input the url where the swf will be published.
  4. Next create the .fla to where you want to import the shared object.
  5. Create an empty movieclip that will import the shared object with these properties. Linkage the Class that was used before com.Arrows then in Sharing check Import for runtime sharing and in the URL put the path to the shared library swf.

And that is it. You can now update any of your assets by opening the shared library.swf and BAM! your done. Good luck.


August 14th, 2009, by Bodie Leonard

Flash cant find my font? Fonts in Adobe Flash CS4 on OSX

For a while now I have just skirted around the issues I have been having with fonts in flash. The font I have had problems with is not one in particular but today it was an Open Type Font. I started some R&D on this issue and I actually sent a tweet @Flash_Platform [...]

August 3rd, 2009, by Bodie Leonard

Dialing 411 on your cell can cost $2.00. But now you can dial 411 for FREE.

None of us can remember the last time we used Yellow Pages to get the contact information for a local business. Why would we when 411 is so much faster. Currently you probably pay $2.00 for each of those calls, until now! Her is how you bypass that ridiculous service charge for dialing 411.
We can [...]

July 6th, 2009, by Bodie Leonard

Flex is now Flash Builder 4

To start here is a link for all you flex 3 developers who would like the free beta of Flash Builder 4 click here.
I follow Keith Peters blog and follow him on twitter and here is what he has to say about the migration from Flex 3 to Flash Builder.
I personally use [...]

March 5th, 2009, by Bodie Leonard

Possibly the coolest thing I have see in flash

Taking flash webcam to the next level with papervision.
Dynamic papervision

March 5th, 2009, by Bodie Leonard

AS3 getting past IE popup blocker

[Edited September 04, 2009]
I also use this fix to bypass popups in IE…

/*
use this snippet in the as file to work with this class
function discoverBtnHandler(e:MouseEvent){
var popup:PassPopup = new PassPopup();
// Open the popup window.
popup.ChangePage( “http://theotherwhitemeat.com/porkrecipes/#/recipes/” );
}
*/
package com {
import flash.external.ExternalInterface;
[...]