ࡱ> R@ContentsuPage 1(Symbol 102F:   "%#$!J'()*+,-./0123456789:;<=>?@ABCDEFGHIKLMXOPQRSTUVWYZ[e]^_`abcdfghsjklmnopqvturwy~z{|}xRD@ContentsPage 1I Symbol 102F:  !"#$%&'()*+,-./01    ;<=>?@ABCDEFGHSymbol 9!Symbol 10 WSymbol 11+Symbol 12 +Symbol 1+Symbol 6m1Symbol 7Symbol 8Symbol 17+Symbol 18 +Symbol 19+Symbol 20!Symbol 13+Symbol 14 +Symbol 15Symbol 16+Symbol 33%!Symbol 341 Symbol 35Symbol 36"$!Symbol 21bSymbol 22Symbol 23+Symbol 24+Symbol 25+Symbol 26+Symbol 277Symbol 28\     !"#$&'()+,-.012356789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijkmnopqrstuvwxyz{|}~Symbol 29lSymbol 304 Symbol 31/+Symbol 32 *!Symbol 37Symbol 38#'+Symbol 39!Symbol 40&(!Symbol 410 Symbol 42%-!Symbol 43+Symbol 44*,!Symbol 49S+Symbol 50)9N+Symbol 51I+Symbol 5224D+Symbol 45cSymbol 46+/iSymbol 47^!Symbol 48.0XWSymbol 65 7Symbol 66?C\Symbol 67&JGSymbol 68BD    !"#$&'()*,-./12346789;<=>@ABCEFGHJKLMOPQRTUVWYZ[\]_`abdefghijklmnopqrstuvwxyz{|}~Symbol 53\Symbol 5437?+Symbol 55:+Symbol 56685+Symbol 570+Symbol 585=+!Symbol 59%bSymbol 60:<NSymbol 61 +Symbol 62;A+Symbol 63+Symbol 64>@+Symbol 69EZSymbol 70!Symbol 72!I+ Symbol 74H Symbol 75 Symbol 76GQ Symbol 77 Symbol 78JL ?disabled L labelsOOCPicPage CPicLayer CPicFrame0`00?} Layer 1OopertyName specified (eg: "background") n*/ component.registerSkinElement(track_mc, "scrollTrack");  READMEOOCPicPage CPicLayer CPicFrameCPicText j, CPicPage CPicLayer CPicFrame CPicSpritedFYtrack_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.5.1'> </component> ?C Skin ElementsOO? var component = _parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the pr TextField12* _sans(Flash Components Version 6.0_r24 03.07.02 ? 2 actionsOCPicPage CPicLayer CPicFrame |NCPicPage CPicLayer CPicFrame CPicSpriteujjuD<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.4.1'> </component> ?\ versionOO? Symbol_36M!#initclip 0 /*============= FUIComponentClass The base class for all FUI controls in flash6. ==============*/ function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function() { this.enable = true; this.focused = false; this.useHandCursor = false; //accessibility :: hide non accessible components from screen reader this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat==undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function(oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); } Selection.addListener(_global._focusControl); } if (this._name!=undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle==undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = this.deadPreview._height = 1; this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function() { this.controller.myOnKeyDown(); } this.keyListener.onKeyUp = function() { this.controller.myOnKeyUp(); } for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } } // ::: PUBLIC METHODS FUIComponentClass.prototype.setEnabled = function(enabledFlag) { this.enable = (arguments.length>0) ? enabledFlag : true; this.tabEnabled = this.focusEnabled = enabledFlag; if (!this.enable && this.focused) { Selection.setFocus(undefined); } } FUIComponentClass.prototype.getEnabled = function() { return this.enable; } FUIComponentClass.prototype.setSize = function(w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); } FUIComponentClass.prototype.setChangeHandler = function(chng,obj) { this.handlerObj = (obj==undefined) ? this._parent : obj; this.changeHandler = chng; } // ::: PRIVATE METHODS FUIComponentClass.prototype.invalidate = function(methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; } FUIComponentClass.prototype.cleanUI = function() { // rules of invalidation : setSize beats everyone else if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; } // EXTEND this method to add new invalidation rules. FUIComponentClass.prototype.cleanUINotSize = function() { for (var funct in this.methodTable) { this[funct](); } } FUIComponentClass.prototype.drawRect = function(x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner==undefined) { inner = 0xffffff; } if (outer==undefined) { outer = 0x000000; } this.createEmptyMovieClip( "focusRect", 1000 ); // this.focusRect._alpha = 50; // uncomment out this line if you want focus rect with alpha this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x+w, y); this.focusRect.lineTo(x+w, y+h); this.focusRect.lineTo(x, y+h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x+1, y+1); this.focusRect.lineTo(x+w-1, y+1); this.focusRect.lineTo(x+w-1, y+h-1); this.focusRect.lineTo(x+1, y+h-1); this.focusRect.lineTo(x+1, y+1); } FUIComponentClass.prototype.pressFocus = function() { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); } // OVERWRITE THIS METHOD FOR YOUR OWN RECTANGLES FUIComponentClass.prototype.drawFocusRect = function() { this.drawRect(-2, -2, this.width+4, this.height+4); } FUIComponentClass.prototype.myOnSetFocus = function() { this.focused =true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } } FUIComponentClass.prototype.myOnKillFocus = function() { this.tabFocused = true; this.focused =false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); } FUIComponentClass.prototype.executeCallBack = function() { this.handlerObj[this.changeHandler](this); } // An FUIComponentClass Helper for the styleFormat : // puts a styleFormat value into the component's styleTable, // updates the component (the coloredMCs that make up a skin) FUIComponentClass.prototype.updateStyleProperty = function(styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); } FUIComponentClass.prototype.setStyleProperty = function(propName, value, isGlobal) { if (value=="") return; var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = (arguments.length>2) ? isGlobal : false; if (this.styleTable[propName]==undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal=true; } if (this.styleTable[propName].useGlobal || !global) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { // a hook for extending further styleProperty reactions. } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0,4)=="text") { if (this.textStyle==undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value==undefined) { var myTObj = { ra: '100', rb: '0', ga: '100', gb: '0', ba: '100', bb: '0', aa: '100', ab: '0'}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } } /* Another styleFormat helper -- / A skin mc calls up to this to register its existence and the / styleTable property it wants to listen to */ FUIComponentClass.prototype.registerSkinElement = function(skinMCRef, propName) { if (this.styleTable[propName]==undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs==undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef]=skinMCRef; if (this.styleTable[propName].value!=undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } } // ============ styleFormat Class =========== // _global.FStyleFormat = function() { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length>0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } } _global.FStyleFormat.prototype = new Object(); // ::: PUBLIC FStyleFormat Methods FStyleFormat.prototype.addListener = function() { for (var arg=0; arg<arguments.length; arg++) { var mcRef = arguments[arg]; this.listeners[arguments[arg]] = mcRef; for (var i in this) { if (this.isAStyle(i)) { mcRef.updateStyleProperty(this, i.toString()); } } } } FStyleFormat.prototype.removeListener = function(component) { this.listeners[component] =undefined; for (var prop in this) { if (this.isAStyle(prop)) { if (component.styleTable[prop].useGlobal==this.isGlobal) { component.styleTable[prop].useGlobal = true; var value = (this.isGlobal) ? undefined : globalStyleFormat[prop]; component.setStyleProperty(prop, value, true); } } } } FStyleFormat.prototype.applyChanges = function() { var count=0; for (var i in this.listeners) { var component = this.listeners[i]; if (arguments.length>0) { for (var j=0; j<arguments.length; j++) { if (this.isAStyle(arguments[j])) { component.updateStyleProperty(this, arguments[j]); } } } else { for (var j in this) { if (this.isAStyle(j)) { component.updateStyleProperty(this, j.toString()); } } } } } // ::: PRIVATE FStyleFormat Methods FStyleFormat.prototype.isAStyle = function(name) { return (this.nonStyles[name]) ? false : true; } #endinitclip  Actions: ClassO;;D? elementOCPicPage CPicLayer CPicFrame 0 00? elementOCPicPage CPicLayer CPicFrame00000?gn elementOCPicPage CPicLayer CPicFrame( 000?; elementOCPicPage CPicLayer CPicFrameX000X0?a elementOCPicPage CPicLayer CPicFrameX0X000?yP elementOCPicPage CPicLayer CPicFrame |N<;DCPicPage CPicLayer CPicFrame CPicSprited=Fhighlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.1'> </component> d> darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.2'> </component> d?A/ highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.3'> </component> d@q shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.4'> </component> ((((dA~face_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.5'> </component> _y_ydBIarrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3.6'> </component> ?R Skin Element3?lvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOO?O elementOCPicPage CPicLayer CPicFrame 0 00?  elementOCPicPage CPicLayer CPicFrame0 000?> elementOCPicPage CPicLayer CPicFrame00000?! elementOCPicPage CPicLayer CPicFrameX000X0?S elementOCPicPage CPicLayer CPicFrameX0X000?Tf elementOCPicPage CPicLayer CPicFrameX(0000X? elementCPicPage CPicLayer CPicFrame CPicSprited68{ darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.1'> </component> d7highlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.2'> </component> d8W highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.3'> </component> d9'8 shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.4'> </component> ((((d:Yface_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.5'> </component> jjd;marrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2.6'> </component> ?3j Skin Elements3?,var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOOCPicPage CPicLayer CPicFrameX000X0?0 elementOCPicPage CPicLayer CPicFrame000000? elementOCPicPage CPicLayer CPicFrame( 000?l elementOCPicPage CPicLayer CPicFrame F;<D?K( elementOCPicPage CPicLayer CPicFrame 0 00?{ elementOCPicPage CPicLayer CPicFrame CPicSprited.8[up<component metaDataFetched='true' schemaUrl='' schemaOperatioCPicPage CPicLayer CPicFrame CPicSprite((((d/:,face_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.1'> </component> `y`yd0Narrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.2'> </component> d1x highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.3'> </component> d2 shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.4'> </component> d3X< darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.5'> </component> d4highlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1.6'> </component> ?Rj Skin ElementsO?0ovar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOstop();?JKstop();?Fstop(); ActionsOOCPicPage CPicLayer CPicFramen='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.1'> </component> ? rd5down<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.2'> </component> ?Td<xdisabled<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3.3'> </component> ?rl buttonsO??8 elementOCPicPage CPicLayer CPicFrameX'00X? elementOCPicPage CPicLayer CPicFrame00?o elementOCPicPage CPicLayer CPicFrame CPicSpritednt.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");  READMEOOCPicPage CPicLayer CPicFrame*g] shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.3.1'> </component> d+: darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.3.2'> </component> d,rhighlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.3.3'> </component> ?D Skin ElementOO?Svar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(highlight3D_mc, "highlight3D"); compone( 0?# elementOCPicPage CPicLayer CPicFrame 000 ?o elementOCPicPage CPicLayer CPicFrame00 ?- elementOCPicPage CPicLayer CPicFrame0?Az elementOCPicPage CPicLayer CPicFrame0?D elementO      !"#$%&'()*,-./0123456789;<=>?@ABCDEFGHJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrsthadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame CPicSprited$highlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2.1'> </component> ,,d% darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2.2'> </component>   d&. shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2.3'> </component> ((d'face_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2.4'> </component> d(j highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2.5'> </component> ?]B Skin ElementsOO?LYvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "sCPicPage CPicLayer CPicFrame? elementOCPicPage CPicLayer CPicFrame0?/ Layer 1OCPicPage CPicLayer CPicFrame(?  elementOCPicPage CPicLayer CPicFrame(0X0?<2 elementOCPicPage CPicLayer CPicFrame CPicSpritedehighlight3D_mc<component metaDaponent.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame CPicSprite"* mc_sliderTop<component metaDatataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.1.1'> </component> ,,d vu darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.1.2'> </component> d!]@ highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.1.3'> </component> d"h shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.1.4'> </component> ? Skin ElementsOO?_bvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); comnentPath='3.2.3'> </component> ?  Layer 1O?stop(); ActionsOOFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.1'> </component> rr#0 mc_sliderMid<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2.2'> </component> JJ) </component> d:K darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3.2'> </component> d7 highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3.3'> </component> d shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3.4'> </component> ((((dface_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3.5'> </component> _y_yd<arrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3.6'> </component> ?? Skin ElementsOO?6var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOO |<C;?! elementOCPicPage CPicLayer CPicFrame 0 00?r elementOCPicPage CPicLayer CPicFrame000 ?[ elementOCPicPage CPicLayer CPicFrame00000?'{ elementOCPicPage CPicLayer CPicFrameX000X0?I< elementOCPicPage CPicLayer CPicFrameX0X000?E elementOCPicPage CPicLayer CPicFrameX(000CPicPage CPicLayer CPicFrame CPicSprited< darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.1'> </component> dhighlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.2'> </component> dR> highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.3'> </component> dt> shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.4'> </component> ((((d$face_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.5'> </component> jjd+5arrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2.6'> </component> ?  Skin ElementsOO?ekvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOO0X?@@ elementOCPicPage CPicLayer CPicFrameX000X0?W elementOCPicPage CPicLayer CPicFrame000000?P elementOCPicPage CPicLayer CPicFrame( 000?w elementOCPicPage CPicLayer CPicFrame ;D<?Cp elementOCPicPage CPicLayer CPicFrame 0 00?) elementOCPicPage CPicLayer CPicFrame CPicSpritedPupCPicPage CPicLayer CPicFrame CPicSprite((((d |face_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.1'> </component> `y`yd Xarrow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.2'> </component> d  highlight_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.3'> </component> d M shadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.4'> </component> d B darkshadow_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.5'> </component> dbhighlight3D_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1.6'> </component> ? Skin ElementsOO?% var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOnsOOCPicPage CPicLayer CPicFrameCPicText 3@ arialfff(Send?2 3@ arial(<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.1'> </component> ?jddown<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.2'> </component> ?dYd;Gdisabled<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1.3'> </component> ?r buttonsO?l<stop();?(stop();? +stop(); ActioCPicPage CPicLayer CPicFrame CPicSprite(,0J/(,dp dArrowAsset<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.1'> </component> (0 (0d thumbAsset<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.2'> </component> (. (.d-. upArrowAsset<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.3'> </component> ?b AssetsOO(("((dC. superClassAsset;TmA0$E<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.4'> </component> ?F SuperClass3dE(scrollTrack_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3.5'> </component> ? Bounding BoxO?Ymn+#initclip 1 /* FScrollBarClass EXTENDS FUIComponentClass */ FScrollBarClass = function() { if (this._height==4) { return ; } this.init(); this.minPos = this.maxPos = this.pageSize = this.largeScroll = 0; this.smallScroll = 1; this.width = (this.horizontal) ? this._width : this._height; this._xscale = this._yscale = 100; this.setScrollPosition(0); this.tabEnabled = false; if ( this._targetInstanceName.length > 0 ) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); } FScrollBarClass.prototype = new FUIComponentClass(); // ::: PUBLIC METHODS FScrollBarClass.prototype.setHorizontal = function(flag) { if (this.horizontal && !flag) { this._xscale = 100; this._rotation = 0; } else if (flag && !this.horizontal) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; } // updates the thumb, turns the bar on and off FScrollBarClass.prototype.setScrollProperties = function(pSize, mnPos, mxPos) { if (!this.enable) { return ; } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos,0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if (this.maxPos-this.minPos<=0) { // turn it off this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut = null; this.upArrow_mc.onPress = this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut = null; this.scrollTrack_mc.onPress = this.scrollTrack_mc.onRelease = null; this.scrollTrack_mc.onDragOut = this.scrollTrack_mc.onRollOut = null; this.scrollTrack_mc.useHandCursor = false; } else { // turn it on var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = this.upArrow_mc.onDragOver = this.startUpScroller; this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut = this.stopScrolling; this.downArrow_mc.onPress = this.downArrow_mc.onDragOver = this.startDownScroller; this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onPress = this.scrollTrack_mc.onDragOver = this.startTrackScroller; this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb; this.scrollThumb_mc.useHandCursor=false; this.thumbHeight = this.pageSize / (this.maxPos-this.minPos+this.pageSize) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max (this.thumbHeight, 6); // 6 is the smallest a thumb should be this.midHeight = this.thumbHeight - this.thumbTop_mc._height - this.thumbBot_mc._height; this.thumbMid_mc._yScale = this.midHeight * 100 / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, this.minPos)); } } FScrollBarClass.prototype.getScrollPosition = function () { return this.scrollPosition; } FScrollBarClass.prototype.setScrollPosition = function(pos) { this.scrollPosition = pos; if (this.scrollThumb_mc!=undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = ((pos-this.minPos) * this.trackHeight / (this.maxPos-this.minPos)) + this.scrollTop; this.executeCallBack(); } FScrollBarClass.prototype.setLargeScroll = function(lScroll) { this.largeScroll = lScroll; } FScrollBarClass.prototype.setSmallScroll = function(sScroll) { this.smallScroll = sScroll; } FScrollBarClass.prototype.setEnabled = function(enabledFlag) { var wasEnabled = this.enable; if (enabledFlag && !wasEnabled) { this.enable = enabledFlag; if (this.textField!=undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if (!enabledFlag && wasEnabled) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter==undefined) { this.setScrollProperties(this.pageSize,0,0); } else { this.clickFilter=true; } this.enable = enabledFlag; } } // stretches the track, creates + positions arrows FScrollBarClass.prototype.setSize = function(hgt) { if (this._height==1) return; this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = 100 * this.width / this.scrollTrack_mc._height; if (this.upArrow_mc==undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); //1 is arbitrary this.attachMovie("DownArrow", "downArrow_mc", 2); //2 is arbitrary this.downArrow_mc.controller = this.upArrow_mc.controller = this; this.upArrow_mc.useHandCursor = this.downArrow_mc.useHandCursor = false; this.upArrow_mc._x = this.upArrow_mc._y = 0; this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField!=undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } } // ::: PRIVATE METHODS FScrollBarClass.prototype.scrollIt = function (inc, mode) { var delt = this.smallScroll; if (inc!="one") { delt = (this.largeScroll==0) ? this.pageSize : this.largeScroll; } var newPos = this.getScrollPosition() + (mode*delt); if (newPos>this.maxPos) { newPos = this.maxPos; } else if (newPos<this.minPos) { newPos = this.minPos; } this.setScrollPosition(newPos); } FScrollBarClass.prototype.startDragThumb = function() { this.lastY = this._ymouse; this.onMouseMove = this.controller.dragThumb; } FScrollBarClass.prototype.dragThumb = function() { this.scrollMove = this._ymouse - this.lastY; this.scrollMove += this._y; if (this.scrollMove<this.controller.scrollTop) { this.scrollMove = this.controller.scrollTop; } else if (this.scrollMove>this.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var c = this.controller; c.scrollPosition = Math.round( (c.maxPos-c.minPos) * (this._y - c.scrollTop) / c.trackHeight) + c.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); } FScrollBarClass.prototype.stopDragThumb = function() { this.controller.isScrolling = false; this.onMouseMove = null; } FScrollBarClass.prototype.startTrackScroller = function() { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); } FScrollBarClass.prototype.scrollInterval = function(inc,mode) { clearInterval(this.scrolling); if (inc=="page") { this.trackScroller(); } else { this.scrollIt(inc,mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); } FScrollBarClass.prototype.trackScroller = function() { if (this.scrollThumb_mc._y+this.thumbHeight<this._ymouse) { this.scrollIt("page",1); } else if (this.scrollThumb_mc._y>this._ymouse) { this.scrollIt("page",-1); } } FScrollBarClass.prototype.stopScrolling = function() { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); } FScrollBarClass.prototype.startUpScroller = function() { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one",-1); this.controller.scrolling = setInterval(this.controller, "scrollInterval",500, "one", -1); } FScrollBarClass.prototype.startDownScroller = function() { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one",1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); } // // Begin Special text scroller functions // FScrollBarClass.prototype.setScrollTarget = function(tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[ (this.horizontal) ? "hScroller" : "vScroller" ]; if (!(this.textField.hScroller==undefined) && !(this.textField.vScroller==undefined)) { this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) return; this.textField = tF; this.textField[ (this.horizontal) ? "hScroller" : "vScroller" ] = this; this.onTextChanged(); this.onChanged = function() { this.onTextChanged(); } this.onScroller = function() { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } } this.textField.addListener(this); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); } FScrollBarClass.prototype.callback = function(prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return newVal; } FScrollBarClass.prototype.onTextChanged = function() { if (!this.enable || this.textField==undefined) return; clearInterval(this.synchScroll); if (this.horizontal) { var pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, this.textField.maxscroll)); } } FScrollBarClass.prototype.executeCallBack = function() { if (this.textField==undefined) { super.executeCallBack(); } else { if ( this.horizontal ) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } } } Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip  Actions : ClassOOer 1O?m d down?^ dMdisSend?/T  @ arial(send<<sX00P00?' LaySymbol 9 Symbol 10 BSymbol 11Symbol 12 Symbol 17Symbol 18 Symbol 19Symbol 20 Symbol 13Symbol 14 Symbol 15Symbol 16Symbol 33' Symbol 341"Symbol 35Symbol 36"$ Symbol 21MSymbol 22{Symbol 23vSymbol 24qSymbol 25lSymbol 26gSymbol 27b"Symbol 28\GSymbol 29OSymbol 3069Symbol 311Symbol 32 ,      & !"#$%'()+.,-*/0136452789;?<=:@>ACEDBFGILJKHMORPNSQTUVX[YZW\]^`ba_cdegkhifljnopqrstuvwxyz{|}~      !#$%&()*+-./02345789:;<=>?@ABCDEFGHIJKLMNPQRSTUVWXYZ[]^_`acdefhijkmnoprstuwxyz|}~Symbol 69ESymbol 70 Symbol 72!I+ Symbol 74H Symbol 37Symbol 38#'Symbol 39 Symbol 40&( Symbol 41Symbol 42%- Symbol 43Symbol 44*, Symbol 49Symbol 50)9~Symbol 51ySymbol 5224tSymbol 45Symbol 46+/Symbol 47 Symbol 48.0B     !"#$%&'()*+,-./012345789:;=>?@BCDEGHIJLMNOQRSTVWXYZ[\]^_`abcdefghijklmnopqrsuvwxz{|}Symbol 53USymbol 5437PSymbol 55KSymbol 5668FSymbol 57ASymbol 585=< Symbol 596MSymbol 60:<Symbol 61Symbol 62;A Symbol 63Symbol 64>@Symbol 65"Symbol 66?CGSymbol 67 $Symbol 68BD?disabled L labelsOOCPicPage CPicLayer CPicFrame0`00? Layer 1OCPicPage CPicLayer CPicFrameCPicText j,  TextField12*_sans(Flash Components Version 6.0_r24 03.07.02 ?| actionsOCPicPage CPicLayer CPicFrame CPicSprite dF>track_mc? Skin ElementsOO?var component = _parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(track_mc, "scrollTrack");  READMEOOCPicPage CPicLayer CPicFrame CPicSpriteu jjuDPR? 6 versionOO? Symbol_36x!#initclip 0 /*============= FUIComponentClass The base class for all FUI controls in flash6. ==============*/ function FUIComponentClass() { this.init(); } FUIComponentClass.prototype = new MovieClip(); FUIComponentClass.prototype.init = function() { this.enable = true; this.focused = false; this.useHandCursor = false; //accessibility :: hide non accessible components from screen reader this._accImpl = new Object(); this._accImpl.stub = true; this.styleTable = new Array(); if (_global.globalStyleFormat==undefined) { _global.globalStyleFormat = new FStyleFormat(); globalStyleFormat.isGlobal = true; _global._focusControl = new Object(); _global._focusControl.onSetFocus = function(oldFocus, newFocus) { oldFocus.myOnKillFocus(); newFocus.myOnSetFocus(); } Selection.addListener(_global._focusControl); } if (this._name!=undefined) { this._focusrect = false; this.tabEnabled = true; this.focusEnabled = true; this.tabChildren = false; this.tabFocused = true; if (this.hostStyle==undefined) { globalStyleFormat.addListener(this); } else { this.styleTable = this.hostStyle; } this.deadPreview._visible = false; this.deadPreview._width = this.deadPreview._height = 1; this.methodTable = new Object(); this.keyListener = new Object(); this.keyListener.controller = this; this.keyListener.onKeyDown = function() { this.controller.myOnKeyDown(); } this.keyListener.onKeyUp = function() { this.controller.myOnKeyUp(); } for (var i in this.styleFormat_prm) { this.setStyleProperty(i, this.styleFormat_prm[i]); } } } // ::: PUBLIC METHODS FUIComponentClass.prototype.setEnabled = function(enabledFlag) { this.enable = (arguments.length>0) ? enabledFlag : true; this.tabEnabled = this.focusEnabled = enabledFlag; if (!this.enable && this.focused) { Selection.setFocus(undefined); } } FUIComponentClass.prototype.getEnabled = function() { return this.enable; } FUIComponentClass.prototype.setSize = function(w, h) { this.width = w; this.height = h; this.focusRect.removeMovieClip(); } FUIComponentClass.prototype.setChangeHandler = function(chng,obj) { this.handlerObj = (obj==undefined) ? this._parent : obj; this.changeHandler = chng; } // ::: PRIVATE METHODS FUIComponentClass.prototype.invalidate = function(methodName) { this.methodTable[methodName] = true; this.onEnterFrame = this.cleanUI; } FUIComponentClass.prototype.cleanUI = function() { // rules of invalidation : setSize beats everyone else if (this.methodTable.setSize) { this.setSize(this.width, this.height); } else { this.cleanUINotSize(); } this.methodTable = new Object(); delete this.onEnterFrame; } // EXTEND this method to add new invalidation rules. FUIComponentClass.prototype.cleanUINotSize = function() { for (var funct in this.methodTable) { this[funct](); } } FUIComponentClass.prototype.drawRect = function(x, y, w, h) { var inner = this.styleTable.focusRectInner.value; var outer = this.styleTable.focusRectOuter.value; if (inner==undefined) { inner = 0xffffff; } if (outer==undefined) { outer = 0x000000; } this.createEmptyMovieClip( "focusRect", 1000 ); // this.focusRect._alpha = 50; // uncomment out this line if you want focus rect with alpha this.focusRect.controller = this; this.focusRect.lineStyle(1, outer); this.focusRect.moveTo(x, y); this.focusRect.lineTo(x+w, y); this.focusRect.lineTo(x+w, y+h); this.focusRect.lineTo(x, y+h); this.focusRect.lineTo(x, y); this.focusRect.lineStyle(1, inner); this.focusRect.moveTo(x+1, y+1); this.focusRect.lineTo(x+w-1, y+1); this.focusRect.lineTo(x+w-1, y+h-1); this.focusRect.lineTo(x+1, y+h-1); this.focusRect.lineTo(x+1, y+1); } FUIComponentClass.prototype.pressFocus = function() { this.tabFocused = false; this.focusRect.removeMovieClip(); Selection.setFocus(this); } // OVERWRITE THIS METHOD FOR YOUR OWN RECTANGLES FUIComponentClass.prototype.drawFocusRect = function() { this.drawRect(-2, -2, this.width+4, this.height+4); } FUIComponentClass.prototype.myOnSetFocus = function() { this.focused =true; Key.addListener(this.keyListener); if (this.tabFocused) { this.drawFocusRect(); } } FUIComponentClass.prototype.myOnKillFocus = function() { this.tabFocused = true; this.focused =false; this.focusRect.removeMovieClip(); Key.removeListener(this.keyListener); } FUIComponentClass.prototype.executeCallBack = function() { this.handlerObj[this.changeHandler](this); } // An FUIComponentClass Helper for the styleFormat : // puts a styleFormat value into the component's styleTable, // updates the component (the coloredMCs that make up a skin) FUIComponentClass.prototype.updateStyleProperty = function(styleFormat, propName) { this.setStyleProperty(propName, styleFormat[propName], styleFormat.isGlobal); } FUIComponentClass.prototype.setStyleProperty = function(propName, value, isGlobal) { if (value=="") return; var tmpValue = parseInt(value); if (!isNaN(tmpValue)) { value = tmpValue; } var global = (arguments.length>2) ? isGlobal : false; if (this.styleTable[propName]==undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal=true; } if (this.styleTable[propName].useGlobal || !global) { this.styleTable[propName].value = value; if (this.setCustomStyleProperty(propName, value)) { // a hook for extending further styleProperty reactions. } else if (propName == "embedFonts") { this.invalidate("setSize"); } else if (propName.subString(0,4)=="text") { if (this.textStyle==undefined) { this.textStyle = new TextFormat(); } var textProp = propName.subString(4, propName.length); this.textStyle[textProp] = value; this.invalidate("setSize"); } else { for (var j in this.styleTable[propName].coloredMCs) { var myColor = new Color(this.styleTable[propName].coloredMCs[j]); if (this.styleTable[propName].value==undefined) { var myTObj = { ra: '100', rb: '0', ga: '100', gb: '0', ba: '100', bb: '0', aa: '100', ab: '0'}; myColor.setTransform(myTObj); } else { myColor.setRGB(value); } } } this.styleTable[propName].useGlobal = global; } } /* Another styleFormat helper -- / A skin mc calls up to this to register its existence and the / styleTable property it wants to listen to */ FUIComponentClass.prototype.registerSkinElement = function(skinMCRef, propName) { if (this.styleTable[propName]==undefined) { this.styleTable[propName] = new Object(); this.styleTable[propName].useGlobal = true; } if (this.styleTable[propName].coloredMCs==undefined) { this.styleTable[propName].coloredMCs = new Object(); } this.styleTable[propName].coloredMCs[skinMCRef]=skinMCRef; if (this.styleTable[propName].value!=undefined) { var myColor = new Color(skinMCRef); myColor.setRGB(this.styleTable[propName].value); } } // ============ styleFormat Class =========== // _global.FStyleFormat = function() { this.nonStyles = {listeners:true, isGlobal:true, isAStyle:true, addListener:true, removeListener:true, nonStyles:true, applyChanges:true}; this.listeners = new Object(); this.isGlobal = false; if (arguments.length>0) { for (var i in arguments[0]) { this[i] = arguments[0][i]; } } } _global.FStyleFormat.prototype = new Object(); // ::: PUBLIC FStyleFormat Methods FStyleFormat.prototype.addListener = function() { for (var arg=0; arg0) { for (var j=0; j darkshadow_mc d?\ highlight_mc d@0 shadow_mc(( ((dA`face_mc_y _ydB_arrow_mc?^ Skin Element3?Mvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_m<;D?t elementOCPicPage CPicLayer CPicFrame 0 00?B! elementOCPicPage CPicLayer CPicFrame0 000?Et elementOCPicPage CPicLayer CPicFrame00000?/ elementOCPicPage CPicLayer CPicFrameX000X0?{ elementOCPicPage CPicLayer CPicFrameX0X000? M elementOCPicPage CPicLayer CPicFrame CPicSprite d63 darkshadow_mcerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrameX(0000X?6 elementO d7f highlight3D_mc d8y highlight_mc d9b shadow_mc(( ((d:}rface_mcj jd; 3arrow_mc?3f Skin Elements3?,var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registCPicPage CPicLayer CPicFrameX000X0?M elementOCPicPage CPicLayer CPicFrame000000? elementOCPicPage CPicLayer CPicFrame( 000?} elementOCPicPage CPicLayer CPicFrame F;<D?jG elementOCPicPage CPicLayer CPicFrame 0 00?  elementOCPicPage CPicLayer CPicFrame CPicSprite(( ((d/ face_mc`y `yd0arrow_mc  READMEOOCPicPage CPicLayer CPicFrame CPicSprite d.Gup? d5d1n) highlight_mc d22 shadow_mc d3 darkshadow_mc d4"highlight3D_mc?# Skin ElementsO?Mvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D"); ?Kstop();?zUstop();?~stop(); ActionsOOCPicPage CPicLayer CPicFrame#cdown?$; d<disabled?> buttonsO?2 elementOCPicPage CPicLayer CPicFrameX'00X?| elementOCPicPage CPicLayer CPicFrame00? elementOCPicPage CPicLayer CPicFrame CPicSprite dnent.registerSkinElement(highlight3D_mc, "highlight3D"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight");  READMEOOCPicPage CPicLayer CPicFrame( 0?*h shadow_mc d+# darkshadow_mc d,zhighlight3D_mc?e Skin ElementOO?6var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ compo elementOCPicPage CPicLayer CPicFrame 000 ? elementOCPicPage CPicLayer CPicFrame00 ?]t elementOCPicPage CPicLayer CPicFrame0?T elementOCPicPage CPicLayer CPicFrame0?aX elementOCPicPage CPicLayer CPicFrame CPicSprite d  READMEOOCPicPage CPicLayer CPicFrame?2 elementOCPicPage CPicLayer CPicFrame$_highlight3D_mc, ,d%B darkshadow_mc d&/ shadow_mc( (d'Wface_mc d(( highlight_mc?P Skin ElementsOO?rvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");0?h{ Layer 1OCPicPage CPicLayer CPicFrame(?8Z elementOCPicPage CPicLayer CPicFrame(0X0?@ elementOCPicPage CPicLayer CPicFrame CPicSprite dopertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame CPicSpr highlight3D_mc, ,d # darkshadow_mc d!? highlight_mc d"}w shadow_mc?qR Skin ElementsOO?Dvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, prO?istop(); ActionsOOCPicPage CPicLayer CPicFrame |;D;?uite  mc_sliderTopr r#B mc_sliderMidJ J)2 mc_sliderBot?  Layer 1 elementOCPicPage CPicLayer CPicFrame 0 00?/\ elementOCPicPage CPicLayer CPicFrame00000?y> elementOCPicPage CPicLayer CPicFrame( 000?Ga elementOCPicPage CPicLayer CPicFrameX000X0?o elementOCPicPage CPicLayer CPicFrameX0X000?| elementOCPicPage CPicLayer CPicFrame CPicSprite dnhighlight3D_mc dF* darkshadow_mc READMEOOCPicPage CPicLayer CPicFrame |<C;?a elementO d1d highlight_mc d shadow_mc(( ((dY=face_mc_y _yd marrow_mc?_ Skin ElementsOO?Nvar component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "foregroundDisabled"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D"); CPicPage CPicLayer CPicFrame 0 00?v[ elementOCPicPage CPicLayer CPicFrame000 ?O elementOCPicPage CPicLayer CPicFrame00000??K elementOCPicPage CPicLayer CPicFrameX000X0?v elementOCPicPage CPicLayer CPicFrameX0X000?I elementOCPicPage CPicLayer CPicFrame CPicSprite d0 darkshadow_mc dhighlight3D_mc dU highlight_mc und") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); component.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOd* shadow_mc(( ((d9face_mcj jd arrow_mc?c Skin ElementsOO?var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "backgroCPicPage CPicLayer CPicFrameX(0000X? elementOCPicPage CPicLayer CPicFrameX000X0?! elementOCPicPage CPicLayer CPicFrame000000? J elementOCPicPage CPicLayer CPicFrame( 000?b elementOCPicPage CPicLayer CPicFrame ;D<?l elementOCPicPage CPicLayer CPicFrame 0 00?$ elementOCPicPage CPicLayer CPicFrame CPicSprcomponent.registerSkinElement(shadow_mc, "shadow"); component.registerSkinElement(darkshadow_mc, "darkshadow"); component.registerSkinElement(highlight_mc, "highlight"); component.registerSkinElement(highlight3D_mc, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame CPicSprite dite(( ((d yface_mc`y `yd arrow_mc d < highlight_mc d : shadow_mc d d darkshadow_mc dz2highlight3D_mc?'A Skin ElementsOO?5+ var component = _parent._parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(arrow_mc, "arrow"); component.registerSkinElement(face_mc, "face"); ?{istop(); ActionsOOCPicPage CPicLayer CPicFrameCPicText 3@arialfff(Send?e&up?b dJdown?nQ dDdisabled?# buttonsO?9stop();?stop();CPicPage CPicLayer CPicFrame CPicSprite(, 0J/(,d dArrowAsset(0 (0dC thumbAsset(. (.d-) upArrowAsset?z AssetsOO(( "((dC}csuperClassAsset;TmA0$E? SuperClass3 dEPTscrollTrack_mc?dO Bounding BoxO?'n+#initclip 1 /* FScrollBarClass EXTENDS FUIComponentClass */ FScrollBarClass = function() { if (this._height==4) { return ; } this.init(); this.minPos = this.maxPos = this.pageSize = this.largeScroll = 0; this.smallScroll = 1; this.width = (this.horizontal) ? this._width : this._height; this._xscale = this._yscale = 100; this.setScrollPosition(0); this.tabEnabled = false; if ( this._targetInstanceName.length > 0 ) { this.setScrollTarget(this._parent[this._targetInstanceName]); } this.tabChildren = false; this.setSize(this.width); } FScrollBarClass.prototype = new FUIComponentClass(); // ::: PUBLIC METHODS FScrollBarClass.prototype.setHorizontal = function(flag) { if (this.horizontal && !flag) { this._xscale = 100; this._rotation = 0; } else if (flag && !this.horizontal) { this._xscale = -100; this._rotation = -90; } this.horizontal = flag; } // updates the thumb, turns the bar on and off FScrollBarClass.prototype.setScrollProperties = function(pSize, mnPos, mxPos) { if (!this.enable) { return ; } this.pageSize = pSize; this.minPos = Math.max(mnPos, 0); this.maxPos = Math.max(mxPos,0); this.scrollPosition = Math.max(this.minPos, this.scrollPosition); this.scrollPosition = Math.min(this.maxPos, this.scrollPosition); if (this.maxPos-this.minPos<=0) { // turn it off this.scrollThumb_mc.removeMovieClip(); this.upArrow_mc.gotoAndStop(3); this.downArrow_mc.gotoAndStop(3); this.downArrow_mc.onPress = this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut = null; this.upArrow_mc.onPress = this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut = null; this.scrollTrack_mc.onPress = this.scrollTrack_mc.onRelease = null; this.scrollTrack_mc.onDragOut = this.scrollTrack_mc.onRollOut = null; this.scrollTrack_mc.useHandCursor = false; } else { // turn it on var tmp = this.getScrollPosition(); this.upArrow_mc.gotoAndStop(1); this.downArrow_mc.gotoAndStop(1); this.upArrow_mc.onPress = this.upArrow_mc.onDragOver = this.startUpScroller; this.upArrow_mc.onRelease = this.upArrow_mc.onDragOut = this.stopScrolling; this.downArrow_mc.onPress = this.downArrow_mc.onDragOver = this.startDownScroller; this.downArrow_mc.onRelease = this.downArrow_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onPress = this.scrollTrack_mc.onDragOver = this.startTrackScroller; this.scrollTrack_mc.onRelease = this.stopScrolling; this.scrollTrack_mc.onDragOut = this.stopScrolling; this.scrollTrack_mc.onRollOut = this.stopScrolling; this.scrollTrack_mc.useHandCursor = false; this.attachMovie("ScrollThumb", "scrollThumb_mc", 3); this.scrollThumb_mc._x = 0; this.scrollThumb_mc._y = this.upArrow_mc._height; this.scrollThumb_mc.onPress = this.startDragThumb; this.scrollThumb_mc.controller = this; this.scrollThumb_mc.onRelease = this.scrollThumb_mc.onReleaseOutside = this.stopDragThumb; this.scrollThumb_mc.useHandCursor=false; this.thumbHeight = this.pageSize / (this.maxPos-this.minPos+this.pageSize) * this.trackSize; this.thumbMid_mc = this.scrollThumb_mc.mc_sliderMid; this.thumbTop_mc = this.scrollThumb_mc.mc_sliderTop; this.thumbBot_mc = this.scrollThumb_mc.mc_sliderBot; this.thumbHeight = Math.max (this.thumbHeight, 6); // 6 is the smallest a thumb should be this.midHeight = this.thumbHeight - this.thumbTop_mc._height - this.thumbBot_mc._height; this.thumbMid_mc._yScale = this.midHeight * 100 / this.thumbMid_mc._height; this.thumbMid_mc._y = this.thumbTop_mc._height; this.thumbBot_mc._y = this.thumbTop_mc._height + this.midHeight; this.scrollTop = this.scrollThumb_mc._y; this.trackHeight = this.trackSize - this.thumbHeight; this.scrollBot = this.trackHeight + this.scrollTop; tmp = Math.min(tmp, this.maxPos); this.setScrollPosition(Math.max(tmp, this.minPos)); } } FScrollBarClass.prototype.getScrollPosition = function () { return this.scrollPosition; } FScrollBarClass.prototype.setScrollPosition = function(pos) { this.scrollPosition = pos; if (this.scrollThumb_mc!=undefined) { pos = Math.min(pos, this.maxPos); pos = Math.max(pos, this.minPos); } this.scrollThumb_mc._y = ((pos-this.minPos) * this.trackHeight / (this.maxPos-this.minPos)) + this.scrollTop; this.executeCallBack(); } FScrollBarClass.prototype.setLargeScroll = function(lScroll) { this.largeScroll = lScroll; } FScrollBarClass.prototype.setSmallScroll = function(sScroll) { this.smallScroll = sScroll; } FScrollBarClass.prototype.setEnabled = function(enabledFlag) { var wasEnabled = this.enable; if (enabledFlag && !wasEnabled) { this.enable = enabledFlag; if (this.textField!=undefined) { this.setScrollTarget(this.textField); } else { this.setScrollProperties(this.pageSize, this.cachedMinPos, this.cachedMaxPos); this.setScrollPosition(this.cachedPos); } this.clickFilter = undefined; } else if (!enabledFlag && wasEnabled) { this.textField.removeListener(this); this.cachedPos = this.getScrollPosition(); this.cachedMinPos = this.minPos; this.cachedMaxPos = this.maxPos; if (this.clickFilter==undefined) { this.setScrollProperties(this.pageSize,0,0); } else { this.clickFilter=true; } this.enable = enabledFlag; } } // stretches the track, creates + positions arrows FScrollBarClass.prototype.setSize = function(hgt) { if (this._height==1) return; this.width = hgt; this.scrollTrack_mc._yscale = 100; this.scrollTrack_mc._yscale = 100 * this.width / this.scrollTrack_mc._height; if (this.upArrow_mc==undefined) { this.attachMovie("UpArrow", "upArrow_mc", 1); //1 is arbitrary this.attachMovie("DownArrow", "downArrow_mc", 2); //2 is arbitrary this.downArrow_mc.controller = this.upArrow_mc.controller = this; this.upArrow_mc.useHandCursor = this.downArrow_mc.useHandCursor = false; this.upArrow_mc._x = this.upArrow_mc._y = 0; this.downArrow_mc._x = 0; } this.scrollTrack_mc.controller = this; this.downArrow_mc._y = this.width - this.downArrow_mc._height; this.trackSize = this.width - (2 * this.downArrow_mc._height); if (this.textField!=undefined) { this.onTextChanged(); } else { this.setScrollProperties(this.pageSize, this.minPos, this.maxPos); } } // ::: PRIVATE METHODS FScrollBarClass.prototype.scrollIt = function (inc, mode) { var delt = this.smallScroll; if (inc!="one") { delt = (this.largeScroll==0) ? this.pageSize : this.largeScroll; } var newPos = this.getScrollPosition() + (mode*delt); if (newPos>this.maxPos) { newPos = this.maxPos; } else if (newPosthis.controller.scrollBot) { this.scrollMove = this.controller.scrollBot; } this._y = this.scrollMove; var c = this.controller; c.scrollPosition = Math.round( (c.maxPos-c.minPos) * (this._y - c.scrollTop) / c.trackHeight) + c.minPos; this.controller.isScrolling = true; updateAfterEvent(); this.controller.executeCallBack(); } FScrollBarClass.prototype.stopDragThumb = function() { this.controller.isScrolling = false; this.onMouseMove = null; } FScrollBarClass.prototype.startTrackScroller = function() { this.controller.trackScroller(); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "page", -1); } FScrollBarClass.prototype.scrollInterval = function(inc,mode) { clearInterval(this.scrolling); if (inc=="page") { this.trackScroller(); } else { this.scrollIt(inc,mode); } this.scrolling = setInterval(this, "scrollInterval", 35, inc, mode); } FScrollBarClass.prototype.trackScroller = function() { if (this.scrollThumb_mc._y+this.thumbHeightthis._ymouse) { this.scrollIt("page",-1); } } FScrollBarClass.prototype.stopScrolling = function() { this.controller.downArrow_mc.gotoAndStop(1); this.controller.upArrow_mc.gotoAndStop(1); clearInterval(this.controller.scrolling); } FScrollBarClass.prototype.startUpScroller = function() { this.controller.upArrow_mc.gotoAndStop(2); this.controller.scrollIt("one",-1); this.controller.scrolling = setInterval(this.controller, "scrollInterval",500, "one", -1); } FScrollBarClass.prototype.startDownScroller = function() { this.controller.downArrow_mc.gotoAndStop(2); this.controller.scrollIt("one",1); this.controller.scrolling = setInterval(this.controller, "scrollInterval", 500, "one", 1); } // // Begin Special text scroller functions // FScrollBarClass.prototype.setScrollTarget = function(tF) { if (tF == undefined) { this.textField.removeListener(this); delete this.textField[ (this.horizontal) ? "hScroller" : "vScroller" ]; if (!(this.textField.hScroller==undefined) && !(this.textField.vScroller==undefined)) { this.textField.unwatch("text"); this.textField.unwatch("htmltext"); } } this.textField = undefined; if (!(tF instanceof TextField)) return; this.textField = tF; this.textField[ (this.horizontal) ? "hScroller" : "vScroller" ] = this; this.onTextChanged(); this.onChanged = function() { this.onTextChanged(); } this.onScroller = function() { if (!this.isScrolling) { if (!this.horizontal) { this.setScrollPosition(this.textField.scroll); } else { this.setScrollPosition(this.textField.hscroll); } } } this.textField.addListener(this); this.textField.watch("text", this.callback); this.textField.watch("htmlText", this.callback); } FScrollBarClass.prototype.callback = function(prop, oldVal, newVal) { clearInterval(this.hScroller.synchScroll); clearInterval(this.vScroller.synchScroll); this.hScroller.synchScroll = setInterval(this.hScroller, "onTextChanged", 50); this.vScroller.synchScroll = setInterval(this.vScroller, "onTextChanged", 50); return newVal; } FScrollBarClass.prototype.onTextChanged = function() { if (!this.enable || this.textField==undefined) return; clearInterval(this.synchScroll); if (this.horizontal) { var pos = this.textField.hscroll; this.setScrollProperties(this.textField._width, 0, this.textField.maxhscroll); this.setScrollPosition(Math.min(pos, this.textField.maxhscroll)); } else { var pos = this.textField.scroll; var pageSize = this.textField.bottomScroll - this.textField.scroll; this.setScrollProperties(pageSize, 1, this.textField.maxscroll); this.setScrollPosition(Math.min(pos, this.textField.maxscroll)); } } FScrollBarClass.prototype.executeCallBack = function() { if (this.textField==undefined) { super.executeCallBack(); } else { if ( this.horizontal ) { this.textField.hscroll = this.getScrollPosition(); } else { this.textField.scroll = this.getScrollPosition(); } } } Object.registerClass("FScrollBarSymbol", FScrollBarClass); #endinitclip  Actions : ClassOO Layer 1OCPicPage CPicLayer CPicFrameCPicText L@@arialfff(Clear?  L@@ar 3@arial(Send?i  @arial(send<<sX@P0000?H DArialfff(Message wA@arial333(first_name_txt wA@arial333( last_name_txt vA@arial333( email_txt D Y@ varMessagearial333( message_txt CPicSprite1 1|{Target TextField message_txt_targetInstanceNameH@ Horizontalfalse horizontalI@ Dt @arialf( status_txt CPicButton1 1 hJsend_btn? n@'Arialfff(Thank you. Your message has been sent.?F? assetsO?L:6stop (); function sendForm () { my_lv = new LoadVars (); my_lv.fName = _parent.first_name_txt.text; my_lv.lName = _parent.first_name_txt.text; my_lv.email = _parent.email_txt.text; my_lv.the_message = _parent.message_txt.text; my_lv.send ("http://mydomain.com/mailform.cfm", "POST"); nextFrame (); } send_btn.onRelease = function () { if (first_name_txt.text == "" || first_name_txt.text == "" || email_txt == "" || message_txt.text == "") { status_txt.text = "Please complete the entire form ..."; } else { status_txt.text = ""; sendForm (); } };  actionsOOCPicPage CPicLayer CPicFrameCPicText  arialfff(First Name  Arialfff(Last Name |  Arialfff(Email Address) CDocumentPagePage 1Scene 1{:>ڃ? Symbol 102 clear_btnf'>KhSymbol 1ڃ> Symbol 1send_btn/>.:navigation.flanavigation/send_btnDT>/>> Symbol 6 ScrollBar2U<{r;FScrollBarSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/ ScrollBar(<r;(<UI Components/FScrollBarTarget TextField_targetInstanceNameH@ Horizontalfalse horizontalI@DC:\depot\main\frameworks\UIcontrols\live_previews\scrollBar_live.swfbCWSAXx[{ly-$'EߖhI;ɯZޭx'ݞ86-9-R چn$8_ui nnԢ cffwfo(Zo|rdTxHػ&x__d LzBOO:^șz:gx Kz=i`vi|$՚3R Vtlg Bhۤ_}G6nz8tM%5 !r(k̶{l~r}>ZhlMـ) >F\[V| HwʅKMaE.+Y*|w|<np,\s)wZo~Il`‹ERMb昐÷s<#9m27d+ 5q5wWO$$Vp yiâW$C@)%ÍH+"*eE(JEJRB! tF:L,jՅ@V[ܱCR$ὅ@=֗( ʕÈ:;V@ָւo]up2ٜL0ӽLm<~oor|#xh{\Og@xŗпQЯgЯ.M+> @  )VHtZ'` jo*6dO][s?_nk +pM&S~3KՉ70tr="B-@uu}^XY2S7葈$~C 4q024a*[G\' FH<s?yH|w H3UF0v72˱ 4g}FKo5: ceL ̑t,BÐIx)@opt#FR?W-.^0?@܏E߬!?$Ѷ`&X #Bk'/~xJ?v_Ƚ`IS` c& @.O +*x*G7t0 FDSi+;! ȑBD@l`ar'bwR]HC_Vw` XoOzvcg=2f[XRƱW}E/*f$"e XDcT2F,3X삥6e0R+E;<춟rz*5JO!?ؗ?zѿ:x>?~M۱;[M266Ymz.ȗ[?˿}P]~[]%v;WtlYQ׍yuc~pc{\~O?sϟrϞz e9&o̻D ޘݘwߘwG"ƼƼps ]Cev{pM:ӿ鿏=7k+4 ȗvOvouD_q/~`vm}dvv]DXms;!rӘǯfrsUz#6C&0Ev.&~1[YbM-1x5smD(csD+=:2!5+]R#8^Z .q ?Q( %7AͷW5Pn<渇}4E-##:ɸJK0~d: =Oj5c$yFyc&u빴jgsiVD5QtkFP!АF2~!щ3Z zfXc;=8zY?'{ Zo'9DdZoW#D) 7>` W=cٸjh4d&GCX(6nYSJY!vABRR$JMv 5B BݼP/DB"yi|wkf&5/7LLiti\ćsJ] ^GHI24l#Rynd52KjT2c89d ,{<.xxx*aJX_: s`H2>'`gm:$=o^T#э5DOGz&OR΋jyDKA7z63LBi]iYp"CPn7$X'Fዷ4.+`8OX$왞˩d]$7AvILN LLU%5$Lֽi, u?ЂvWKA\w2l65Gt e H,K)3w~K`r",Cl$Ԓ(/,- x"T K->wGBSR(A@GTdfBV *[Mykx"ՅI/ʓ(J2L2ڷF;VX6;rp\HkW@γ5SJZJIZ#ޛm65ϵQMf61@JKVRzєUADi2mࡾ ZMPWs3` (>JmImaG>p`+](!m2 >w`EsjYh|-N(nʼ'Ѳtl(C.(ސ P@(T "VOF> [+m|)!ȘԭJlA(:*K%fvI=D)!pSdjGDjS9:ZH x`#9c Sc7s;[#@K)\czO2xvtn͆ yg!j_;4,b>q̠H:" +DEB4VQ-qc[^ʡ[9yKp,V2CmoXLzxz,L>߅˕?^T?6YE>^[^P'l 8c>*57Ӟ >w Cm[$9=JD}.W0"'K54.-gyʱݥ;X{ͅ;#.wί$iMuN4"n轢l ڡ|vNF^Whv| fv9u.JiPJ~"E'V Iˎʈ+3&Nml@C6h &"O#)g:-3FZIpC_0OzܰldILJQ]^aVC;-:: k\xcWf D l\ҝ0/, ;lv\!LdQ\[X+jstU7k&gCrzR╳d"}y!s@m;i؎0ݞUY/ CN:Q,=ŶEGgoM85)4"]Y*anVp%6h.BkN;M~ண('9VѼ{̻yٸŃuu4x_9mAQ댽3NxNDe7q @HXRL?2>x*O#I2 ["~o]va[!* '4㌃Jvsfei#iAl4uJ5yWc+)vGI31,rzfEiJSxp,NF«``"YF:w#ji9X9c,hY(ވ!Mhgrw.{ R5AI ]%"0}6kӆᐼ.˞,FYOl&QeTܘXgkbHO*bȳ'}I߆@bY(+aǖ*H'XYc֐K&$zBn~@ H/c 7 ^aFmT#dOo^]jVRy6lu LʝɲO客yJx\5/-nQʭ G1b|Q6`|6ӀOJ EiE|0Bh_fgwv>vwNcgg.bUW\XhQRVSghP1%S*$yѮFoࡌ~B< vuՒiZX}WLt=WtU5Wl,:9B(t7ҺEX:0Q[a\{ MIsTyFO/!&ǡxqY{\Jtc|Is2Rq+zDEx(KN~W!8_Df0ov"tMJiX8o pr %^ CB摵iW꜏k]XlHzԯtúQC3?  Hq\o,>"]۔ȪVnSs><~,|Qp  Scroll Bar Symbol 7 fsb_DownArrow.r;r>;L DownArrow|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla]Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_DownArrow(<>;L(< Symbol 8 fsb_downArrow5r;;b|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaBFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow(<;b(< Symbol 9fsb_downArrow_face ;$;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_face(<$;(< Symbol 10fsb_downArrow_arrow ;';|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_arrow(<';(< Symbol 11fsb_downArrow_leftIn ;";|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_leftIn(<";(< Symbol 12fsb_downArrow_rightIn ;';|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_rightIn(<';(< Symbol 13fsb_downArrow_rightOut ;*;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_rightOut(<*;(< Symbol 14fsb_downArrow_leftOut;%;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_leftOut(<%;(< Symbol 15fsb_downArrow_press5r;>;R|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaHFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow_press(<>;R(< Symbol 16fsb_downArrow_press_leftOut;A;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_leftOut(<A;(< Symbol 17fsb_downArrow_press_rightOut;G;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_rightOut(<G;(< Symbol 18fsb_downArrow_press_rightIn;D;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_rightIn(<D;(< Symbol 19fsb_downArrow_press_leftIn;?;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_leftIn(<?;(< Symbol 20fsb_downArrow_press_face;5;q|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_face(<5;q(< Symbol 21fsb_downArrow_press_arrow;@;s|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_arrow(<@;s(< Symbol 22fsb_downArrow_disabled5r;;O|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaKFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow_disabled(<;O(< Symbol 23fsb_downArrow_disabled_leftOut;4;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_leftOut(<4;(< Symbol 24fsb_downArrow_disabled_rightOut;9;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_rightOut(<9;(< Symbol 25fsb_downArrow_disabled_leftIn;2;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_leftIn(<2;(< Symbol 26fsb_downArrow_disabled_rightIn;6;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_rightIn(<6;(< Symbol 27fsb_downArrow_disabled_face;n;L|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_face(<n;L(< Symbol 28fsb_downArrow_disabled_arrow;x;N|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_arrow(<x;N(< Symbol 29fsb_ScrollThumb.r;r>;X ScrollThumb|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla_Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_ScrollThumb(<>;X(< Symbol 30 fsb_thumb_top5r;>;[|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaBFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_top(<>;[(< Symbol 31fsb_thumb_top_leftOut;h;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_leftOut(<h;(< Symbol 32fsb_thumb_top_rightOut ;Ŭ;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_rightOut(<Ŭ;(< Symbol 33fsb_thumb_top_leftIn!;f;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_leftIn(<f;(< Symbol 34fsb_thumb_top_rightIn";j;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_rightIn(<j;(< Symbol 35fsb_thumb_middle#5r;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaEFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_middle(<;(< Symbol 36fsb_thumb_mid_leftOut$٨;_;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_leftOut(<_;(< Symbol 37fsb_thumb_mid_rightOut%٨;c;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_rightOut(<c;(< Symbol 38fsb_thumb_mid_rightIn&٨;a;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_rightIn(<a;(< Symbol 39fsb_thumb_mid_face'٨; ;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_face(< ;(< Symbol 40fsb_thumb_mid_leftIn(٨;];|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_leftIn(<];(< Symbol 41fsb_thumb_bottom)5r;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaEFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_bottom(<;(< Symbol 42fsb_thumb_bottom_rightIn*;V;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_rightIn(<V;(< Symbol 43fsb_thumb_bottom_rightOut+;X;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_rightOut(<X;(< Symbol 44fsb_thumb_bottom_leftOut,;T;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_leftOut(<T;(< Symbol 45 fsb_UpArrow-.r;r>;dUpArrow|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_UpArrow(<>;d(< Symbol 46 fsb_upArrow.5r;;d|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla@Flash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow(<;d(< Symbol 47fsb_upArrow_face/};;d|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flazFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_face(<;d(< Symbol 48fsb_upArrow_arrow0};Z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla{Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_arrow(<Z;(< Symbol 49fsb_upArrow_leftIn1};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla|Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_leftIn(<;(< Symbol 50fsb_upArrow_rightIn2};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla}Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_rightIn(<;(< Symbol 51fsb_upArrow_rightOut3};~;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_rightOut(<~;(< Symbol 52fsb_upArrow_leftOut4};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla}Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_leftOut(<;(< Symbol 53fsb_upArrow_press55r;>;j|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFFlash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow_press(<>;j(< Symbol 54fsb_upArrow_press_leftOut6M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_leftOut(<;(< Symbol 55fsb_upArrow_press_rightOut7M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_rightOut(<;(< Symbol 56fsb_upArrow_press_rightIn8M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_rightIn(<;(< Symbol 57fsb_upArrow_press_leftIn9M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_leftIn(<;(< Symbol 58fsb_upArrow_press_face:M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_face(<;(< Symbol 59fsb_upArrow_press_arrow;M;};?|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_arrow(<};?(< Symbol 60fsb_upArrow_disabled<5r;;c|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaIFlash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow_disabled(<;c(< Symbol 61fsb_upArrow_disabled_leftOut=;4 </component>  Dt @ arialf( status_txt CPicButton1 1  Csend_btn?Z n@' Arialfff(Thank you. Your message has been sent.?/ assetsO?O6stop (); function sendForm () { my_lv = new LoadVars (); my_lv.fName = _parent.first_name_txt.text; my_lv.lName = _parent.first_name_txt.text; my_lv.email = _parent.email_txt.text; my_lv.the_message = _parent.message_txt.text; my_lv.send ("http://mydomain.com/mailform.cfm", "POST"); nextFrame (); } send_btn.onRelease = function () { if (first_name_txt.text == "" || first_name_txt.text == "" || email_txt == "" || message_txt.text == "") { status_txt.text = "Please complete the entire form ..."; } else { status_txt.text = ""; sendForm (); } };  actionsOO8 CDocumentPagePage 1Scene 1{:>ڃ? Symbol 102 clear_btnf'>KhSymbol 1ڃ>Symbol 1send_btn/>.:navigation.flanavigation/send_btnDT>/>>Symbol 6 ScrollBar2U<{r;FScrollBarSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/ ScrollBar(<r;(<UI Components/FScrollBarTarget TextField_targetInstanceNameH@ Horizontalfalse horizontalI@ Scroll BarDC:\depot\main\frameworks\UIcontrols\live_previews\scrollBar_live.swfbCWSAXx[{ly-$'EߖhI;ɯZޭx'ݞ86-9-R چn$8_ui nnԢ cffwfo(Zo|rdTxHػ&x__d LzBOO:^șz:gx Kz=i`vi|$՚3R Vtlg Bhۤ_}G6nz8tM%5 !r(k̶{l~r}>ZhlMـ) >F\[V| HwʅKMaE.+Y*|w|<np,\s)wZo~Il`‹ERMb昐÷s<#9m27d+ 5q5wWO$$Vp yiâW$C@)%ÍH+"*eE(JEJRB! tF:L,jՅ@V[ܱCR$ὅ@=֗( ʕÈ:;V@ָւo]up2ٜL0ӽLm<~oor|#xh{\Og@xŗпQЯgЯ.M+> @  )VHtZ'` jo*6dO][s?_nk +pM&S~3KՉ70tr="B-@uu}^XY2S7葈$~C 4q024a*[G\' FH<s?yH|w H3UF0v72˱ 4g}FKo5: ceL ̑t,BÐIx)@opt#FR?W-.^0?@܏E߬!?$Ѷ`&X #Bk'/~xJ?v_Ƚ`IS` c& @.O +*x*G7t0 FDSi+;! ȑBD@l`ar'bwR]HC_Vw` XoOzvcg=2f[XRƱW}E/*f$"e XDcT2F,3X삥6e0R+E;<춟rz*5JO!?ؗ?zѿ:x>?~M۱;[M266Ymz.ȗ[?˿}P]~[]%v;WtlYQ׍yuc~pc{\~O?sϟrϞz e9&o̻D ޘݘwߘwG"ƼƼps ]Cev{pM:ӿ鿏=7k+4 ȗvOvouD_q/~`vm}dvv]DXms;!rӘǯfrsUz#6C&0Ev.&~1[YbM-1x5smD(csD+=:2!5+]R#8^Z .q ?Q( %7AͷW5Pn<渇}4E-##:ɸJK0~d: =Oj5c$yFyc&u빴jgsiVD5QtkFP!АF2~!щ3Z zfXc;=8zY?'{ Zo'9DdZoW#D) 7>` W=cٸjh4d&GCX(6nYSJY!vABRR$JMv 5B BݼP/DB"yi|wkf&5/7LLiti\ćsJ] ^GHI24l#Rynd52KjT2c89d ,{<.xxx*aJX_: s`H2>'`gm:$=o^T#э5DOGz&OR΋jyDKA7z63LBi]iYp"CPn7$X'Fዷ4.+`8OX$왞˩d]$7AvILN LLU%5$Lֽi, u?ЂvWKA\w2l65Gt e H,K)3w~K`r",Cl$Ԓ(/,- x"T K->wGBSR(A@GTdfBV *[Mykx"ՅI/ʓ(J2L2ڷF;VX6;rp\HkW@γ5SJZJIZ#ޛm65ϵQMf61@JKVRzєUADi2mࡾ ZMPWs3` (>JmImaG>p`+](!m2 >w`EsjYh|-N(nʼ'Ѳtl(C.(ސ P@(T "VOF> [+m|)!ȘԭJlA(:*K%fvI=D)!pSdjGDjS9:ZH x`#9c Sc7s;[#@K)\czO2xvtn͆ yg!j_;4,b>q̠H:" +DEB4VQ-qc[^ʡ[9yKp,V2CmoXLzxz,L>߅˕?^T?6YE>^[^P'l 8c>*57Ӟ >w Cm[$9=JD}.W0"'K54.-gyʱݥ;X{ͅ;#.wί$iMuN4"n轢l ڡ|vNF^Whv| fv9u.JiPJ~"E'V Iˎʈ+3&Nml@C6h &"O#)g:-3FZIpC_0OzܰldILJQ]^aVC;-:: k\xcWf D l\ҝ0/, ;lv\!LdQ\[X+jstU7k&gCrzR╳d"}y!s@m;i؎0ݞUY/ CN:Q,=ŶEGgoM85)4"]Y*anVp%6h.BkN;M~ண('9VѼ{̻yٸŃuu4x_9mAQ댽3NxNDe7q @HXRL?2>x*O#I2 ["~o]va[!* '4㌃Jvsfei#iAl4uJ5yWc+)vGI31,rzfEiJSxp,NF«``"YF:w#ji9X9c,hY(ވ!Mhgrw.{ R5AI ]%"0}6kӆᐼ.˞,FYOl&QeTܘXgkbHO*bȳ'}I߆@bY(+aǖ*H'XYc֐K&$zBn~@ H/c 7 ^aFmT#dOo^]jVRy6lu LʝɲO客yJx\5/-nQʭ G1b|Q6`|6ӀOJ EiE|0Bh_fgwv>vwNcgg.bUW\XhQRVSghP1%S*$yѮFoࡌ~B< vuՒiZX}WLt=WtU5Wl,:9B(t7ҺEX:0Q[a\{ MIsTyFO/!&ǡxqY{\Jtc|Is2Rq+zDEx(KN~W!8_Df0ov"tMJiX8o pr %^ CB摵iW꜏k]XlHzԯtúQC3?  Hq\o,>"]۔ȪVnSs><~,|Qp UI Components/FScrollBarTarget TextField_targetInstanceNameH@ Horizontalfalse horizontalI@Symbol 7 fsb_DownArrow.r;r>;L DownArrow|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla]Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_DownArrow(<>;L(<Symbol 8 fsb_downArrow5r;;b|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaBFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow(<;b(<Symbol 9fsb_downArrow_face ;$;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_face(<$;(< Symbol 10fsb_downArrow_arrow ;';|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_arrow(<';(< Symbol 11fsb_downArrow_leftIn ;";|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_leftIn(<";(< Symbol 12fsb_downArrow_rightIn ;';|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_rightIn(<';(< Symbol 13fsb_downArrow_rightOut ;*;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_rightOut(<*;(< Symbol 14fsb_downArrow_leftOut;%;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow/fsb_downArrow_leftOut(<%;(< Symbol 15fsb_downArrow_press5r;>;R|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaHFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow_press(<>;R(<Symbol 98*Symbol 99\^ Symbol 100_ Symbol 101 Symbol 16fsb_downArrow_press_leftOut;A;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_leftOut(<A;(< Symbol 17fsb_downArrow_press_rightOut;G;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_rightOut(<G;(< Symbol 18fsb_downArrow_press_rightIn;D;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_rightIn(<D;(< Symbol 19fsb_downArrow_press_leftIn;?;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Co     2 !"#$%&'()*+,-./01 3456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~nfiguration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_leftIn(<?;(< Symbol 20fsb_downArrow_press_face;5;q|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_face(<5;q(< Symbol 21fsb_downArrow_press_arrow;@;s|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_press/fsb_downArrow_press_arrow(<@;s(< Symbol 22fsb_downArrow_disabled5r;;O|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaKFlash UI Components/Component Skins/FScrollBar Skins/fsb_downArrow_disabled(<;O(< Symbol 23fsb_downArrow_disabled_leftOut;4;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_leftOut(<4;(< Symbol 24fsb_downArrow_disabled_rightOut;9;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_rightOut(<9;(< Symbol 25fsb_downArrow_disabled_leftIn;2;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_leftIn(<2;(< Symbol 26fsb_downArrow_disabled_rightIn;6;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_rightIn(<6;(< Symbol 27fsb_downArrow_disabled_face;n;L|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downArrow_disabled/fsb_downArrow_disabled_face(<n;L(< Symbol 28fsb_downArrow_disabled_arrow;x;N|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_downASymbol 84 Symbol 86MU Symbol 87z Symbol 88RTu Symbol 80 Symbol 81KO Symbol 82 Symbol 83NP Symbol 89p Symbol 90SYk Symbol 92f Symbol 93VXa Symbol 94\ Symbol 95W[W Symbol 96R Symbol 97Z]2  !"#$%&'()+,-./013456789:;<=>?@ABCDEFGHIJKLMNOPQSTUVXYZ[]^_`bcdeghijlmnoqrstvwxy{|}~CPicPage CPicLayer CPicFrame ~0-0 d?zM assetOCPicPage CPicLayer CPicFrame/000`0?;0 elementOCPicPage CPicLayer CPicFrame CPicSprite ddQ boundingBox CPicShapefffs`0`00?}) dd boundingBox2 fff`0`00?+* Skin ElementsO? `var component = _parent; //::: don't delete the above //::: SKIN ELEMENT REGISTRATION /* To add styleFormat properties to your skins : 1) Break up your skin into individual movie clips (skinElements) 2) add a registerSkinElement line of code for each skinElement component.registerSkinElement(skinElement, propertyName) // makes the skinElement Listen to the propertyName specified (eg: "background") n*/ component.registerSkinElement(boundingBox, "background"); stop();?@L component.registerSkinElement(boundingBox2,"backgroundDisabled"); stop(); READMEOO?enableds?disabled\- labels3CPicPage CPicLayer CPicFrame000? Symbol_10) Layer 1O?LL Layer 2OOCPicPage CPicLayer CPicFrameCPicText ((T"_sans( labelField? Symbol_328 Label AssetO?"#initclip 0 _global.FLabelClass = function() { if (this.hostComponent==undefined) { this.hostComponent = (this._parent.controller==undefined) ? this._parent : this._parent.controller; } if (this.customTextStyle==undefined) { if (this.hostComponent.textStyle==undefined) { this.hostComponent.textStyle= new TextFormat(); } this.textStyle = this.hostComponent.textStyle; this.enable = true; } } FLabelClass.prototype = new MovieClip(); Object.registerClass("FLabelSymbol", FLabelClass); //::: PUBLIC METHODS FLabelClass.prototype.setLabel = function(label) { var val = this.hostComponent.styleTable.embedFonts.value; if (val!=undefined) { this.labelField.embedFonts = val; } this.labelField.setNewTextFormat(this.textStyle); this.labelField.text = label; this.labelField._height = this.labelField.textHeight + 2; } FLabelClass.prototype.setSize = function(width) // note that height is textFormat-based. { this.labelField._width = width; } FLabelClass.prototype.setEnabled = function(enable) { this.enable=enable; var tmpColor = this.hostComponent.styleTable[ (enable) ? "textColor" : "textDisabled" ].value; if (tmpColor==undefined) { tmpColor = (enable) ? 0x000000 : 0x888888; } this.setColor(tmpColor); } FLabelClass.prototype.getLabel = function() { return this.labelField.text; } FLabelClass.prototype.setColor = function(col) { this.labelField.textColor = col; } #endinitclip Class MethodsOOCPicPage CPicLayer CPicFrame,0,0,0?j elementOCPicPage CPicLayer CPicFrame,0,0,0?k elementOCPicPage CPicLayer CPicFrame,0,0,0?^v elementOCPicPage CPicLayer CPicFrame,,00,0,?0 elementOCPicPage CPicLayer CPicFrame00000?_ elementOCPicPage CPicLayer CPicFrame,0,0,0?[ Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?MY Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?t Layer 1OCPicPage CPicLayer CPicFrame,,00,0,?_ Layer 1OCPicPage CPicLayer CPicFrame00000? Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?& Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?Y Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?_K Layer 1OCPicPage CPicLayer CPicFrame,,00,0,? Layer 1OCPicPage CPicLayer CPicFrame00000?f Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?gH Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?8 Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?  Layer 1OCPicPage CPicLayer CPicFrame,,00,0,?.7 Layer 1OCPicPage CPicLayer CPicFrame00000?U Layer 1OCPicPage CPicLayer CPicFrame?.q?t?W? statesOO?/b?DN?/?n statesO?ystop();? stop(); ?G}stop();?stop(); actions: frameO?upu?overa?down>rrow_disabled/fsb_downArrow_disabled_arrow(<x;N(< Symbol 29fsb_ScrollThumb.r;r>;X ScrollThumb|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla_Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_ScrollThumb(<>;X(< Symbol 30 fsb_thumb_top5r;>;[|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaBFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_top(<>;[(< Symbol 31fsb_thumb_top_leftOut;h;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_leftOut(<h;(< Symbol 32fsb_thumb_top_rightOut ;Ŭ;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_rightOut(<Ŭ;(< Symbol 33fsb_thumb_top_leftIn!;f;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_leftIn(<f;(< Symbol 34fsb_thumb_top_rightIn";j;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbTop/fsb_thumb_top_rightIn(<j;(< Symbol 35fsb_thumb_middle#5r;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaEFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_middle(<;(< Symbol 36fsb_thumb_mid_leftOut$٨;_;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_leftOut(<_;(< Symbol 37fsb_thumb_mid_rightOut%٨;c;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_rightOut(<c;(< Symbol 38fsb_thumb_mid_rightIn&٨;a;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_rightIn(<a;(< Symbol 39fsb_thumb_mid_face'٨; ;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_face(< ;(< Symbol 40fsb_thumb_mid_leftIn(٨;];|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbMiddle/fsb_thumb_mid_leftIn(<];(< Symbol 41fsb_thumb_bottom)5r;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaEFlash UI Components/Component Skins/FScrollBar Skins/fsb_thumb_bottom(<;(< Symbol 42fsb_thumb_bottom_rightIn*;V;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_rightIn(<V;(< Symbol 43fsb_thumb_bottom_rightOut+;X;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_rightOut(<X;(< Symbol 44fsb_thumb_bottom_leftOut,;T;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_thumbBottom/fsb_thumb_bottom_leftOut(<T;(< Symbol 45 fsb_UpArrow-.r;r>;dUpArrow|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/fsb_UpArrow(<>;d(< Symbol 46 fsb_upArrow.5r;;d|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla@Flash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow(<;d(< Symbol 47fsb_upArrow_face/};;d|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flazFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_face(<;d(< Symbol 48fsb_upArrow_arrow0};Z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla{Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_arrow(<Z;(< Symbol 49fsb_upArrow_leftIn1};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla|Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_leftIn(<;(< Symbol 50fsb_upArrow_rightIn2};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla}Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_rightIn(<;(< Symbol 51fsb_upArrow_rightOut3};~;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_rightOut(<~;(< Symbol 52fsb_upArrow_leftOut4};;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla}Flash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow/fsb_upArrow_leftOut(<;(< Symbol 53fsb_upArrow_press55r;>;j|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFFlash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow_press(<>;j(< Symbol 54fsb_upArrow_press_leftOut6M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_leftOut(<;(< Symbol 55fsb_upArrow_press_rightOut7M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_rightOut(<;(< Symbol 56fsb_upArrow_press_rightIn8M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_rightIn(<;(< Symbol 57fsb_upArrow_press_leftIn9M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_leftIn(<;(< Symbol 58fsb_upArrow_press_face:M;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_face(<;(< Symbol 59fsb_upArrow_press_arrow;M;};?|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_press/fsb_upArrow_press_arrow(<};?(< Symbol 60fsb_upArrow_disabled<5r;;c|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaIFlash UI Components/Component Skins/FScrollBar Skins/fsb_upArrow_disabled(<;c(< Symbol 61fsb_upArrow_disabled_leftOut=;4;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_rightOut(<;(< Symbol 63fsb_upArrow_disabled_leftIn?;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_leftIn(<;(< Symbol 64fsb_upArrow_disabled_rightIn@;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_rightIn(<;(< Symbol 65fsb_upArrow_disabled_faceA;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_face(<;(< Symbol 66fsb_upArrow_disabled_arrowB;;v|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_arrow(<;v(< Symbol 67 FUIComponentC.r;w;;p|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaDFlash UI Components/Component Skins/FScrollBar Skins/fsb_ScrollTrack(<>;p(< Symbol 70 scrollTrackF.r;qo;t|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flajFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/ scrollTrack(<o;t(< Symbol 72 fpb_statesHk;;! fpb_states|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/fpb_states(<;!❨> Symbol 74fpb_rightOutFrame_upJf;.w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_rightOutFrame_up(<.w;(< Symbol 75fpb_leftOutFrame_upKf;!w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_leftOutFrame_up(<!w;(< Symbol 76fpb_rightInFrame_upLf;'w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_rightInFrame_up(<'w;(< Symbol 77fpb_leftInFrame_upMf;v;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_leftInFrame_up(<v;(< Symbol 78 fpb_face_upNf;w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaxFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_face_up(<w;(< Symbol 80fpb_rightOutFrame_pressP;{;*|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_rightOutFrame_press(<{;*(< Symbol 81fpb_leftOutFrame_pressQ;${;D|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_leftOutFrame_press(<${;D(< Symbol 82fpb_rightInFrame_pressR;{; |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_rightInFrame_press(<{; (< Symbol 83fpb_leftInFrame_pressS;v;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_leftInFrame_press(<v;(< Symbol 84fpb_face_pressT;z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_face_press(<z;(< Symbol 86fpb_rightOutFrame_overV;Wz;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_rightOutFrame_over(<Wz;(< Symbol 87fpb_leftOutFrame_overW;Mz;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_leftOutFrame_over(<Mz;(< Symbol 88fpb_rightInFrame_overX;bz;\|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPusabled? buttonsO?stop();?Lstop();?tstop(); ActionsOOCPicPage CPicLayer CPicFrameCPicText 3@arialfff(Send?7}hButton Elements/fpb_over/fpb_rightInFrame_over(<bz;\(< Symbol 89fpb_leftInFrame_overY;Cz;H|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_leftInFrame_over(<Cz;H(< Symbol 90 fpb_face_overZ;.z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla|Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_face_over(<.z;(< Symbol 92fpb_rightOutFrame_disabled\ª;_{;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_rightOutFrame_disabled(<_{;(< Symbol 93fpb_leftOutFrame_disabled]ª;{; |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_leftOutFrame_disabled(<{; (< Symbol 94fpb_rightInFrame_disabled^ª;u{;e|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_rightInFrame_disabled(<u{;e(< Symbol 95fpb_leftInFrame_disabled_ª;{;, |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_leftInFrame_disabled(<{;, (< Symbol 96fpb_face_disabled`ª;{;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_face_disabled(<{;(< Symbol 97FLabela.r;o; FLabelSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla7Flash UI Components/Component Skins/Global Skins/FLabel(<;(<3K']@3K']@ Symbol 98 fpb_hitAreabf;hEN<_ fpb_hitArea|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaxFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_hitArea(<hEN<_(< Symbol 99 FBoundingBoxc.r;o>;FBoundingBoxSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla=Flash UI Components/Component Skins/Global Skins/FBoundingBox(<>;(< Symbol 100 boundingBoxdvC;h;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaIFlash UI Components/Core Assets - Developer Only/Other Assets/boundingBox(<h;(< Symbol 101PushButton NameeHj;o;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaZFlash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/PushButton Name(<o;(<h3 hhhhhVector::External PlayerVector::Package Paths Vector::FireFox0Vector::Template0Vector::Package Export Frame1Vector::DeviceSound0Vector::ActionScriptVersion1PropSheet::ActiveTab7641 PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteName"PublishHtmlProperties::StartPaused0%PublishFormatProperties::htmlFileName form.htmlPublishProfileProperties::nameFlash MX Settings PublishQTProperties::LayerOption PublishQTProperties::AlphaOption"PublishQTProperties::MatchMovieDim1PublishHtmlProperties::Loop1Vector::Debugging Permitted0PublishFormatProperties::jpeg0%PublishHtmlProperties::showTagWarnMsg1&PublishRNWKProperties::speedSingleISDN0&PublishRNWKProperties::singleRateAudio0PublishQTProperties::Width660$PublishPNGProperties::OptimizeColors1PublishHtmlProperties::Units04PublishHtmlProperties::UsingDefaultAlternateFilename1'PublishFormatProperties::gifDefaultName1%PublishRNWKProperties::mediaCopyright(c) 2000#PublishRNWKProperties::flashBitRate1200PublishGifProperties::Smooth1Vector::Compress Movie1&PublishFormatProperties::flashFileNameform.swf%PublishFormatProperties::projectorMac0!PublishRNWKProperties::exportSMIL1 Publis 3@arial(Send?s  @arial(send<<sX@P0000?: Layer 1OCPicPage CPicLayer CPicFrameCPicText L@@arialfff(Clear?  L@@arial333(Clear?3 L@@arial333(Clear333x000 0? Layer 1OCPicPage CPicLayer CPicFrameCPicText  arialfff(First Name  Arialfff(Last Name |  Arialfff(Email AddresshRNWKProperties::speed384K0"PublishRNWKProperties::exportAudio1"PublishGifProperties::DitherOptionPublishHtmlProperties::Quality4(PublishHtmlProperties::VerticalAlignment1$PublishFormatProperties::pngFileNameform.pngPublishFormatProperties::html0-PublishFormatProperties::generatorDefaultName1'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOption!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0(PublishFormatProperties::rnwkDefaultName1(PublishFormatProperties::jpegDefaultName1PublishQTProperties::Flatten1PublishJpegProperties::DPI4718592PublishPNGProperties::BitDepth24-bit with AlphaPublishPNGProperties::Smooth1"PublishGifProperties::DitherSolids0PublishGifProperties::Interlace0"PublishHtmlProperties::DisplayMenu1*PublishHtmlProperties::HorizontalAlignment1Vector::Quality80Vector::Protect0*PublishFormatProperties::generatorFileNameform.swtPublishFormatProperties::gif02PublishHtmlProperties::VersionDetectionIfAvailable0$PublishRNWKProperties::mediaKeywords!PublishRNWKProperties::mediaTitlePublishRNWKProperties::speed28K1PublishGifProperties::Loop1PublishGifProperties::Width660#PublishFormatProperties::qtFileNameform.mov$PublishRNWKProperties::speedDualISDN0$PublishRNWKProperties::realVideoRate100000PublishJpegProperties::Quality80"PublishPNGProperties::DitherOption#PublishGifProperties::PaletteOption#PublishGifProperties::MatchMovieDim1PublishFormatProperties::flash1'PublishFormatProperties::pngDefaultName10PublishFormatProperties::projectorMacDefaultName1!PublishProfileProperties::version1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption#PublishPNGProperties::MatchMovieDim1PublishHtmlProperties::Align0-PublishFormatProperties::projectorWinFileNameform.exe)PublishFormatProperties::flashDefaultName1#PublishQTProperties::PlayEveryFrame0"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0PublishHtmlProperties::Height140PublishHtmlProperties::Width660Vector::Debugging PasswordVector::Omit Trace Actions0%PublishFormatProperties::jpegFileNameform.jpg(PublishFormatProperties::htmlDefaultName1PublishJpegProperties::Size0PublishPNGProperties::Interlace0PublishGifProperties::Height140'PublishHtmlProperties::TemplateFileNameqMacintosh HD:Users:Robert:Library:Application Support:Macromedia:Flash MX 2004:en:Configuration:Html:Default.html!PublishHtmlProperties::WindowMode0Vector::TopDown0-PublishFormatProperties::projectorMacFileNameform ProjectorPublishFormatProperties::rnwk0PublishFormatProperties::png02PublishHtmlProperties::UsingDefaultContentFilename1PublishRNWKProperties::speed56K1PublishQTProperties::Height140%PublishPNGProperties::RemoveGradients0PublishGifProperties::MaxColors255'PublishGifProperties::TransparentOptionPublishGifProperties::LoopCountVector::Report0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename(PublishHtmlProperties::AlternateFilename+PublishHtmlProperties::OwnAlternateFilename"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors1Vector::Version6Vector::Event Format0Vector::Stream Compress7PublishFormatProperties::qt0Vector::ActionScriptVersion10PublishFormatProperties::projectorWinDefaultName1 PublishRNWKProperties::speed512K0PublishJpegProperties::Height140PublishPNGProperties::Height140PublishPNGProperties::Width660%PublishGifProperties::RemoveGradients0PublishHtmlProperties::Scale0Vector::Event Compress7&PublishFormatProperties::qtDefaultName1"PublishRNWKProperties::mediaAuthor(PublishRNWKProperties::speedCorporateLAN0&PublishRNWKProperties::showBitrateDlog1"PublishRNWKProperties::exportFlash1PublishQTProperties::Looping0*PublishQTProperties::UseQTSoundCompression0PublishJpegProperties::Width660!PublishPNGProperties::PaletteName!PublishPNGProperties::Transparent0&PublishGifProperties::TransparentAlpha128PublishGifProperties::Animated0Vector::Stream Format0$PublishFormatProperties::gifFileNameform.gif"PublishHtmlProperties::VersionInfo"PublishQTProperties::PausedAtStart0%PublishQTProperties::ControllerOption0PublishPNGProperties::MaxColors255%PublishFormatProperties::rnwkFileName form.smil%PublishFormatProperties::projectorWin0%PublishFormatProperties::defaultNames1,PublishHtmlProperties::UsingOwnAlternateFile0 CColorDef```3P`fP0`PH`P``Px`3`33(`3f<0`3CH`3F``3Hx`f0`f30`ff(0`f5H`f<``f@x``3330``3`33x`f3d0`3]H`3Z``3Xx`33`3330`3f3PPH`33Px``33Px`33P`f30`f33PH`ff3(PH`f3<x``f3Cx`f3F``fff```f0`3f0`ffx0`fkH`fd``f`x`3f0`33fPH`3ffxPH`3fdx``3f]x`3fZ`ff0`f3fPH`fff``ffP0x`ffPx`ffP````H`3H`fH`xH`̙n``hx`3H`33x``3fx``3xx``3̙kx`3d`fH`f3x``ff0x`fx0x`f̙dx`f]``````3``f````x``px`3``33x`3fx`3x`3xx`3n`f``f3x`ffx`fx`fxx`fk````x`3x`fx`x`x`xx`3x`33`3f`3`3`3x`fx`f3`ff`f`f`fx``x``H`3 H`fH`(H`2``8x```3 ``f``̙``(``0x`x`3x`fx`x` x`(x``Px``3H`33x``f3x``3(x``35x`3<`3``33x`f3 x`̙3x`3(x`32`3x`33`f3 `3`3`3(``x``fH`3fx``ff0x`f(0x`f<x`fC`f``3fx`ffx`̙fx`f(x`f5`fx`3f`ff`f `f`f(``(x``H`3x``f0x``̙PP`P```3x`fx`̙P`̙(P`<`x`3`f``̙`(``xx````3x`fx`P`xP`d```3x`fx`̙P``P`x`3`f```(``x``x`3`f```x`x`3`f`̙``x`x`3`f``````````f`zf`*]|FScrollBar Skins.r;p5r;ڃComponent Skins2U<{.r;pڃFlash UI Components2U<{ڃ Skin Elements.r;r.r;qڃFScrollBar AssetsvC;.r;rڃ Other Assets.r;svC;ڃCore Assets - Developer Only2U<{.r;sڃFUIComponent Class Tree.r;s.r;wڃ fsb_downArrow.r;q;ڃfsb_downArrow_press.r;q;ڃfsb_downArrow_disabled.r;q;ڃ fsb_thumbTop.r;q;ڃfsb_thumbMiddle.r;q٨;ڃfsb_thumbBottom.r;q;ڃ fsb_upArrow.r;q};ڃfsb_upArrow_press.r;qM;ڃfsb_upArrow_disabled.r;q;ڃ Name SymbolsvC;Hj;ڃ Global Skins.r;p.r;oڃFPushButton AssetsvC;k;ڃfpb_over3r;;ڃFPushButton Elementsk;3r;ڃ fpb_disabled3r;ª;ڃfpb_up3r;f;ڃ fpb_press3r;;ڃ"PublishQTProperties::QTSndSettingsCQTAudioSettingsh y/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_leftOut(<4;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_rightOut(<;(< Symbol 63fsb_upArrow_disabled_leftIn?;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_leftIn(<;(< Symbol 64fsb_upArrow_disabled_rightIn@;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_rightIn(<;(< Symbol 65fsb_upArrow_disabled_faceA;;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_face(<;(< Symbol 66fsb_upArrow_disabled_arrowB;;v|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/fsb_upArrow_disabled/fsb_upArrow_disabled_arrow(<;v(< Symbol 67 FUIComponentC.r;w;;p|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaDFlash UI Components/Component Skins/FScrollBar Skins/fsb_ScrollTrack(<>;p(< Symbol 70 scrollTrackF.r;qo;t|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flajFlash UI Components/Core Assets - Developer Only/Other Assets/FScrollBar Assets/Skin Elements/ scrollTrack(<o;t(< Symbol 72 fpb_statesHk;;! fpb_states|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/fpb_states(<;!❨> Symbol 74fpb_rightOutFrame_upJf;.w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_rightOutFrame_up(<.w;(< Symbol 75fpb_leftOutFrame_upKf;!w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_leftOutFrame_up(<!w;(< Symbol 76fpb_rightInFrame_upLf;'w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_rightInFrame_up(<'w;(< Symbol 77fpb_leftInFrame_upMf;v;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_leftInFrame_up(<v;(< Symbol 78 fpb_face_upNf;w;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaxFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_face_up(<w;(< Symbol 80fpb_rightOutFrame_pressP;{;*|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_rightOutFrame_press(<{;*(< Symbol 81fpb_leftOutFrame_pressQ;${;D|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_leftOutFrame_press(<${;D(< Symbol 82fpb_rightInFrame_pressR;{; |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_rightInFrame_press(<{; (< Symbol 83fpb_leftInFrame_pressS;v;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_leftInFrame_press(<v;(< Symbol 84fpb_face_pressT;z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla~Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_press/fpb_face_press(<z;(< Symbol 86fpb_rightOutFrame_overV;Wz;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_rightOutFrame_over(<Wz;(< Symbol 87fpb_leftOutFrame_overW;Mz;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_leftOutFrame_over(<Mz;(< Symbol 88fpb_rightInFrame_overX;bz;\|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_rightInFrame_over(<bz;\(< Symbol 89fpb_leftInFrame_overY;Cz;H|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_leftInFrame_over(<Cz;H(< Symbol 90 fpb_face_overZ;.z;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla|Flash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_over/fpb_face_over(<.z;(< Symbol 92fpb_rightOutFrame_disabled\ª;_{;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_rightOutFrame_disabled(<_{;(< Symbol 93fpb_leftOutFrame_disabled]ª;{; |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_leftOutFrame_disabled(<{; (< Symbol 94fpb_rightInFrame_disabled^ª;u{;e|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_rightInFrame_disabled(<u{;e(< Symbol 95fpb_leftInFrame_disabled_ª;{;, |Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_leftInFrame_disabled(<{;, (< Symbol 96fpb_face_disabled`ª;{;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_disabled/fpb_face_disabled(<{;(< Symbol 97FLabela.r;o; FLabelSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla7Flash UI Components/Component Skins/Global Skins/FLabel(<;(<3K']@ Symbol 98 fpb_hitAreabf;hEN<_ fpb_hitArea|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaxFlash UI Components/Core Assets - Developer Only/Other Assets/FPushButton Assets/FPushButton Elements/fpb_up/fpb_hitArea(<hEN<_(< Symbol 99 FBoundingBoxc.r;o>;FBoundingBoxSymbol|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.fla=Flash UI Components/Component Skins/Global Skins/FBoundingBox(<>;(< Symbol 100 boundingBoxdvC;h;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaIFlash UI Components/Core Assets - Developer Only/Other Assets/boundingBox(<h;(< Symbol 101PushButton NameeHj;o;|Macintosh HD:Users:rhoekman:Library:Application Support:Macromedia:Flash MX:Configuration:Components:Flash UI Components.flaZFlash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/PushButton Name(<o;(<h3 hhhhh PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteName"PublishHtmlProperties::StartPaused0%PublishFormatProperties::htmlFileName form.htmlPublishProfileProperties::nameFlash MX Settings PublishQTProperties::LayerOption PublishQTProperties::AlphaOption"PublishQTProperties::MatchMovieDim1PublishHtmlProperties::Loop1Vector::Debugging Permitted0PublishFormatProperties::jpeg0%PublishHtmlProperties::showTagWarnMsg1&PublishRNWKProperties::speedSingleISDN0&PublishRNWKProperties::singleRateAudio0PublishQTProperties::Width660$PublishPNGProperties::OptimizeColors1PublishHtmlProperties::Units04PublishHtmlProperties::UsingDefaultAlternateFilename1Vector::External Player'PublishFormatProperties::gifDefaultName1%PublishRNWKProperties::mediaCopyright(c) 2000#PublishRNWKProperties::flashBitRate1200PublishGifProperties::Smooth1Vector::Compress Movie1&PublishFormatProperties::flashFileNameform.swf%PublishFormatProperties::projectorMac0Vector::Package Paths !PublishRNWKProperties::exportSMIL1 PublishRNWKProperties::speed384K0"PublishRNWKProperties::exportAudio1"PublishGifProperties::DitherOptionPublishHtmlProperties::Quality4(PublishHtmlProperties::VerticalAlignment1$PublishFormatProperties::pngFileNameform.pngPublishFormatProperties::html0Vector::FireFox0-PublishFormatProperties::generatorDefaultName1'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOption!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0(PublishFormatProperties::rnwkDefaultName1(PublishFormatProperties::jpegDefaultName1PublishQTProperties::Flatten1PublishJpegProperties::DPI4718592PublishPNGProperties::BitDepth24-bit with AlphaPublishPNGProperties::Smooth1"PublishGifProperties::DitherSolids0PublishGifProperties::Interlace0"PublishHtmlProperties::DisplayMenu1*PublishHtmlProperties::HorizontalAlignment1Vector::Quality80Vector::Protect0*PublishFormatProperties::generatorFileNameform.swtPublishFormatProperties::gif02PublishHtmlProperties::VersionDetectionIfAvailable0Vector::Template0$PublishRNWKProperties::mediaKeywords!PublishRNWKProperties::mediaTitlePublishRNWKProperties::speed28K1PublishGifProperties::Loop1PublishGifProperties::Width660#PublishFormatProperties::qtFileNameform.mov$PublishRNWKProperties::speedDualISDN0$PublishRNWKProperties::realVideoRate100000PublishJpegProperties::Quality80"PublishPNGProperties::DitherOption#PublishGifProperties::PaletteOption#PublishGifProperties::MatchMovieDim1PublishFormatProperties::flash1'PublishFormatProperties::pngDefaultName10PublishFormatProperties::projectorMacDefaultName1!PublishProfileProperties::version1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption#PublishPNGProperties::MatchMovieDim1PublishHtmlProperties::Align0-PublishFormatProperties::projectorWinFileNameform.exeVector::Package Export Frame1)PublishFormatProperties::flashDefaultName1#PublishQTProperties::PlayEveryFrame0"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0PublishHtmlProperties::Height140PublishHtmlProperties::Width660Vector::Debugging PasswordVector::Omit Trace Actions0%PublishFormatProperties::jpegFileNameform.jpg(PublishFormatProperties::htmlDefaultName1PublishJpegProperties::Size0PublishPNGProperties::Interlace0PublishGifProperties::Height140'PublishHtmlProperties::TemplateFileNameqMacintosh HD:Users:Robert:Library:Application Support:Macromedia:Flash MX 2004:en:Configuration:Html:Default.html!PublishHtmlProperties::WindowMode0Vector::TopDown0-PublishFormatProperties::projectorMacFileNameform ProjectorPublishFormatProperties::rnwk0PublishFormatProperties::png02PublishHtmlProperties::UsingDefaultContentFilename1Vector::DeviceSound0PublishRNWKProperties::speed56K1PublishQTProperties::Height140%PublishPNGProperties::RemoveGradients0PublishGifProperties::MaxColors255'PublishGifProperties::TransparentOptionPublishGifProperties::LoopCountVector::Report0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename(PublishHtmlProperties::AlternateFilename+PublishHtmlProperties::OwnAlternateFilename"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors1Vector::Version6Vector::Event Format0Vector::Stream Compress7PublishFormatProperties::qt00PublishFormatProperties::projectorWinDefaultName1 PublishRNWKProperties::speed512K0PublishJpegProperties::Height140PublishPNGProperties::Height140PublishPNGProperties::Width660%PublishGifProperties::RemoveGradients0PublishHtmlProperties::Scale0Vector::Event Compress7Vector::ActionScriptVersion1&PublishFormatProperties::qtDefaultName1"PublishRNWKProperties::mediaAuthor(PublishRNWKProperties::speedCorporateLAN0&PublishRNWKProperties::showBitrateDlog1"PublishRNWKProperties::exportFlash1PublishQTProperties::Looping0*PublishQTProperties::UseQTSoundCompression0PublishJpegProperties::Width660!PublishPNGProperties::PaletteName!PublishPNGProperties::Transparent0&PublishGifProperties::TransparentAlpha128PublishGifProperties::Animated0Vector::Stream Format0$PublishFormatProperties::gifFileNameform.gif"PublishHtmlProperties::VersionInfo"PublishQTProperties::PausedAtStart0%PublishQTProperties::ControllerOption0PublishPNGProperties::MaxColors255%PublishFormatProperties::rnwkFileName form.smil%PublishFormatProperties::projectorWin0%PublishFormatProperties::defaultNames1,PublishHtmlProperties::UsingOwnAlternateFile0PropSheet::ActiveTab7641 CColorDef```3P`fP0`PH`P``Px`3`33(`3f<0`3CH`3F``3Hx`f0`f30`ff(0`f5H`f<``f@x``3330``3`33x`f3d0`3]H`3Z``3Xx`33`3330`3f3PPH`33Px``33Px`33P`f30`f33PH`ff3(PH`f3<x``f3Cx`f3F``fff```f0`3f0`ffx0`fkH`fd``f`x`3f0`33fPH`3ffxPH`3fdx``3f]x`3fZ`ff0`f3fPH`fff``ffP0x`ffPx`ffP````H`3H`fH`xH`̙n``hx`3H`33x``3fx``3xx``3̙kx`3d`fH`f3x``ff0x`fx0x`f̙dx`f]``````3``f````x``px`3``33x`3fx`3x`3xx`3n`f``f3x`ffx`fx`fxx`fk````x`3x`fx`x`x`xx`3x`33`3f`3`3`3x`fx`f3`ff`f`f`fx``x``H`3 H`fH`(H`2``8x```3 ``f``̙``(``0x`x`3x`fx`x` x`(x``Px``3H`33x``f3x``3(x``35x`3<`3``33x`f3 x`̙3x`3(x`32`3x`33`f3 `3`3`3(``x``fH`3fx``ff0x`f(0x`f<x`fC`f``3fx`ffx`̙fx`f(x`f5`fx`3f`ff`f `f`f(``(x``H`3x``f0x``̙PP`P```3x`fx`̙P`̙(P`<`x`3`f``̙`(``xx````3x`fx`P`xP`d```3x`fx`̙P``P`x`3`f```(``x``x`3`f```x`x`3`f`̙``x`x`3`f``````````f`zf`*]|FScrollBar Skins.r;p5r;ڃComponent Skins2U<{.r;pڃFlash UI Components2U<{ڃ Skin Elements.r;r.r;qڃFScrollBar AssetsvC;.r;rڃ Other Assets.r;svC;ڃCore Assets - Developer Only2U<{.r;sڃFUIComponent Class Tree.r;s.r;wڃ fsb_downArrow.r;q;ڃfsb_downArrow_press.r;q;ڃfsb_downArrow_disabled.r;q;ڃ fsb_thumbTop.r;q;ڃfsb_thumbMiddle.r;q٨;ڃfsb_thumbBottom.r;q;ڃ fsb_upArrow.r;q};ڃfsb_upArrow_press.r;qM;ڃfsb_upArrow_disabled.r;q;ڃ Name SymbolsvC;Hj;ڃ Global Skins.r;p.r;oڃFPushButton AssetsvC;k;ڃfpb_over3r;;ڃFPushButton Elementsk;3r;ڃ fpb_disabled3r;ª;ڃfpb_up3r;f;ڃ fpb_press3r;;ڃ"PublishQTProperties::QTSndSettingsCQTAudioSettingsh