|
Project Information
Featured
Downloads
Links
|
Content
Flashflowfactory Frameworkcurrent version: 0.9 beta This lightweight framework helps you to easily setup a flash website. It is called flashflowfactory. The framework makes use of SWFAddress 2.5 for deeplinking. Flashflowfactory is compatible to multiple tweenengines for transitions and easing. Download in 2 steps:
http://stroep.googlecode.com/files/flashflowfactory.swc DOCUMENTATION / TUTORIAL: DISCUSSION / FEATURE REQUESTS / BUG REPORTS: ASDOC DOCUMENTATION: Example use of FlashFlowFactory var pageFactory:PageFactory = new PageFactory();
pageFactory.add( "/home", HomePageVC, "Welcome!" ); /* deeplink url, class reference, browser title */
pageFactory.add( "/contact", ContactPageVC, "Contact us" );
pageFactory.add( "/info", InfoPageVC, "About us" );
pageFactory.titlePrefix = "Our Website - ";
pageFactory.defaultPageName = "/home";
pageFactory.defaultSettings = new PageSettings(
/* transition: */ new SlideTransition(),
/* easing in-transition: */ Elastic.easeOut,
/* easing out-transition: */ Strong.easeIn,
/* duration in-transition: */ 1,
/* duration out-transition: */ 0.7,
/* alignment: */ Alignment.LEFT_TOP
);
addChild( pageFactory.view );
pageFactory.init();
Release notes
ChainDelayed function calling / alternative tween engine DOCS: http://code.google.com/p/stroep/wiki/Chain CODE: https://code.google.com/p/stroep/source/checkout Util classesnl.stroep.display.Image - http://code.google.com/p/stroep/wiki/ImageClass nl.stroep.display.ExtendedImage - http://code.google.com/p/stroep/wiki/ImageClass nl.stroep.utils.Color - http://code.google.com/p/stroep/wiki/ColorClass nl.stroep.utils.CropUtil - http://code.google.com/p/stroep/wiki/CropUtilClass nl.stroep.utils.ImageSaver - http://code.google.com/p/stroep/wiki/ImageSaver About / LicenceAll code is licensed under MIT. Just keep the comments in it and you are free to use it. Please notify me when you used some of my classes. Thanks! Greetings, Mark Knol http://blog.stroep.nl blog.stroep.nl |