• Home
  • About
  • Contact Us
  • Gallery
  • Video
  • Archives
  • Site Map
Grab the RSS feed

FlashBannerOnline

FlashBannerOnline
  • Home
  • FlashBannerOnline
  • Free Downloads
  • General
  • Tutorials
    • Adobe AIR
    • CSS
    • Fireworks
    • Flash
      • ActionScript
    • FLEX
    • Javascript
      • JQuery
      • MooTools
    • PHP

Archive for "October, 2009"

  • ActionScript, Flash, Tutorials

    Posted on October 29th, 2009

    Written by Behrouz Pooladrag

    Tags

    actionscript, actionscript custom event not passing data, addEventListener, addeventlistener as3 passevent, addeventlistener as3 tutorial, Arguments, AS3, as3 arguments, as3 arguments with events, as3 dispatchevent tutorial, as3 event listener arguments, as3 event loader argument, as3 listener for end of function, as3 when to use public static variables when to pass arguments, Clone, const, dispatch event actionscript tutorial, dispatchEvent, dispatchevent tutorial as3, dispatchevent userregistrationevent, Events, extends loader custom dynamic property as3, flash as3 passing arguments to a listener, flash as3 shift click function, formatToString, override, pass parameters from loader event, Passing, passing arguments to auction listner event, purpose of using event dispatcher class in as3, super, toString, tutorial as3 getter and setter methods, tutorial dispatch event as3

    Passing Arguments with Events in AS3

    Passing Arguments with Events in AS3

    One of the questions about ActionScript 3 that I am most often asked is how to send arguments to a listener function along with an event. To provide some background for this question, you could send argument data to a standard function like this? function showMsg(msg:String):void { trace(msg); } showMsg(“Claire”); However, in an event listener, [...]

  • ActionScript, Flash, Tutorials

    Posted on October 28th, 2009

    Written by Behrouz Pooladrag

    Tags

    "tweenlite" "ease out", 1172: actionscript, 1172: gs.tweenlite, 1172: gs.tweenlite download, actionscript, animating line between two point in as3, Animation, AS3, as3 ease graphs, as3 import gs tweenlite cs4, as3 line with ease, as3 tweenlite, Banner, banner in tweenlite, bounce.easeout tweenlite, can you have ease in and ease out in tweenlite as3, draw, ease in as3, ease out bounce as3 what is, flash as3 effect elastic tweening in as3, flash import gs.*, fuse oncomplete callback, gs.tweenlite package, import gs download, import gs.*, import gs.tweenlite actionscript 3 1172, import gs.tweenlite; where is, Introduction, simple ease animation as3, TweenLite, tweenlite back.easeout explained, tweenlite ease, tweenlite ease graph, tweenlite easein, tweenlite tint as3, tweenliteas3, tweenmax different types of ease in and out, tweens try flash, using tweenlite as3 onclick

    TweenLite Introduction AS3

    TweenLite Introduction AS3

    Motion Myth For some reason lots of people seem to think that ActionScript animation creates smoother animation than the Flash timeline. This is simply not true. The timeline is just as capable of creating “smooth” animations as ActionScript is. On the timeline, if you want a smoother animation, use a framerate around 30fps and put [...]

  • ActionScript, Flash, Tutorials

    Posted on October 27th, 2009

    Written by Behrouz Pooladrag

    Tags

    actionscript, AS3, as3 math.random, Math, math.random actionscript, math.random as3, math.random de 0 a 60 com as3, math.random() * math.random(), math.random() in as3, random

    Math.random() * Math.random() in AS3

    Math.random() * Math.random() in AS3

    var rand:Number = Math.random() * Math.random() * Math.random(); This is a trick I use when I need more contrast in my random numbers. In this case, the variable rand will get closer to the number 1 significantly less frequently than if you just used Math.random() once. To illustrate this I created this snippet: [SWF(width=800, height=600)] [...]

  • ActionScript, Flash, Tutorials

    Posted on October 26th, 2009

    Written by Behrouz Pooladrag

    Tags

    "as3 describetype", actionscript, AS3, as3 describetype crash, as3 describetype uri, describeType, describetype as3, describetype as3 classfactory, describetype in as3, describetype problem, draw, flash as3 random swapping, flash bug describetype, getChildIndex

    describeType in AS3

    describeType in AS3

    that’s beautiful.. so much better than typeof.. Though I might also add (if I may), if you want some extremely (almost stupid amount of) detailed info about your class type, you can also use describeType().. so var sprite:Sprite = new Sprite(); var spriteDescription:XML = describeType(sprite); trace (spriteDescription); traces: <type name=”flash.display::Sprite” base=”flash.display::DisplayObjectContainer” isDynamic=”false” isFinal=”false” isStatic=”false”> <extendsClass [...]

  • ActionScript, Tutorials

    Posted on October 25th, 2009

    Written by Behrouz Pooladrag

    Tags

    actionscript, actionscript inline xml, as2 inline xml, AS3, as3 define random, as3 define xml, as3 define xml in timeline, as3 how edit inline xml, as3 inline xml, as3 writing xml, create inline xml as3, define xml inline as3, describe xml as3, extendscript inline xml, flash inline xml, flash source xml or inline, Inline, inline xml "as3", inline xml to flash, write xml in as3, Writing, writing back to an inline xml in as3, XML, xml as3 define, xml inline as3

    Writing Inline XML in AS3

    Writing Inline XML in AS3

    In ActionScript 3, you can define XML variables using inline XML in your script. You don’t even need to enclose it in Strings like you did in previous versions of ActionScript. The ActionScript 3 compiler will automatically parse the XML in the code and recognize when it stops and when normal AS code starts. var [...]

  • ActionScript, Flash, Tutorials

    Posted on October 24th, 2009

    Written by Behrouz Pooladrag

    Tags

    3 types of events in flash, actionscript, actionscript 3 @eventtype, actionscript @eventtype, adobe flash as3 event type, AS3, as3 detect event type, as3 enterframe events, as3 event type, as3 event types, as3 event typing, as3 generalevent types, as3 trace event types, as3 [event(name="" type="")], different types of events in flash, Event, event datatypes flash, event flash banners, event types as3, event types flash, event types in flash, event.type as3, event.type in as3, eventdispatcher in actionscript, events available in as3, flash as3 event.type, flash as3 of type, flash banners portal type as3, flash detect event type, flash event types, flash.events.event types description, main types of events in flash, mouse event enter frame as3, MouseEvent, mouseevent enter frame as3, ns.play, types of event handler of flash, types of events as3, types of events in as3 pdf, what are the different types of events in flash as3

    Events and Event Types in AS3

    Events and Event Types in AS3

    Event objects used with EventDispatcher in ActionScript 3 are a little less generic than those used with ActionScript 2. In AS 3, each event object has its own class. The most common event classes are Event (flash.events.Event) for general events and MouseEvent (flash.events.MouseEvent) for events associated with the mouse. Other event classes can be found [...]

  • ActionScript, Flash, Tutorials

    Posted on October 23rd, 2009

    Written by Behrouz Pooladrag

    Tags

    actionscript, actionscript 3 eventdispatcher, actionscript 3 eventdispatcher.addeventlistener(), actionscript class dispatchevent, addEventListener, addeventlistener as3, AS3, as3 #include eventdispatcher, as3 can handleevent, as3 eventdispatcher, as3 eventdispatcher alternative, as3 eventdispatcher button, as3 eventdispatcher composition priority, as3 eventdispatcher explained, as3 eventdispatcher tutorial, as3 haseventlistener, as3 haseventlistener problem, as3 removeeventlistener, can i make eventdispather to sprite? as3, class addeventlistener, class function addeventlistener actionscript tutorial, composite eventdispatcher as3, cs3 eventdispatcher, dispatchEvent, event dispatcher as3, event dispatcher in as3, event dsipatcher example in as3, EventDispatcher, eventdispatcher actionscript 3, eventdispatcher alternative, eventdispatcher as3, eventdispatcher as3 doc, eventdispatcher as3 erklärung, eventdispatcher ass3, eventdispatcher button flash actionscript, eventdispatcher class actionscript 3, eventdispatcher in actionscript, eventdispatcher in as3, flash as3 haseventlistener, flash eventdispatcher, hasEventListener, ieventdispatcher in flash as3, removeEventListener

    EventDispatcher in AS3

    EventDispatcher in AS3

    ActionScript 3 uses the EventDispatcher (flash.events.EventDispatcher) class for all event handling. This class was available in ActionScript 2, but it existed as an external class in the mx framework. Now, it is built into the player (and in being so, improves performance). Whenever you want to create an event handler to be called during a [...]

  • ActionScript, Flash, Tutorials

    Posted on October 22nd, 2009

    Written by Behrouz Pooladrag

    Tags

    actionscript, AS3, as3 flash urlloader tutorial, as3 load text from php, as3 load xml urlloader event, as3 urlloader, as3 urlloader xml, as3 xml external class, external text with xml in flash, flash actionscript 3 xml text source, flash as3 loader xml class, flash script action 3 lightbox xml sample download, flash urlloader new xml, flash.net.URLLoader, Loading, reading xml using urlloader, simple as3 xml text loader, simple xml text loader flash as3 download, Text, URLLoader, urlloader as3, urlloader events external, urlloader flex communication php, urlloader in as3, urlloader in flash as3, urlloader on website, XML, xml external text loading in as3, xml text loader as3, xml with flash text

    Loading Text and XML with URLLoader in AS3

    Loading Text and XML with URLLoader in AS3

    In previous versions of ActionScript, there were a couple of classes who had the capability of loading external text, namely LoadVars and XML. The loading responsibilities of these classes has moved to one single class in ActionScript 3, URLLoader (flash.net.URLLoader). This class is a lot like LoadVars. The big difference is that it is used [...]

  • Older Posts Yeah! There are more posts, check them out.

  • Ad Ad

  • FlashBannerOnline.Com

  • Subscribe

    Enter your email address:

    | More

  • Blogroll
    • Random Flash Banner!
  • Tag Cloud

    • actionscript addChild addEventListener Adobe AIR Air Animation AS2 AS3 as3 preloader Banner beginFill BitmapData blog.flashbanneronline.com Class CSS Date Class draw Flash flash.net.URLLoader flash banner free flash banner generator flash banner happy new year flashbanneronline FlashBannerOnline.com flash banner online free flash player function game getChildIndex Javascript lightbox Loading Mysql new year flash banner Object Optimization package PHP Sprite tot Tweener URLLoader URLRequest web XML
  • Recent Comment
    • Behrouz Pooladrag on Flash Optimization – Freezing And Unfreezing Objects
    • Valerie on Flash Optimization – Freezing And Unfreezing Objects
    • FlashLord on RSS Reader for FlashBannerOnline Blog!
    • Behrouz Pooladrag on Using ActionScript 3.0 with PHP Loading External Variables
    • LUN on Using ActionScript 3.0 with PHP Loading External Variables
  • RSS FlashBannerOnline
    • Happy New Year 2012 & Gift!
    • New Templates Oval Light Added to Flash Banner Online
    • FlashBannerOnline started in Arabic language
    • Happy New Year 2011
    • New Templates Christmas 2011 Added at Christmas!
    • New Templates angel animate Added to Flash Banner Online
    • Added Tow New Preloader (Pro Preloader , Rotate Preloader)
    • Happy New Year , by new Theme (Christmas 2010)
  • Add to Technorati Favorites

    Subscribe
  • Google
    Custom Search

Copyright © 2009 FlashBannerOnline - Powered by Wordpress.

FBO by