Jan 27 2010

Flip Class – CornerFlip

Category: Utilsadmin @ 6:58 pm

This flip effect class works dynamically and is created through pure coding. There is NO library assets or symbols or what soever. you can simply initialize the class and set which corner of your project you want to have the flip effect and it will just work like charm!

CHECK OUT THE DEMO HERE

You can add this paper flip effect to any display object, any MovieClip, stage or anywhere. below is a sample code showing the different settings that you can have for your CornerFlip class: Continue reading “Flip Class – CornerFlip”

Tags: , , , , , , , ,


Jan 27 2010

ContactForm Class

Category: Utilsadmin @ 6:47 pm

The ContactForm class will help you create complex web forms easily. you can create unlimited number of fields and positioning them horizontally or vertically and manually. all colors are set dynamically and the whole class has been built through pure coding.

  • Captcha code supported.
  • File attachment supported.
  • Data encryption supported.
  • CHECK OUT THE DEMO HERE

    Continue reading “ContactForm Class”

    Tags: , , , , , , , , , , , ,


    Jan 23 2010

    Unload an externally loaded swf file

    Category: FAQadmin @ 12:09 am

    How to remove or unload an externally loaded swf file from your project?

    It happenes a lot that you try to load an external SWF file into your project. maybe in your portfolio or some swf movies or sound files. The problem I am going to talk about here is about the common problem of unloading the swf files!

    you see, if you have loaded an swf file which has some music on it playing constantly, when you try to unload/remove that swf, the sound keeps playing! (not just sounds, maybe some Event.ENTER_FRAME or other listeners are still working)

    to avoid this problem, the best solution I can think of is to add a REMOVED_FROM_STAGE listener in your external swf file so it can listen to when it’s removed from the stage so it can kill the running processes inside itself.

    simply add it like this:

    1
    2
    3
    4
    5
    6
    import flash.events.Event;
    this.addEventListener(Event.REMOVED_FROM_STAGE, onStageRemoved);
    function onStageRemoved(e:Event):void
    {
    // kill all listeneres and running processes here.
    }

    Regards,
    Hadi

    Tags: , , ,


    Jan 22 2010

    Scrollbar Class

    Category: Utilsali @ 8:34 pm

    Pure coding AS3 regSimpleScroll (regular simple scrollbar) class or in simple words let’s say scrollbar class.

    Lucky you! what? you may say why? right?
    Well, I must say, you’re lucky because you are about to seeing the MOST POWERFUL AS3 SCROLLBAR COMPONENT in the world!! Yep, you heard it right.

    Forget about any scrollbar you had seen before, this component has been built in 40 days, YES you heard it right, 40 days for just a scrollbar.

    Now that it’s finished I can’t just call it a scrollbar but I think it’s LIVE BEAST!

    Live because you can set all inputs at runtime .
    Live because it cares for your CPU usage.

    A beast because it has a full interactive communication with the status of your content.
    A beast because you can use your imagination to give it different styles.

    And, aha, it’s not only ONE product (powerful scrollbar), but also the content window that used the scrollbar in itself is included in the package too. you don’t even need to open Adobe flash or something as the content window is completely dynamic and easy to be modified…(gets its content from a XML file and its styls are from a CSS file) I have explained how to modify it in the package for beginner users, so feel relax because everything is as easy as 123. Continue reading “Scrollbar Class”

    Tags: , , , , , , , , , , , , , , , , , , ,


    Jan 22 2010

    Popup Class

    Category: Utilsadmin @ 6:59 pm

    Pure coding AS3 popup class. Everything will be created on runtime. you will have very detailed documentations and help notes and even sample files to see how you should work with this class.

    CHECK OUT THE DEMO HERE

    The main features I can talk about are that this popup class is dragable, resizeable, totally dynamic with coloring and design. it also uses our Bg class by which you can create different kinds of backgrounds for the popup window (just read the freely available documentations of our Bg class). you can load any display object into popup windows and you can load external image or swf files also. Continue reading “Popup Class”

    Tags: , , , , , , , , ,


    Jan 22 2010

    Tooltip Class

    Category: Utilsadmin @ 6:55 pm

    You might have seen a lot of tooltip classes around the net, but this one is very special! it’s so OOP!! and you can initialize it only once in your project and use it from ANYWHERE inside the deepest layers or classes and it will always be shown on top of everything. it is accessable from everywhere. This is a Pure coding AS3 tooltip class. Everything will be created on runtime. you will have very detailed documentations and help notes and even sample files to see how you should work with this class.

    CHECK OUT THE DEMO HERE

    Continue reading “Tooltip Class”

    Tags: , , , , ,


    Jan 17 2010

    How to use SWC

    Category: FAQadmin @ 7:08 pm

    What is SWC?

    SWC is a file containing ActionScript source codes in a compiled status. The good thing about a SWC file is that it will help your projects compile faster because your compiler (flash CS4 for example) doesn’t have to compile everything from scratch any more.

    In simple words, you use SWC files to access class packages instead of accessing the class .as files manually. This is how flash and flex source codes are orgenized also. There might be other good things about SWC also but that’s what I know about, feel free to let me know if there’s anything else :)

    Continue reading “How to use SWC”

    Tags: , , ,


    Jan 17 2010

    Bg Class

    Category: Utilsadmin @ 4:32 am

    It’s very hard to explain the features of this class! because it seems like a very basic small piece of class! but beleive me, it’s more than a simple background :) with this class, you can create your background effects like loading an external image (even an animated GIF file) and place it on the top left of your stage and then set the “repeat” parameter and your whole stage will be covered with that image! you don’t have to deal with external images always, you can use a simple color as the background and also maybe you wish to use a vista like glassy Aero effect!

    CHECK OUT THE DEMO HERE

    Continue reading “Bg Class”

    Tags: , , , , , ,