http://alecmce.com/library/asynchronous-processes-and-robotlegs
Month: February 2012
change the stupid namespace from flashdevelop default template of mx
xmlns:mx=”library://ns.adobe.com/flex/mx”
It state is halo, if u dun change
or u cannot use canvas blah blah blah
get URL by loaderInfo or BrowserManager
http://flexperiential.com/2010/05/06/browsermanager-returns-null/
for loaderInfo , pls see the comment
RIA free ebook
flex 3 in flex 4
advanced use module in flex, in enterprise scare
new IDE , try !
compile module with flashdevelop and some tutorial about modules
http://smithfox.iteye.com/blog/827743
http://www.permadi.com/blog/2010/10/using-modules-in-flex-action-script-projects/
flex-modular-application-development-using-cairngorm-architecture
http://xebee.xebia.in/2010/10/11/flex-modular-application-development-using-cairngorm-architecture/
using flashdevelop to compile module
Flex Problem
急急。。。Flex4 Module中不能Alert?
http://bbs.airia.cn/thread-10383-1-1.html
ModuleLoader.loadPolicy
http://www.tink.ws/blog/flex-4-modules/
A flex code example using module
http://www.riameeting.com/examples/parsley_module/srcview/index.html
Create an ActionScript-Based Module
http://mijimiji.com/blog/?p=54
good comment in a flex problem
eshop sample
http://www.storenvy.com/
http://society6.com/
keep-generated-actionscript -> mxml to as3
Must read for deploy AIR on playbook
js object and js function class
var yung = { variable : xxx, add: function () { } }
they are all accessible by other
yung.Class = function(someSetting) {
var privateVar
this.publicVar
function privateFunction
function publicFunction
//public function
$.extend(this, {
publicFunction: publicFunction
});
yung.obj = new yung.Class(someSettings);
}
scope:
(function(object1, jquery, window, settings) {
code….
})(object1, jquery, window, settings);
unload module effectively FLEX
[FLEX] modular robotlegs !
view states using AS3 only, no mxml
flex minimal
very good tutorial for deploy blackberry playbook app
blackberry debug token
http://docs.blackberry.com/en/developers/deliverables/27280/Running_unsigned_apps_debug_tokens_1585072_11.jsp
http://docs.blackberry.com/en/developers/deliverables/27280/Configure_app_signing_from_cmd_line_1463563_11.jsp
About Configuring your application
http://docs.blackberry.com/en/developers/deliverables/27280/Configuring_your_application_1524626_11.jsp
About tablet xml
http://docs.blackberry.com/en/developers/deliverables/23959/Configuring_your_application_1524626_11.jsp
openGL tutorial recommend by jimmy
playbook ref
FlashDevelop and BlackBerry PlayBook Development: The Basics
http://www.studiochris.us/2010/flashdevelop-and-blackberry-playbook-development-the-basics/
Tools port AIR -> playbook
http://www.studiochris.us/software/fruit-bat/
Debug token (on simulator)
http://deleteaso.com/playbook-debug-tokens-and-signing/
git 之速查
as3 funny class as function, use a function to return a Class
trick on as2
dynamic new a movieClip with init var
http://www.jonnyreeves.co.uk/2007/05/movieclips-and-object-scope-in-as2/
WORTH to read, many FAQ about as2
http://www.senocular.com/flash/tutorials/faq/#newmovieclip
event receive and dispatch and delegate example
http://flash-creations.com/notes/asclass_eventdispatcher.php
hope example help
http://www.bit-101.com/blog/?page_id=1164
reference will be missed at first explanation
http://stackoverflow.com/questions/896335/referencing-movie-clip-class-instances-immediately-in-actionscript-2
EventDispatcher instantiate methods
http://archive.darronschall.com/weblog/2004/03/the-many-faces-of-eventdispatcher.html
container constructor first -> button constructor
container constructor want to call button stuff, but button hvnt construct
http://www.kirupa.com/forum/showthread.php?241544-AS2-0-Linkage-and-attachMovie-Woe