**Mention Course Evaluations**
FLASH :
fun stuff:
http://ryansmithart.com/build_your_own_brakhage.swf
open : QWERTY_CS5.fla
or QWERTY._CS4.fla
**Review publish settings
AS3 Progress Bar Component Tutorial
the progress bar code
with : uiLoader & progressBar (components) ; and status_txt ( Dynamic text )
//extra HTML code:
// <param name="allowFullScreen" value="true" />
import flash.display.StageDisplayState;
// for a projector file:
stage.scaleMode = StageScaleMode.NO_SCALE;
function goFullScreen():void{
if (stage.displayState == StageDisplayState.NORMAL) {
stage.displayState=StageDisplayState.FULL_SCREEN;
} else {
stage.displayState=StageDisplayState.NORMAL;
}
}
stage.addEventListener(MouseEvent.CLICK, _handleClick)
function _handleClick(event:MouseEvent):void
{
goFullScreen();
//gotoAndStop(2);
}
Final Project is due : May 21 (Tuesday), the last day of exams
Keep working on it.