LOGIN Don't have an account yet?   Register

Forgot password?
 
06 May 2010

Error 5000: The class ‘..’ must subclass ‘flash.display.MovieClip’ since it is linked to a library symbol of that type.


We work in Flash CS4, and save our files in Flash CS3, and sometimes when we publish the swf file from the Flash CS3 FLA, we get this error:

Error 5000: The class '..' must subclass 'flash.display.MovieClip' since it is linked to a library symbol of that type.

Replace “..” with whatever class you use. The solution to this problem is pretty simple. Read the rest of this entry »

07 Apr 2010

Using crossdomain.xml


You double checked all your paths and everything seems right, except that the content doesn’t load?

Make sure you have the following crossdomain.xml file in the root of your server, which will allow any server to connect to your server and get the files they need. This is useful when you want to host your files on a server, and the swf files on a different server.




  

Get the file from here: Download!

02 Apr 2010

Embedding our Flash Components in your Flash Project


We decided to share the FLA file used for the video tutorial, so that you can easily understand how the FLA must be set-up. Note the source files are missing as this is a commercial component which we’re sharing with you. The file is CS3+.

Download the file here

22 Jan 2010

duplicateMovieClip and getNextHighestDepth in AS3


For all of us that used AS2 for a long time, we want some things to remain as simple as they were in AS2. So we created our own functions which we use as Prototypes! :-)

duplicateMovieClip

// var mc : MovieClip = mcRating.duplicateMovieClip(new mcStar(), "mcStar" + j);
MovieClip.prototype.duplicateMovieClip = function(obj : *, pName : String = "mcItem") : Object
{
       this[pName] = this.addChild(obj);
       this[pName].name = pName;
       return this[pName];
};

getNextHighestDepth

Make sure that mc is inside mcImages (or whatever movieclip you are using).

// mc.getNextHighestDepth(mcImages);
MovieClip.prototype.getNextHighestDepth = function(scope : Object) : void
{
	scope.setChildIndex(this, (scope.numChildren - 1));
};

Hope this help! :-)

21 Jan 2010

Step 1: Easy Debugging


Our Flabell Support team gets a lot of emails asking the same question “why doesn’t the content load?”. We decided to share a little knowledge with you, which will help you understand and fix the problem on your end.

Information

First, please make sure you read the article posted here, if you need to move the content files in different folders than the default structure we provide. The pathToFiles variable is very important, and you must follow the steps described in the article precisely.

Safari

In order to use our easy debugging solution, you must download Apple’s free browser, Safari.

Safari has a feature called “Activity”, which opens a window and shows you the entire activity of your browser. it’s under Window>Activity.

Read the rest of this entry »

Page 1 of 41234»
blog entries RSS Feedproducts RSS Feed

Categories

Popular Files

  • Compact Flash Mp3 Player
  • Horizontal Image Slide on Mouse Move
  • Accordion Menu with Images from XML
  • Continuous Image Slider
  • Accordion Banner Rotator
  • Photography Portfolio Template
  • Dynamic Flash Video Gallery
  • Accordion Gallery
  • Flash Ken Burns Effect Slideshow
  • Horizontal Scroller Slideshow
  • Zoom Gallery
  • Simple AS3 Flash Video Player

Download the plugin above
Read more about Flabell WordPress plugin

Archives

Search the blog