flash.net package - ActionScript 3.0 Language and Components Reference
getClassByAlias(aliasName:String):Class
Looks up a class that previously had an alias registered through a call to the registerClassAlias() method.
flash.net
navigateToURL(request:URLRequest, window:String = null):void
Opens or replaces a window in the application that contains the Flash Player container (usually a browser).
flash.net
registerClassAlias(aliasName:String, classObject:Class):void
Preserves the class (type) of an object when the object is encoded in Action Message Format (AMF).
flash.net
sendToURL(request:URLRequest):void
Sends a URL request to a server, but ignores any response.
Web Technologies WNM-608. Class meets in 180NM and Online this Spring 2012 in San Francisco. Classroom:555 Mailbox: 5th Floor Mailroom 180NM
Tuesday, July 28, 2009
Friday, July 17, 2009
curtismorley.com � Flash Error #1180: Call to a possibly undefined method myCustomClass.
Flash Error #1180: Call to a possibly undefined method myCustomClass
Make sure that when you instantiate the Object that you are using the Class name and not the variable name.
Bad Code:
var myCustomClass:CustomClass = new myCustomClass();
Good Code:
var myCustomClass:CustomClass = new CustomClass();
Make sure that when you instantiate the Object that you are using the Class name and not the variable name.
Bad Code:
var myCustomClass:CustomClass = new myCustomClass();
Good Code:
var myCustomClass:CustomClass = new CustomClass();
Thursday, July 9, 2009
Gaia Framework for Adobe Flash
Gaia Framework for Adobe Flash: "Gaia has built-in deeplinking with SWFAddress, and is fully integrated with SWFObject so you don't have to write any HTML, CSS or Javascript. Gaia also uses SWFWheel which gives you full mouse scroll wheel support on all platforms and browsers!"
Preloader - Gaia Framework Wiki
Preloader - Gaia Framework Wiki: "You can change the MovieClipAsset the preloader uses at runtime. Make sure your MovieClipAsset is already loaded (preferably into the 'PRELOADER' depth, see Site XML documentation) and that it implements the IPreloader interface. Read more about this functionality in the API documentation. If the clip you assign to the preloader unloads or is removed for some reason, Gaia will automatically revert back to the default preloader."
Monday, July 6, 2009
Subscribe to:
Posts (Atom)