ࡱ> Root Entryp|YrRASH@-@Contents3Page 1ISymbol 1:L$ {! "U#$%&'()*+,-./012T456789:;<=>?@ABCDEFGHIJKLMNOPQRSVfWXYZ[\]^_`abcdeg hijklmnopqrstuvxyz|}~Root Entryp|YrRASHPy Contents3Page 1wISymbol 1:L$ {! "U#$%&'()*+,-./012T456789:;<=>?@ABCDEFGHIJKLMNOPQRSVfWXYZ[\]^_`abcdeg hijklmnopqrstuvxyz|}~  b  cdefghiMedia 1Symbol 54UMedia 2QSymbol 10  Symbol 11 Symbol 12 Symbol 13  Symbol 18Symbol 19 Symbol 20 Symbol 21 Symbol 22 Symbol 23| Symbol 24aSymbol 25\ Symbol 26W Symbol 27R Symbol 28M Symbol 29H  Symbol 34"&Symbol 353@Symbol 36%'DSymbol 37Z      !"#$%&'()*+,-./0123456789:;<=>?@ABCDFGHIJKMNOPRSTVWXYZ[\Symbol 2<$Symbol 3 $Symbol 4ESymbol 5     !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ajklmnopqrstuMedia 1Symbol 54UMedia 2Q  !"#$%&()*+-./0123456789:;<>?@ACDEFGHIJKLMNOPQRSUVWXZ[\]^_`abcdefghijlmnoqrstuvwxyz{|}~xoI M?qz($h 27P%e)ٍ44=7"ݢ d.??m background pressed/disabledO?n d0?^ dot_disabledOO?  d2r? ! dot_enabledOO?unselectedEnabled?press+?unselectedDisabledu?selectedDisabled3?selectedEnablede7 labelsO?ystop(); ?(kstop(); ?aDstop(); ?kstop(); ?Xstop();  actions: frameO CPicPage CPicLayer CPicFrame ~0-CPicPage CPicLayer CPicFrame CPicSprite llfuiAsset;TmA0$E? SuperclassOO /9$fLfrbStatesAsset  2 flabelAsset3K']@ ] 4,!frbHitAreaAsset?n AssetsOO H!d 3boundingBox_mc?6z Bounding BoxO) )d5J deadPreview? Name3?x9#initclip 1 function FRadioButtonClass() { this.init(); } FRadioButtonClass.prototype = new FUIComponentClass(); FRadioButtonGroupClass.prototype = new FUIComponentClass(); Object.registerClass("FRadioButtonSymbol", FRadioButtonClass); FRadioButtonClass.prototype.init = function() { if ( this.initialState == undefined ) { this.selected = false; } else { this.selected = this.initialState; } super.setSize(this._width,this._height); this.boundingBox_mc.unloadMovie(); this.boundingBox_mc._width = 0; this.boundingBox_mc._height = 0; this.attachMovie("frb_hitArea","frb_hitArea_mc",1); this.attachMovie("frb_states","frb_states_mc",2); this.attachMovie("FLabelSymbol","fLabel_mc",3); super.init(); this._xscale = 100; this._yscale = 100; this.setSize(this.width,this.height); this.setChangeHandler(this.changeHandler); if(this.label!=undefined){ this.setLabel(this.label); } if ( this.initialState == undefined ) { this.setValue(false); } else { this.setValue(this.initialState); } if ( this.data == "" ) { this.data = undefined; } else { this.setData(this.data); } this.addToRadioGroup(); // ACCESSIBILITY DEFINED :: _accImpl object defined in base class this.ROLE_SYSTEM_RADIOBUTTON = 0x2d; this.STATE_SYSTEM_SELECTED = 0x10; this.EVENT_OBJECT_STATECHANGE = 0x800a; this.EVENT_OBJECT_NAMECHANGE = 0x800c; this._accImpl.master = this; this._accImpl.stub = false; this._accImpl.get_accRole = this.get_accRole; this._accImpl.get_accName = this.get_accName; this._accImpl.get_accState = this.get_accState; this._accImpl.get_accDefaultAction = this.get_accDefaultAction; this._accImpl.accDoDefaultAction = this.accDoDefaultAction; } FRadioButtonClass.prototype.setHitArea = function(w,h) { var hit = this.frb_hitArea_mc; this.hitArea = hit; if ( this.frb_states_mc._width > w ){ hit._width = this.frb_states_mc._width; }else{ hit._width = w; } hit._visible = false; if (arguments.length > 1){ hit._height = h; } } FRadioButtonClass.prototype.txtFormat = function( pos ) { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = (sTbl.textAlign.value == undefined) ? txtS.align = pos : undefined; txtS.leftMargin = (sTbl.textLeftMargin.value == undefined) ? txtS.leftMargin = 0 : undefined; txtS.rightMargin = (sTbl.textRightMargin.value == undefined) ? txtS.rightMargin = 0 : undefined if(this.flabel_mc._height > this.height){ super.setSize(this.width,this.flabel_mc._height); }else{ super.setSize(this.width,this.height); } this.setEnabled(this.enable); } //:::::: FRadioButtonClass :::::: FRadioButtonClass.prototype.setSize = function(w,h) { this.setLabel(this.getLabel()); this.setLabelPlacement(this.labelPlacement); if(this.frb_states_mc._height < this.flabel_mc.labelField._height){ super.setSize(w,this.flabel_mc.labelField._height); } this.setHitArea(this.width,this.height); this.setLabelPlacement(this.labelPlacement); } FRadioButtonClass.prototype.setLabelPlacement = function( pos ) { this.setLabel(this.getLabel()); this.txtFormat( pos ); var halfLabelH = this.fLabel_mc._height/2; var halfFrameH = this.frb_states_mc._height/2; var vertCenter = (halfFrameH - halfLabelH ); var radioWidth = this.frb_states_mc._width; var frame = this.frb_states_mc var label = this.fLabel_mc; var w = this.width - frame._width; if (frame._width > this.width){ w = 0; } else { w = this.width - frame._width; } this.fLabel_mc.setSize(w); if (pos == "right" || pos == undefined){ this.labelPlacement = "right"; this.frb_states_mc._x = 0; this.fLabel_mc._x = radioWidth; this.txtFormat("left"); } else if (pos == "left"){ this.labelPlacement = "left"; this.fLabel_mc._x = 0; this.frb_states_mc._x = this.width - radioWidth; this.txtFormat("right"); } this.fLabel_mc._y = vertCenter ; this.frb_hitArea_mc._y = vertCenter; this.setLabel(this.getLabel()); } FRadioButtonClass.prototype.setData = function( dataValue ) { this.data = dataValue; } FRadioButtonClass.prototype.getData = function() { return this.data; } FRadioButtonClass.prototype.getState = function() { return this.selected; } FRadioButtonClass.prototype.getSize = function() { return this.width; } FRadioButtonClass.prototype.getGroupName = function() { return this.groupName; } FRadioButtonClass.prototype.setGroupName = function( groupName ) { for (var i=0; i= widestRadio){ widestRadio = this.radioInstances[i].width; } } return(widestRadio); } FRadioButtonGroupClass.prototype.setGroupName = function( groupName ) { this.oldGroupName = this.radioInstances[0].groupName; for (var i=0; i=0;i--){ var inc = (i-1); if (this._parent[this.groupName].radioInstances[inc].getEnabled()){ this._parent[this.groupName].radioInstances[inc].setTabState(true) return; } } } } // START ACCESSIBILITY FRadioButtonClass.prototype.get_accRole = function(childId) { return this.master.ROLE_SYSTEM_RADIOBUTTON; } FRadioButtonClass.prototype.get_accName = function(childId) { return this.master.getLabel(); } FRadioButtonClass.prototype.get_accState = function(childId) { if ( this.master.getState()){ return this.master.STATE_SYSTEM_SELECTED; }else{ return 0; } } FRadioButtonClass.prototype.get_accDefaultAction = function(childId) { if (this.master.getState()){ return "UnCheck"; }else{ return "Check"; } } FRadioButtonClass.prototype.accDoDefaultAction = function(childId) { this.master.setValue( !this.master.getValue() ); } // END ACCESSIBILITY #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;  Actions: ClassO 0 d?R( assetOCPicPage CPicLayer CPicFrame/000`0?f elementO     !"#$%&')*+,-./0123456789:;<=>?@ABCDEFGIJKLNOPQSTUVXYZ[]^_`bcdefghijklmnopqrstuvwxyz{}~CPicPage CPicLayer CPicFrame CPicSprite d!hO boundingBox CPicShapefffs`0`00?WN d!I boundingBox2 fff`0`00? Skin ElementsO?ovar 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();?tL component.registerSkinElement(boundingBox2,"backgroundDisabled"); stop(); READMEOO?enabledN?disabled$] labels3CPicPage CPicLayer CPicFrame000? Symbol_10J Layer 1O?, Layer 2OOCPicPage CPicLayer CPicFrameCPicText ((T"_sans( labelField? Symbol_32 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?L elementOCPicPage CPicLayer CPicFrame,0,0,0?TM elementOCPicPage CPicLayer CPicFrame,0,0,0?4 elementOCPicPage CPicLayer CPicFrame,,00,0,?% elementOCPicPage CPicLayer CPicFrame00000?;w elementOCPicPage CPicLayer CPicFrame CPicSprite 5d frame1 ggd3frame2dd KGKGdddframe3dd &&dddframe4 {{d9frame5?P skin elementsO?>Qvar 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(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame,0,0,0?+ Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?Y Layer 1OCPicPage CPicLayer CPicFrame,0,0,0? Layer 1OCPicPage CPicLayer CPicFrame,,00,0,?I Layer 1OCPicPage CPicLayer CPicFrame00000?*% Layer 1OCPicPage CPicLayer CPicFrame CPicSprite 5dframe1 ggd7frame2dd KGKGddd+Dframe3dd &&ddd@frame4 {{d_vframe5?7 skin elementsO?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(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame,0,0,0? Layer 1OCPicPage CPicLayer CPicFrame,0,0,0? Layer 1OCPicPage CPicLayer CPicFrame,0,0,0? Layer 1OCPicPage CPicLayer CPicFrame,,00,0,?Y  Layer 1OCPicPage CPicLayer CPicFrame00000?Z Layer 1OCPicPage CPicLayer CPicFrame CPicSprite 5d ]frame1 ggdLframe2dd KGKGddd~frame3dd &&ddd2gframe4 {{dframe5? skin elementsO?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(frame5, "face"); component.registerSkinElement(frame4, "shadow"); component.registerSkinElement(frame2, "darkshadow"); component.registerSkinElement(frame3, "highlight"); component.registerSkinElement(frame1, "highlight3D");  READMEOOCPicPage CPicLayer CPicFrame,0,0,0? Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?S Layer 1OCPicPage CPicLayer CPicFrame,0,0,0?k Layer 1OCPicPage CPicLayer CPicFrame,,00,0,?w Layer 1OCPicPage CPicLayer CPicFrame00000? Layer 1OCPicPage CPicLayer CPicFrame CPicSprite 5d@frame1CPicPage CPicLayer CPicFrameCPicText/ @,qAC@Tahoma"(para1 CPicSprite yu muteLabelMute offlabel> JwK3nNE. Click Handler mute_on_off clickHandler;F4U  # ggdOframe2dd KGKGddd Dframe3dd &&ddd 9Pframe4 {{d kframe5?2 skin elementsO?_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(frame5, "face"); component.registerSkinElement(frame3, "shadow"); component.registerSkinElement(frame1, "darkshadow"); component.registerSkinElement(frame4, "highlight"); component.registerSkinElement(frame2, "highlight3D");  READMEOOSymbol 6 Symbol 7 Symbol 8  Symbol 9 CPicPage CPicLayer CPicFrame CPicSprite draup_mc??3( d $down_mc?tx?-: statesOO?H` dEover_mc?W?a d disabled_mc?: statesO?imstop();?jstop(); ?Ostop();?F\stop(); actions: frameO?upjH?over0?down?disableds^ labelsOOCPicPage CPicLayer CPicFrameCPicText j,  TextField12*_sans(Flash Components Version 6.0_r24 03.07.02 ?" actionsOCPicPage CPicLayer CPicFrame CPicBitmapLL?M Livello 1CPicPage CPicLayer CPicFrame CPicSpriteu jju(?il versionOO? Symbol_36}!#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 1) ? h : hit._height; } FPushButtonClass.prototype.setSize = function(w,h) { w = (w < 6) ? 6 : w; if (arguments.length >1){ if (h < 6){ h = 6; } } super.setSize(w,h) this.setLabel(this.getLabel()); this.arrangeLabel(); this.setHitArea(w,h); this.boundingBox_mc._width = w; this.boundingBox_mc._height = h; this.drawFrame(); if(this.focused)super.myOnSetFocus(); this.initContentPos("fLabel_mc"); } FPushButtonClass.prototype.arrangeLabel = function() { var label = this.fLabel_mc; var h = this.height; var w = this.width-2; var b = 1; // frame border width this.fLabel_mc.setSize(w - (b * 4)); label._x = (b * 3);//padding value; label._y = ( h/2-label._height/2); } FPushButtonClass.prototype.getLabel = function() { return (this.fLabel_mc.labelField.text); } FPushButtonClass.prototype.setLabel = function(label) { this.fLabel_mc.setLabel(label); this.txtFormat(); this.arrangeLabel() // ACCESSIBILITY EVENT if (Accessibility.isActive()){ Accessibility.sendEvent( this, 0, this.EVENT_OBJECT_NAMECHANGE ); } } FPushButtonClass.prototype.getEnabled = function() { return(this.enabled); } FPushButtonClass.prototype.setEnabled = function(enable) { if ( enable || enable == undefined ) { this.gotoFrame(1); this.drawFrame(); this.flabel_mc.setEnabled(true); this.enabled = true; super.setEnabled(true); } else { this.gotoFrame(4); this.drawFrame(); this.flabel_mc.setEnabled(false); this.enabled = false; super.setEnabled(false); } } FPushButtonClass.prototype.txtFormat = function() { var txtS = this.textStyle; var sTbl = this.styleTable; txtS.align = (sTbl.textAlign.value == undefined) ? txtS.align = "center" : undefined; txtS.leftMargin = (sTbl.textLeftMargin.value == undefined) ? txtS.leftMargin = 1 : undefined; txtS.rightMargin = (sTbl.textRightMargin.value == undefined) ? txtS.rightMargin = 1 : undefined if(this.fLabel_mc._height > this.height){ super.setSize(this.width,this.fLabel_mc._height); }else{ super.setSize(this.width,this.height); } this.fLabel_mc.labelField.setTextFormat(this.textStyle); this.setEnabled(this.enable); } FPushButtonClass.prototype.drawFrame = function () { var b = 1; // border width of frame; var x1 = 0; var y1 = 0; var x2 = this.width; var y2 = this.height; var mc_array = ["up_mc","over_mc","down_mc","disabled_mc"]; var frame = mc_array[(this.fpbState_mc._currentframe) -1]; var mc = "frame"; for (var i =0;i<6; i++){ x1 += ((i)%2)*b; y1 += ((i)%2)*b; x2 -= ((i+1)%2)*b; y2 -= ((i+1)%2)*b; var w = Math.abs (x1 - x2)+2*b; var h = Math.abs (y1 - y2)+2*b; this.fpbState_mc[frame][mc+i]._width = w; this.fpbState_mc[frame][mc+i]._height = h; this.fpbState_mc[frame][mc+i]._x = x1-b; this.fpbState_mc[frame][mc+i]._y = y1-b; } } FPushButtonClass.prototype.setClickHandler = function(chng,obj) { this.handlerObj = (arguments.length<2) ? this._parent : obj; this.clickHandler = chng; } FPushButtonClass.prototype.executeCallBack = function() { this.handlerObj[this.clickHandler](this); } FPushButtonClass.prototype.initContentPos = function (mc) { this.incrVal = 1; // DISTANCE TEXT SHIFTS DOWN AND RIGHT ::mr:: this.initx = this[mc]._x - (this.getBtnState())*this.incrVal; this.inity = this[mc]._y - (this.getBtnState())*this.incrVal; this.togx = this.initx + this.incrVal; this.togy = this.inity + this.incrVal; } FPushButtonClass.prototype.setBtnState = function (state) { this.btnState = state; if (state) { this.fLabel_mc._x = this.togx; this.fLabel_mc._y = this.togy; }else{ this.fLabel_mc._x = this.initx; this.fLabel_mc._y = this.inity; } } FPushButtonClass.prototype.getBtnState = function () { return this.btnState; } FPushButtonClass.prototype.myOnSetFocus = function() { this.focused = true; super.myOnSetFocus() } FPushButtonClass.prototype.onPress = function () { this.pressFocus(); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); this.setBtnState(true); // ACCESSIBILITY EVENT if (Accessibility.isActive()){ Accessibility.sendEvent( this, 0, this.EVENT_OBJECT_STATECHANGE,true ); } } FPushButtonClass.prototype.onRelease = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); this.executeCallBack(); this.setBtnState(false) // ACCESSIBILITY EVENT if (Accessibility.isActive()){ Accessibility.sendEvent( this, 0, this.EVENT_OBJECT_STATECHANGE,true ); } } FPushButtonClass.prototype.onRollOver = function () { this.fpbState_mc.gotoAndStop(2); this.drawFrame(); } FPushButtonClass.prototype.onRollOut = function () { this.fpbState_mc.gotoAndStop(1); this.drawFrame(); } FPushButtonClass.prototype.onReleaseOutside = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); } FPushButtonClass.prototype.onDragOut = function () { this.setBtnState(false); this.fpbState_mc.gotoAndStop(1); this.drawFrame(); } FPushButtonClass.prototype.onDragOver = function () { this.setBtnState(true); this.fpbState_mc.gotoAndStop(3); this.drawFrame(); } FPushButtonClass.prototype.myOnKeyDown = function( ) { if (Key.getCode() == Key.SPACE && this.pressOnce == undefined ) { this.onPress(); this.pressOnce = 1; } } FPushButtonClass.prototype.myOnKeyUp = function( ) { if (Key.getCode() == Key.SPACE) { this.onRelease(); this.pressOnce = undefined; } } // START ACCESSIBILITY METHODS FPushButtonClass.prototype.get_accRole = function(childId) { return this.master.ROLE_SYSTEM_PUSHBUTTON; } FPushButtonClass.prototype.get_accName = function(childId) { return this.master.getLabel(); } FPushButtonClass.prototype.get_accState = function(childId) { if(this.pressOnce){ return this.master.STATE_SYSTEM_PRESSED; }else{ return this.master.STATE_SYSTEM_DEFAULT; } } FPushButtonClass.prototype.get_accDefaultAction = function(childId) { return "Press"; } FPushButtonClass.prototype.accDoDefaultAction = function(childId) { this.master.onPress(); this.master.onRelease(); } // END ACCESSIBILITY METHODS #endinitclip boundingBox_mc._visible = false; deadPreview._visible = false;  Actions: ClassO (loop1Labelcon looplabel> JwK3nNE. Initial Statefalse initialState;F4U Group Name radioGroup groupNameyAqEM5Data1dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X  \ #7loop2Label senza looplabel> JwK3nNE. Initial Statetrue initialState;F4U Group Name radioGroup groupNameyAqEM5Data0dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X -! -!d6:Jaudio?- // inizializzazioni di alcune variabili... curr_brano = ""; Snd = null; // posiziona il filmato con l'icona dell'altoparlante sul primo fotogramma audio.stop(); loop = false; // controlla continuamente se il brano da eseguire non // cambiato; se lo fosse esegue di nuovo tutta la procedura // per eseguire il play del nuovo brano setInterval(suona_brano,1000); // procedura per l'esecuzione di un nuovo brano... function suona_brano() { if ((brano != curr_brano) && (brano != '')) { Snd = new Sound() // carica il brano da un file esterno... Snd.loadSound(brano); // memorizza il nome del brano corrente... curr_brano = brano; // setta un opportuno volume di riproduzione... Snd.setVolume(volume); // fissa una funzione da chiamare in caso di // esecuzione ripetuta (loop) Snd.onSoundComplete = ripeti; // lancia l'esecuzione del brano... Snd.start(); // segnala il nome del brano in esecuzione para1.text = solo_nome(brano); } } // questa funzione viene eseguita quando // il brano musicale arriva alla fine... function ripeti() { // se e' prevista la ripetizione del brano musicale // qui viene comandata una nuova esecuzione dello stesso... if (loop) Snd.start(); } // gestisce un evento abbinato al pulsante (componente) di "mute" // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function mute_on_off() { // se il "mute" (volume a 0) non e' attCPicPage CPicLayer CPicFrameCPicText/ @,qAC@Tahoma"(para1 CPicSprite yu muteLabelMute offlabel> JwK3nNE. Click Handler mute_on_off clickHandler;F4U  #(loop1Labelcon looplabel> JwK3nNE. Initial Statefalse initialState;F4U Group Name radioGroup groupNameyAqEM5Data1dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X  \ #7loopSymbol 148  Symbol 15 Symbol 16 Symbol 17 Symbol 30((Symbol 31 Symbol 32!#Symbol 33 Symbol 5026Symbol 51@Symbol 5257 ,Symbol 539Symbol 46,4BLSymbol 47=@Symbol 4813,(Symbol 49'@Symbol 42*.pBSymbol 43k@Symbol 44-/YJSymbol 45T@Ox ! M4ǝDhRhqUGB=TZVT{ETX3J؝ZIFUgs@xv.fyj{Ab˶(q'~;Z_c^7>luen Bqjvolume50)ãI1CPicPage CPicLayer CPicFrame CPicBitmapff?)ivo... if (mute.getLabel() == 'Mute off') { // cambia etichetta al pulsante mute.setLabel('Mute on'); audio.gotoAndStop(2); // setta il volume a 0 (nessun suono udibile) Snd.setVolume(0); } else // se invece il "mute" e' attivo ..... { // (vedi sopra) mute.setLabel('Mute off'); audio.gotoAndStop(1); Snd.setVolume(volume); } } // funzione associata all'evento di selezione sui radio button // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function loop_on_off() { // se e' selezionato il radio button con valore 0 (suono con loop) if (radioGroup.getValue() == 0) // setta opportunamente questa variabile booleana... loop = false; else // altrimenti... loop = true; // effettua un settaggio opposto... } // seleziona solo il nome del file dal percorso.... function solo_nome(pth) { trace(pth); trace(pth.lastIndexOf('/') + 1); return(pth.substring(pth.lastIndexOf('/') + 1, pth.length)); }  Livello 1O 1Osecuzione ripetuta (loop) Snd.onSoundComplete = ripeti; // lancia l'esecuzione del brano... Snd.start(); // segnala il nome del brano in esecuzione para1.text = solo_nome(_root.brano); } } // questa funzione viene eseguita quando // il brano musicale arriva alla fine... function ripeti() { // se e' prevista la ripetizione del brano musicale // qui viene comandata una nuova e) CDocumentPagePage 1Scena 15F~>F Symbol 54audio6q>F{ Simbolo 54{>FSymbol 1 Simbolo 1_5F Simbolo 15Fbrano defaultValuen Bqjvolume defaultValue)ãI1ꆝ1Symbol 2 PushButton2U<{r;FPushButtonSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaFlash UI Components/ PushButton(<r;(<UI Components/FPushButtonLabel Push Buttonlabel> JwK3nNE. Click Handler clickHandler;F4Ubutton_live.swfNCWSKIx;[lGr|Β˧DJE=-YR,Oɥ$lfwwwֻi['gB! "D 8A.9$Gd 1b G0#aggg ;tuuuUuuUu B_Um?=;T7lNaj!&fƌl9pϐ|{֎̋{ym;z߯ M/T̛Vx@׻!O>^ ?uZJ2(T>@0h U,zk l;k%,5X^+ﲖrAOJMMd,Wq0NVX!}l%ZI8`J VSfR[꫸xfa*uzBOPiӨ|zm8}>w!訆}pcpm`-,܃}GvYJ]0 {?[] ΃~bP6v7V6Pv}-f,+EY4U6fѲYU6v_ 5ί,N{̢,Ny͢YU2JfYll[Ŏfww._f,vT2bWelOT0 kJyX*Lܯ  e0≯$T\3 Uwb]2zE-ѓҐ4$9M0ka8s7[cES3" 5p7 ƊZs >;ۻ}P 9|̔zwvb2;80Q=#c{9ޞř3,w;3pNnɞJY(N1lSfL뙤 &gN@ͳ`nbMUOG?k۰Pά}'YѽLL'[I#]=ǖC{&C{aH!sCIV_o]'>`N׻wnXh|:m6[azβ \;C%%VSK8>ӹԨ\,ǰK@uڏ4-OɄAj_^&5nuÌ4$S._?Ή10X6h1CGxSXuՠqZv:b< ώM}M2_*LȹwK;~t5N`G.5?@ }@Z% ~`],*a<\JU_@ xx:^ S?i6 F{ _w®샖6Has?% }Qh"4f?ţexM:JN?ǘE,ZJg+:Is9*ӯl-8s=Of,fZ29vPAͱ,+&>g$u3e8į sn4.jW~F['A_#kyg8^E GeA0<(D)4EVĔ:k}nou0J+oo``RGsYLc},ܯ%1IRiѬKd҉i-2n`+6ڝK,q-#XF+.Dh٨fr[a+F脑3 Fɛ6*E iy`ct UY0gzr+b3)_E^Rbb h^MDONdfcF(fr p!0txM4)u  R0I<7W#kU5 pvHC{Up6yI$s; K DxrrPhAi8f=7p-Di7u#g: :$)8 %`cs;1!P:S[Kyb AKy" M~_Z tԿ?acUo=JbDjb(;wYKk-ƹU9׽dB³C /ZQV%B;SsO:6]|jם%/`=XPlf).oBA[$J)‹Y;B[5$d#ә rul#/# \ѱ @ۏit& 'Qˉ| hͬnIŪns!y~#>GC.xХ\$=1 F^/ Es)H&3Z HE)gօW2RD^r)݊+ Ü )KBJT$!ZniU oV:)Cu<&8d]L'ys$鴦lQ'_ЋEN:ikVEh^U}MO,cZ&3 V ZI1Ǡy3 *+39 Ml 9-T^,$} X+FAO΍U5̮Gq! ;y$Ki,#Ǚ1-D pY60;ͅQ+x[З!!qv"% ஊ#Ģgɦh,1!$ry|Cot;h+DjƎuk)98ɡj' V ;8pQiΤuscCmrp :ȏgh JX< }c&ȶSnuv1Cwgӵ.|B:SQZإnzwZ{\=NPGQVri1j1sʆB=V"Wg3 r~X#/A q? -7O,08"@ur:. *Llx Qy<,~.Npͦ:$o~WZEḙ6T8l$yػUxmm穜dAA)ZB2OLsЃv* $3Ygs.sƀ7.d$P:4rP>aU}DY<1A3k њ$m3\'$̖p[S?9qΫ)mśsF;v0@-DQA8O^ࠅ}N8e8<Eʨ髎x$8KZB洛[+lM@OH룱%ѯ$sU-w{ЕUr2Kތ;6_OugNKSdz|/|!"1(gK]|2}8v꼿L|jW~b+6M:x==_-:Aԫa;yeOn|ќdC\Q94T=ϼ5s"g<w?quK9*Й#r^.w|$g)gdK^n!["J|.sJ:H9i!8 ; x7kW Ga/ћazVšΘC㭪Gɶ\ǖrCvmM낿wnqɥ߷dv:P }amߧ}Nk>CMtSN-"IVE G|e) L#yz[ oVHo[ K&wsї΂rosK|?ml"ٷ`nhlzB=/Y9܏\\w bm+83|辸ֶvM7w*:?ٰX0+\wn%hKiDžT4ܼVӬz2s@זU| mXc p[&<ڤ-,=-;.[/㊛9N]kt[l:)(d!2;[|q1:1_Z]F#*[D88Fc cQ&Ȝ+iY Jn"|;q}Y+eQB7#fɮ`]֎VV(<5xAkE< 5oY ?= ]I$"pΤu t8VWN b)0`UƲcQ*\wс#c5 l΁N҄14 h$RׂʈSpYc}ll"(}l?ReD4j84X-^\r˥(R'Ԧtq6e{y#eKa 2q,C(מz"y9Cls"##T*e V.N$6g|nN 7@lBBhE(Pg Pc 2{ârEkB~NN$-`׌I])O}[ ܛhV C9tm僭SYopG1Gmͱx KqcvB{Wܴj2$(GQ<::xdtf9Hxl>eOL d3y2Á|gyY߀ZjYAd.l_ٟ ,<*|>`]to>9=%L*u]!l;.N]114-lJIpԏJG}h.IMPEU޼$\V^T^R̍u\;5_O#щ)ٮ_q#*ѰӉ"/5%eiE*ke$ܥC<.8v!{Eq~&K.S+tg\M-0)F>BpN@ 뛳_x oGه3R-NPN.,B?T}ҤԖ:ml(޲ZNC;-hH5zb.8sFi{/9*UeJ jGv:y.Acq#>zbQ#]D+˯TFlash UI Components/Component Skins/FPushButton Skins/fpb_down(<c;;(< Symbol 13fpb_rightOutFrame_press ;{;*~C:\Documents and Settings\Administrator\Dati applicazioni\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 14fpb_leftOutFrame_press;${;D~C:\Documents and Settings\Administrator\Dati applicazioni\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 15fpb_rightInFrame_press;{; ~C:\Documents and Settings\Administrator\Dati applicazioni\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 16fpb_leftInFrame_press;v;~C:\Documents and Settings\Administrator\Dati applicazioni\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 17fpb_face_press;z;~C:\Documents and Settings\Administrator\Dati applicazioni\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 18fpb_over3r;g;;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla>Flash UI Components/Component Skins/FPushButton Skins/fpb_over(<g;;(< Symbol 19fpb_rightOutFrame_over;Wz;~C:\Documents and Settings\Administrator\Dati applicazioni\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 20fpb_leftOutFrame_over;Mz;~C:\Documents and Settings\Administrator\Dati applicazioni\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 21fpb_rightInFrame_over;bz;\~C:\Documents and Settings\Administrator\Dati applicazioni\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 22fpb_leftInFrame_over;Cz;H~C:\Documents and Settings\Administrator\Dati applicazioni\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 23 fpb_face_over;.z;~C:\Documents and Settings\Administrator\Dati applicazioni\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 24 fpb_disabled3r;];;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaBFlash UI Components/Component Skins/FPushButton Skins/fpb_disabled(<];;(< Symbol 25fpb_rightOutFrame_disabledª;_{;~C:\Documents and Settings\Administrator\Dati applicazioni\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 26fpb_leftOutFrame_disabledª;{; ~C:\Documents and Settings\Administrator\Dati applicazioni\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 27fpb_rightInFrame_disabledª;u{;e~C:\Documents and Settings\Administrator\Dati applicazioni\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 28fpb_leftInFrame_disabledª;{;, ~C:\Documents and Settings\Administrator\Dati applicazioni\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 29fpb_face_disabledª;{;~C:\Documents and Settings\Administrator\Dati applicazioni\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 30FLabel.r;o; FLabelSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla7Flash UI Components/Component Skins/Global Skins/FLabel(<;(<3K']@ Symbol 31 fpb_hitAreaf;hEN<_ fpb_hitArea~C:\Documents and Settings\Administrator\Dati applicazioni\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 32 FBoundingBox .r;o>;FBoundingBoxSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla=Flash UI Components/Component Skins/Global Skins/FBoundingBox(<>;(< Symbol 33 boundingBox!vC;h;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaIFlash UI Components/Core Assets - Developer Only/Other Assets/boundingBox(<h;(< Symbol 34PushButton Name"Hj;o;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaZFlash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/PushButton Name(<o;(< Symbol 35 RadioButton#2U<{;FRadioButtonSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla Flash UI Components/ RadioButton(<;(<UI Components/FRadioButtonLabel Radio Buttonlabel> JwK3nNE. Initial Statefalse initialState;F4U Group Name radioGroup groupNameyAqEM5Datadataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler changeHandlerQ`' K"5Xradio_live.swfCWST_x: tTյgw&IB IX$!IB& $L)&737! *8AKbDR<1Yk>=W?O]ys3uٵ{>g}ΝNTCP~bbCP `bȞ[/T-Ϧ|Lj&v@^Y~eLԣHWGOPp,@Dhfmu.N#S Pa.,P+B+`ЈukQ{L+]>Vs3/5y즃Mtv`ͥj}X09a k*)hrhͰJZܻʂ5<ƻ6EzׇlWDT^1rO0?AyӀKWЈft=23LjYDd: $#dؒS)'9 ߏ9n{S#)3yhgcqR.6 c1p h^/|4en׌2k} c;yNdd4ɒ߃6X2-YB$Z"@دz̢lu*U\:J¥jD}7fJ%QAED݂EmQ+DL.2=;)S}%s >ݍ96 TW}o=7ݠ ){=R(TIIGFDuIEA&~XSQ'tqKf %*K[@kqiCۨpjW㢸3$qKCK尸˓aA~a 2|3|$Khg =\6Q._>eΦ$RId@8+ <#\4SS`/.p5F%CM0PqZ4j$!Zdjc&(*Et eQPҏ>ܓ@"  Tjl7ֺef鮪-'tm $YZ_˯pc 0I95YUN-NڋZ..r!(X&lr7JVBdSgS8Dߕ}vtp씜yTúvą%us=YË/ߙ~׹;$MXooe DU+p mW/W)n.ծkbΚ׫ ,v9\Y[ ZdZ_ hdr@LL9e UH]BؗO} !l0Ʃ7Т~ (D';u{KOY&,'O.FL罊^y{yЪkZ4kyʦͧL*comƒ ͻ?G>|c?:cZ=_+L+s4}xVymo탞6?+Ex_JdrOg-k:1|h{i?w=/vo83_=g '?/.nKM|[8 韃O>_ݏgox}Jǎ ZBWu=)Ͽ8y~>Cw}EO65a]_K'#u^x/ekO_}۲NP ]3Tr>dGwWh4|5?:ݐ~v,nŚSзm[W9~O-]/3ZtY-Ω ܽdΣNC&Ӛw:,uNoehfjsfr8f=Vզؾ`uY<ݏ9R57M]ݽgK]> _/7{nK!eV;~\YdnӏȘzhigՙ#sclx_.}Ϲ`3H3"K| sՁJsvhOۋwٷ`Ad;Z>uН˕}o-04WLR]`U4NOEH-D.;Im$yŀL':ӞC"WuQ6Ok$S\"MXHϴK.;3@mjcr2z@D Ta =^|+shE#}}nSq sDHBpP!/ ]ˆ8b}4,J 3TyQdž&ϡ0߆Q6CIp+Ŭ{#IO *ޱ:m4 p'l#4yF)Q I4feDcq$ACLM=?MMԟ3{dGm\ H_6䌚5^t H:?k'.A&;l[2]8 ,w^Wφ!p8#ŀ 1wy A0Mc@bCbUbzQ |&oG=|TI\||X!̋ IѼ jaքڲNhn|i 0uq~7,]iz=VղQ=QWiwmO[J_Ç^".WA#bpK@Ҩ܊z{H4رmب%0X(Lgj4v@5YCZ,ڰ,.b\a#tͤ 8`S($68Plf0e`GWE-!Y{%N娤И`wlBj eB=1H4{FL୓ŖAޔW.3ӑ81'!ᭌ؁_S uRC#$6B@ӗ`(D{an?9C]etq+D%.U !Rw(84P&78S]r2χpa*N ⫩ 0l$0_p8xTEeŨDzRZC[8up$A!zZ Qt$[ Գ^uY_+NĀOﳘejO!n$!YJZqMhU fP"wtAh?%_ mAelKI,A}xA/ %^\I3܀F#&L?m&D)s[ۘȡ +>"(Ts`dX}gt:ٶY\`EdYY`nR{lnwv2FQ{6&^uͤ$Bbv0;M:|f\[;/fY,䪣d2;=$=a)hXPh{iZ#,:i:9wE"r\QɒCODãmGA%T#:`E i/Vq9)0"d?N`CvKt&]?A{P$pHD7qQ{s}[V56҇yПkP)с~."-@8ij~r]#Ȓףџ{JX?wh |aF~N:S2U$w-OY ~oU~XѶ[Zm6oWhmo1ǶUHХo7{p7d{u}{n\. eYϋ`* s^aJLLe$yb< $VfŨfr8_>JщYX4 0/aM"6B|RƤ+*IbiAvBlɪEY 徂 r;*E%f $ EeZ ɴE ?0%Z] qB|1(E̘cE##U3{Z(޹ɣ ͗YsitB"d-JwNaqX ObKr,HHc'q@kcR!;W.'eE(_K<8Z_8WґYpKH>BJeX39Hq`Ӡ7AЖ n#͵+oC&Q/NרBqTxe^Y _A+֘K712St 8 '*iݨ38Z*cӁ_3 u͈0Y?#J`[uwjP)Jq% {/,W ǚ&|#22SD1S 3yMxomVϚ(3T6TFu&^x惺VRF c~}`&Vj_\=׵si&W4BSE wwRY1}r-䫐(BQkQb^9t#OoJZ8)^*75}஁?jЉv%=JW[Wq)-GҏF~+ZesL)RN͚oerQ)cxoF,6p,]9}&ށ}̽gmM{S5ѱ+V!g`xW͌ϛ*JUdPh?w0\͆rTJڢ|谨?B ǡIZhORB_sJ\0Z>( )igБ}9͢"_cks%A;qjʸRR*T2JFʑhs(&X{-kI^S8@cc.כH0_hc_k#n˼ػÎXK<$ͫW#W#f! $TIf2L@a×[l5>=^[-Hn89ŃOoa0D,dHsG r Radio Button Symbol 36 frb_states$.r;v; frb_states~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla\Flash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/frb_states(<;(< Symbol 37 frb_frame%.r;ti{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaAFlash UI Components/Component Skins/FRadioButton Skins/ frb_frame(<i{;(< Symbol 38 frb_leftOut&.r;u;=~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_leftOut(<;=(< Symbol 39 frb_leftIn'.r;u;?~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flajFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_leftIn(<;?(< Symbol 40 frb_rightIn(.r;u;A~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_rightIn(<;A(< Symbol 41 frb_rightOut).r;u;C~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flalFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_rightOut(<;C(< Symbol 42frb_background*.r;t#;(~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaEFlash UI Components/Component Skins/FRadioButton Skins/frb_background(<#;((< Symbol 43frb_background+.r;u;~;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flanFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background(<;~;(< Symbol 44frb_background_pressed,.r;t;I~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaMFlash UI Components/Component Skins/FRadioButton Skins/frb_background_pressed(<;I(< Symbol 45frb_background_pressed-.r;u ;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flavFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background_pressed(< ;(< Symbol 46frb_background_disabled..r;t;&~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaNFlash UI Components/Component Skins/FRadioButton Skins/frb_background_disabled(<;&(< Symbol 47frb_background_disabled/.r;u ;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flawFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background_disabled(< ;(< Symbol 48 frb_dot_disabled0.r;tf{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaHFlash UI Components/Component Skins/FRadioButton Skins/ frb_dot_disabled(<f{;(< Symbol 49frb_dot_disabled1.r;u;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flapFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_dot_disabled(<;(< Symbol 50 frb_dot2.r;ta{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla?Flash UI Components/Component Skins/FRadioButton Skins/ frb_dot(<a{;(< Symbol 51frb_dot3.r;u8;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flagFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_dot(<8;(< Symbol 52 frb_hitArea4.r;uO;y frb_hitArea~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_hitArea(<O;y(< Symbol 53RadioButton Name5Hj;-v;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/RadioButton Name(<-v;(<7 CMediaBitsMedia 2 audio_off.gif!C:\work\Flash\audio\audio_off.gif4F>F29Media 1 audio_on.gif.\audio_on.gif4F5F2 hhhhh PropSheet::ActiveTab1620 CColorDef<<<3P<fPDD? Livello 1Oabili... curr_brano = ""; Snd = nulCPicPage CPicLayer CPicFrameCPicText/ qC@Tahoma"(para1 CPicSprite yu muteLabelMute offlabel> JwK3nNE. Click Handler mute_on_off clickHandler;F4U  #(loop1Labelcon looplabel> JwK3nNE. Initial Statefalse initialState;F4U Group Name radioGroup groupNam0<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`eyAqEM5Data1dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X  \ #7loop2Label senza looplabel> JwK3nNE. Initial Statetrue initialState;F4U Group Name radioGroup groupNameyAqEM5<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<<<<Symbol 38$0Symbol 39Symbol 40)+Symbol 41x<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<3Data0dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X?-a // inizializzazioni di alcune variabili... curr_brano = ""; Snd = null; // posiziona il filmato con l'icona dell'altoparlante sul primo fotogramma audio.stop(); loop = false; // controlla continuamente se il brano da eseguire non // cambiato; se lo fosse esegue di nuovo tutta la procedura // per eseguire il play del nuovo brano setInterval(suona_brano,1000); // procedura per l'esecuzione di un nuovo brano... function suona_brano() { if ((_root.brano != curr_brano) && (_root.brano != '')) { Snd = new Sound() // carica il brano da un file esterno... Snd.loadSound(_root.brano); // memorizza il nome del brano corrente... curr_brano = _root.brano; // setta un opportuno volume di riproduzione... Snd.setVolume(_root.volume); // fissa una funzione da chiamare in caso di // esecuzione ripetuta (loop) Snd.onSoundComplete = ripeti; // lancia l'esecuzione del brano... Snd.start(); // segnala il nome del brano in esecuzione para1.text = solo_nome(_root.brano); } } // questa funzione viene eseguita quando // il brano musicale arriva alla fine... function ripeti() { // se e' prevista la ripetizione del brano musicale // qui viene comandata una nuova esecuzione dello stesso... if (loop) Snd.start(); } // gestisce un evento abbinato al pulsante (componente) di "mute" // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function mute_on_off() { // se il "mute" (volume a 0) non e' attivo... if (mute.getLabel() == 'Mute off') { // cambia etichetta al pulsante mute.setLabel('Mute on'); audio.gotoAndStop(2); // setta il volume a 0 (nessun suono udibile) Snd.setVolume(0); } else // se invece il "mute" e' attivo ..... { // (vedi sopra) mute.setLabel('Mute off'); audio.gotoAndStop(1); Snd.setVolume(_root.volume); } } // funzione associata all'evento di selezione sui radio button // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function loop_on_off() { // se e' selezionato il radio button con valore 0 (suono con loop) if (radioGroup.getValue() == 0) // setta opportunamente questa variabile booleana... loop = false; else // altrimenti... loop = true; // effettua un settaggio opposto... } // seleziona function solo_nome(pth) { return(pth.substring(pth.lastIndexOf('\\') + 1,pth.length)); }  Livello 1OOK@uڏ4-OɄAj_^&5nuÌ4$S._?Ή10X6h1CGxSXuՠqZv:b< ώM}M2_*LȹwK;~t5N`G.5?@ }@Z% ~`],*a<\JU_@ xx:^ S?i6 F{ _w2Label senza looplabel> JwK3nNE. Initial Statetrue initialState;F4U Group Name radioGroup groupNameyAqEM5Data0dataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler loop_on_off changeHandlerQ`' K"5X -! -!d6:Jaudio?- // inizializzazioni di alcune variabili... curr_brano = ""; Snd = null; // posiziona il filmato con l'icona dell'altoparlante sul primo fotogramma audio.stop(); loop = false; // controlla continuamente se il brano da eseguire non // cambiato; se lo fosse esegue di nuovo tutta la procedura // per eseguire il play del nuovo brano setInterval(suona_brano,1000); // procedura per l'esecuzione di un nuovo brano... function suona_brano() { if ((brano != curr_brano) && (brano != '')) { Snd = new Sound() // carica il brano da un file esterno... Snd.loadSound(brano); // memorizza il nome del brano corrente... curr_brano = brano; // setta un opportuno volume di riproduzione... Snd.setVolume(volume); // fissa una funzione da chiamare in caso di // esecuzione ripetuta (loop) Snd.onSoundComplete = ripeti; // lancia l'esecuzione del brano... Snd.start(); // segnala il nome del brano in esecuzione para1.text = solo_nome(brano); } } // questa funzione viene eseguita quando // il brano musicale arriva alla fine... function ripeti() { // se e' prevista la ripetizione del brano musicale // qui viene comandata una nuova esecuzione dello stesso... if (loop) Snd.start(); } // gestisce un evento abbinato al pulsante (componente) di "mute" // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function mute_on_off() { // se il "mute" (volume a 0) non e' attivo... if (mute.getLabel() == 'Mute off') { // cambia etichetta al pulsante mute.setLabel('Mute on'); audio.gotoAndStop(2); // setta il volume a 0 (nessun suono udibile) Snd.setVolume(0); } else // se invece il "mute" e' attivo ..... { // (vedi sopra) mute.setLabel('Mute off'); audio.gotoAndStop(1); Snd.setVolume(volume); } } // funzione associata all'evento di selezione sui radio button // (L'evento associato al componente e' indicato nei parametri // del componente stesso) function loop_on_off() { // se e' selezionato il radio button con valore 0 (suono con loop) if (radioGroup.getValue() == 0) // setta opportunamente questa variabile booleana... loop = false; else // altrimenti... loop = true; // effettua un settaggio opposto... } // seleziona solo il nome del file dal percorso.... function solo_nome(pth) { trace(pth); trace(pth.lastIndexOf('/') + 1); return(pth.substring(pth.lastIndexOf('/') + 1, pth.length)); }  Livello 1O1O8 %`cs;1!P:S[Kyb AKy" M~_Z tԿ?acUo=JbDjb(;wYKk-ƹU9׽dB³C /ZQV%B;SsO:6]|jם%/`=XPlf).oBA[$J)‹Y;B[5$d#ә rul#/# \ѱ @ۏit& 'Qˉ| hͬnIŪns!y~#>GC.xХ\$=1 F^/ Es)H&3Z HE)gօW2R) CDocumentPagePage 1Scena 15F;>F Symbol 54audio6q>F{ Simbolo 54{>FSymbol 1 Simbolo 1_5F Simbolo 15Fbrano defaultValuen Bqjvolume defaultValue)ãI1ꆝ1Symbol 2 PushButton2U<{r;FPushButtonSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaFlash UI Components/ PushButton(<r;(<UI Components/FPushButtonLabel Push Buttonlabel> JwK3nNE. Click Handler clickHandler;F4Ubutton_live.swfNCWSKIx;[lGr|Β˧DJE=-YR,Oɥ$lfwwwֻi['gB! "D 8A.9$Gd 1b G0#aggg ;tuuuUuuUu B_Um?=;T7lNaj!&fƌl9pϐ|{֎̋{ym;z߯ M/T̛Vx@׻!O>^ ?uZJ2(T>@0h U,zk l;k%,5X^+ﲖrAOJMMd,Wq0NVX!}l%ZI8`J VSfR[꫸xfa*uzBOPiӨ|zm8}>w!訆}pcpm`-,܃}GvYJ]0 {?[] ΃~bP6v7V6Pv}-f,+EY4U6fѲYU6v_ 5ί,N{̢,Ny͢YU2JfYll[Ŏfww._f,vT2bWelOT0 kJyX*Lܯ  e0≯$T\3 Uwb]2zE-ѓҐ4$9M0ka8s7[cES3" 5p7 ƊZs >;ۻ}P 9|̔zwvb2;80Q=#c{9ޞř3,w;3pNnɞJY(N1lSfL뙤 &gN@ͳ`nbMUOG?k۰Pά}'YѽLL'[I#]=ǖC{&C{aH!sCIV_o]'>`N׻wnXh|:m6[azβ \;C%%VSK8>ӹԨ\,ǰK@uڏ4-OɄAj_^&5nuÌ4$S._?Ή10X6h1CGxSXuՠqZv:b< ώM}M2_*LȹwK;~t5N`G.5?@ }@Z% ~`],*a<\JU_@ xx:^ S?i6 F{ _w®샖6Has?% }Qh"4f?ţexM:JN?ǘE,ZJg+:Is9*ӯl-8s=Of,fZ29vPAͱ,+&>g$u3e8į sn4.jW~F['A_#kyg8^E GeA0<(D)4EVĔ:k}nou0J+oo``RGsYLc},ܯ%1IRiѬKd҉i-2n`+6ڝK,q-#XF+.Dh٨fr[a+F脑3 Fɛ6*E iy`ct UY0gzr+b3)_E^Rbb h^MDONdfcF(fr p!0txM4)u  R0I<7W#kU5 pvHC{Up6yI$s; K DxrrPhAi8f=7p-Di7u#g: :$)8 %`cs;1!P:S[Kyb AKy" M~_Z tԿ?acUo=JbDjb(;wYKk-ƹU9׽dB³C /ZQV%B;SsO:6]|jם%/`=XPlf).oBA[$J)‹Y;B[5$d#ә rul#/# \ѱ @ۏit& 'Qˉ| hͬnIŪns!y~#>GC.xХ\$=1 F^/ Es)H&3Z HE)gօW2RD^r)݊+ Ü )KBJT$!ZniU oV:)Cu<&8d]L'ys$鴦lQ'_ЋEN:ikVEh^U}MO,cZ&3 V ZI1Ǡy3 *+39 Ml 9-T^,$} X+FAO΍U5̮Gq! ;y$Ki,#Ǚ1-D pY60;ͅQ+x[З!!qv"% ஊ#Ģgɦh,1!$ry|Cot;h+DjƎuk)98ɡj' V ;8pQiΤuscCmrp :ȏgh JX< }c&ȶSnuv1Cwgӵ.|B:SQZإnzwZ{\=NPGQVri1j1sʆB=V"Wg3 r~X#/A q? -7O,08"@ur:. *Llx Qy<,~.Npͦ:$o~WZEḙ6T8l$yػUxmm穜dAA)ZB2OLsЃv* $3Ygs.sƀ7.d$P:4rP>aU}DY<1A3k њ$m3\'$̖p[S?9qΫ)mśsF;v0@-DQA8O^ࠅ}N8e8<Eʨ髎x$8KZB洛[+lM@OH룱%ѯ$sU-w{ЕUr2Kތ;6_OugNKSdz|/|!"1(gK]|2}8v꼿L|jW~b+6M:x==_-:Aԫa;yeOn|ќdC\Q94T=ϼ5s"g<w?quK9*Й#r^.w|$g)gdK^n!["J|.sJ:H9i!8 ; x7kW Ga/ћazVšΘC㭪Gɶ\ǖrCvmM낿wnqɥ߷dv:P }amߧ}Nk>CMtSN-"IVE G|e) L#yz[ oVHo[ K&wsї΂rosK|?ml"ٷ`nhlzB=/Y9܏\\w bm+83|辸ֶvM7w*:?ٰX0+\wn%hKiDžT4ܼVӬz2s@זU| mXc p[&<ڤ-,=-;.[/㊛9N]kt[l:)(d!2;[|q1:1_Z]F#*[D88Fc cQ&Ȝ+iY Jn"|;q}Y+eQB7#fɮ`]֎VV(<5xAkE< 5oY ?= ]I$"pΤu t8VWN b)0`UƲcQ*\wс#c5 l΁N҄14 h$RׂʈSpYc}ll"(}l?ReD4j84X-^\r˥(R'Ԧtq6e{y#eKa 2q,C(מz"y9Cls"##T*e V.N$6g|nN 7@lBBhE(Pg Pc 2{ârEkB~NN$-`׌I])O}[ ܛhV C9tm僭SYopG1Gmͱx KqcvB{Wܴj2$(GQ<::xdtf9Hxl>eOL d3y2Á|gyY߀ZjYAd.l_ٟ ,<*|>`]to>9=%L*u]!l;.N]114-lJIpԏJG}h.IMPEU޼$\V^T^R̍u\;5_O#щ)ٮ_q#*ѰӉ"/5%eiE*ke$ܥC<.8v!{Eq~&K.S+tg\M-0)F>BpN@ 뛳_x oGه3R-NPN.,B?T}ҤԖ:ml(޲ZNC;-hH5zb.8sFi{/9*UeJ jGv:y.Acq#>zbQ#]D+˯TFlash UI Components/Component Skins/FPushButton Skins/fpb_down(<c;;(< Symbol 13fpb_rightOutFrame_press ;{;*~C:\Documents and Settings\Administrator\Dati applicazioni\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 14fpb_leftOutFrame_press;${;D~C:\Documents and Settings\Administrator\Dati applicazioni\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 15fpb_rightInFrame_press;{; ~C:\Documents and Settings\Administrator\Dati applicazioni\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 16fpb_leftInFrame_press;v;~C:\Documents and Settings\Administrator\Dati applicazioni\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 17fpb_face_press;z;~C:\Documents and Settings\Administrator\Dati applicazioni\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 18fpb_over3r;g;;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla>Flash UI Components/Component Skins/FPushButton Skins/fpb_over(<g;;(< Symbol 19fpb_rightOutFrame_over;Wz;~C:\Documents and Settings\Administrator\Dati applicazioni\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 20fpb_leftOutFrame_over;Mz;~C:\Documents and Settings\Administrator\Dati applicazioni\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 21fpb_rightInFrame_over;bz;\~C:\Documents and Settings\Administrator\Dati applicazioni\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 22fpb_leftInFrame_over;Cz;H~C:\Documents and Settings\Administrator\Dati applicazioni\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 23 fpb_face_over;.z;~C:\Documents and Settings\Administrator\Dati applicazioni\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 24 fpb_disabled3r;];;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaBFlash UI Components/Component Skins/FPushButton Skins/fpb_disabled(<];;(< Symbol 25fpb_rightOutFrame_disabledª;_{;~C:\Documents and Settings\Administrator\Dati applicazioni\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 26fpb_leftOutFrame_disabledª;{; ~C:\Documents and Settings\Administrator\Dati applicazioni\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 27fpb_rightInFrame_disabledª;u{;e~C:\Documents and Settings\Administrator\Dati applicazioni\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 28fpb_leftInFrame_disabledª;{;, ~C:\Documents and Settings\Administrator\Dati applicazioni\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 29fpb_face_disabledª;{;~C:\Documents and Settings\Administrator\Dati applicazioni\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 30FLabel.r;o; FLabelSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla7Flash UI Components/Component Skins/Global Skins/FLabel(<;(<3K']@ Symbol 31 fpb_hitAreaf;hEN<_ fpb_hitArea~C:\Documents and Settings\Administrator\Dati applicazioni\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 32 FBoundingBox .r;o>;FBoundingBoxSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla=Flash UI Components/Component Skins/Global Skins/FBoundingBox(<>;(< Symbol 33 boundingBox!vC;h;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaIFlash UI Components/Core Assets - Developer Only/Other Assets/boundingBox(<h;(< Symbol 34PushButton Name"Hj;o;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaZFlash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/PushButton Name(<o;(< Symbol 35 RadioButton#2U<{;FRadioButtonSymbol~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla Flash UI Components/ RadioButton(<;(<UI Components/FRadioButtonLabel Radio Buttonlabel> JwK3nNE. Initial Statefalse initialState;F4U Group Name radioGroup groupNameyAqEM5Datadataل[GyXLabel PlacementleftrightlabelPlacement1GIChange Handler changeHandlerQ`' K"5Xradio_live.swfCWST_x: tTյgw&IB IX$!IB& $L)&737! *8AKbDR<1Yk>=W?O]ys3uٵ{>g}ΝNTCP~bbCP `bȞ[/T-Ϧ|Lj&v@^Y~eLԣHWGOPp,@Dhfmu.N#S Pa.,P+B+`ЈukQ{L+]>Vs3/5y즃Mtv`ͥj}X09a k*)hrhͰJZܻʂ5<ƻ6EzׇlWDT^1rO0?AyӀKWЈft=23LjYDd: $#dؒS)'9 ߏ9n{S#)3yhgcqR.6 c1p h^/|4en׌2k} c;yNdd4ɒ߃6X2-YB$Z"@دz̢lu*U\:J¥jD}7fJ%QAED݂EmQ+DL.2=;)S}%s >ݍ96 TW}o=7ݠ ){=R(TIIGFDuIEA&~XSQ'tqKf %*K[@kqiCۨpjW㢸3$qKCK尸˓aA~a 2|3|$Khg =\6Q._>eΦ$RId@8+ <#\4SS`/.p5F%CM0PqZ4j$!Zdjc&(*Et eQPҏ>ܓ@"  Tjl7ֺef鮪-'tm $YZ_˯pc 0I95YUN-NڋZ..r!(X&lr7JVBdSgS8Dߕ}vtp씜yTúvą%us=YË/ߙ~׹;$MXooe DU+p mW/W)n.ծkbΚ׫ ,v9\Y[ ZdZ_ hdr@LL9e UH]BؗO} !l0Ʃ7Т~ (D';u{KOY&,'O.FL罊^y{yЪkZ4kyʦͧL*comƒ ͻ?G>|c?:cZ=_+L+s4}xVymo탞6?+Ex_JdrOg-k:1|h{i?w=/vo83_=g '?/.nKM|[8 韃O>_ݏgox}Jǎ ZBWu=)Ͽ8y~>Cw}EO65a]_K'#u^x/ekO_}۲NP ]3Tr>dGwWh4|5?:ݐ~v,nŚSзm[W9~O-]/3ZtY-Ω ܽdΣNC&Ӛw:,uNoehfjsfr8f=Vզؾ`uY<ݏ9R57M]ݽgK]> _/7{nK!eV;~\YdnӏȘzhigՙ#sclx_.}Ϲ`3H3"K| sՁJsvhOۋwٷ`Ad;Z>uН˕}o-04WLR]`U4NOEH-D.;Im$yŀL':ӞC"WuQ6Ok$S\"MXHϴK.;3@mjcr2z@D Ta =^|+shE#}}nSq sDHBpP!/ ]ˆ8b}4,J 3TyQdž&ϡ0߆Q6CIp+Ŭ{#IO *ޱ:m4 p'l#4yF)Q I4feDcq$ACLM=?MMԟ3{dGm\ H_6䌚5^t H:?k'.A&;l[2]8 ,w^Wφ!p8#ŀ 1wy A0Mc@bCbUbzQ |&oG=|TI\||X!̋ IѼ jaքڲNhn|i 0uq~7,]iz=VղQ=QWiwmO[J_Ç^".WA#bpK@Ҩ܊z{H4رmب%0X(Lgj4v@5YCZ,ڰ,.b\a#tͤ 8`S($68Plf0e`GWE-!Y{%N娤И`wlBj eB=1H4{FL୓ŖAޔW.3ӑ81'!ᭌ؁_S uRC#$6B@ӗ`(D{an?9C]etq+D%.U !Rw(84P&78S]r2χpa*N ⫩ 0l$0_p8xTEeŨDzRZC[8up$A!zZ Qt$[ Գ^uY_+NĀOﳘejO!n$!YJZqMhU fP"wtAh?%_ mAelKI,A}xA/ %^\I3܀F#&L?m&D)s[ۘȡ +>"(Ts`dX}gt:ٶY\`EdYY`nR{lnwv2FQ{6&^uͤ$Bbv0;M:|f\[;/fY,䪣d2;=$=a)hXPh{iZ#,:i:9wE"r\QɒCODãmGA%T#:`E i/Vq9)0"d?N`CvKt&]?A{P$pHD7qQ{s}[V56҇yПkP)с~."-@8ij~r]#Ȓףџ{JX?wh |aF~N:S2U$w-OY ~oU~XѶ[Zm6oWhmo1ǶUHХo7{p7d{u}{n\. eYϋ`* s^aJLLe$yb< $VfŨfr8_>JщYX4 0/aM"6B|RƤ+*IbiAvBlɪEY 徂 r;*E%f $ EeZ ɴE ?0%Z] qB|1(E̘cE##U3{Z(޹ɣ ͗YsitB"d-JwNaqX ObKr,HHc'q@kcR!;W.'eE(_K<8Z_8WґYpKH>BJeX39Hq`Ӡ7AЖ n#͵+oC&Q/NרBqTxe^Y _A+֘K712St 8 '*iݨ38Z*cӁ_3 u͈0Y?#J`[uwjP)Jq% {/,W ǚ&|#22SD1S 3yMxomVϚ(3T6TFu&^x惺VRF c~}`&Vj_\=׵si&W4BSE wwRY1}r-䫐(BQkQb^9t#OoJZ8)^*75}஁?jЉv%=JW[Wq)-GҏF~+ZesL)RN͚oerQ)cxoF,6p,]9}&ށ}̽gmM{S5ѱ+V!g`xW͌ϛ*JUdPh?w0\͆rTJڢ|谨?B ǡIZhORB_sJ\0Z>( )igБ}9͢"_cks%A;qjʸRR*T2JFʑhs(&X{-kI^S8@cc.כH0_hc_k#n˼ػÎXK<$ͫW#W#f! $TIf2L@a×[l5>=^[-Hn89ŃOoa0D,dHsG r Radio Button Symbol 36 frb_states$.r;v; frb_states~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla\Flash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/frb_states(<;(< Symbol 37 frb_frame%.r;ti{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaAFlash UI Components/Component Skins/FRadioButton Skins/ frb_frame(<i{;(< Symbol 38 frb_leftOut&.r;u;=~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_leftOut(<;=(< Symbol 39 frb_leftIn'.r;u;?~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flajFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_leftIn(<;?(< Symbol 40 frb_rightIn(.r;u;A~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_rightIn(<;A(< Symbol 41 frb_rightOut).r;u;C~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flalFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_rightOut(<;C(< Symbol 42frb_background*.r;t#;(~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaEFlash UI Components/Component Skins/FRadioButton Skins/frb_background(<#;((< Symbol 43frb_background+.r;u;~;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flanFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background(<;~;(< Symbol 44frb_background_pressed,.r;t;I~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaMFlash UI Components/Component Skins/FRadioButton Skins/frb_background_pressed(<;I(< Symbol 45frb_background_pressed-.r;u ;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flavFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background_pressed(< ;(< Symbol 46frb_background_disabled..r;t;&~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaNFlash UI Components/Component Skins/FRadioButton Skins/frb_background_disabled(<;&(< Symbol 47frb_background_disabled/.r;u ;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flawFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_background_disabled(< ;(< Symbol 48 frb_dot_disabled0.r;tf{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flaHFlash UI Components/Component Skins/FRadioButton Skins/ frb_dot_disabled(<f{;(< Symbol 49frb_dot_disabled1.r;u;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flapFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_dot_disabled(<;(< Symbol 50 frb_dot2.r;ta{;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla?Flash UI Components/Component Skins/FRadioButton Skins/ frb_dot(<a{;(< Symbol 51frb_dot3.r;u8;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flagFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_dot(<8;(< Symbol 52 frb_hitArea4.r;uO;y frb_hitArea~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.flakFlash UI Components/Core Assets - Developer Only/Other Assets/FRadioButton Assets/Skin Elements/frb_hitArea(<O;y(< Symbol 53RadioButton Name5Hj;-v;~C:\Documents and Settings\Administrator\Dati applicazioni\Macromedia\Flash MX\Configuration\Components\Flash UI Components.fla[Flash UI Components/Core Assets - Developer Only/Other Assets/Name Symbols/RadioButton Name(<-v;(<7 CMediaBitsMedia 2 audio_off.gif!C:\work\Flash\audio\audio_off.gif4F>F29Media 1 audio_on.gif.\audio_on.gif4F5F2 hhhhh PropSheet::ActiveTab1620 CColorDef<<<3P<fPx<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<*]Oy@ Name SymbolsvC;Hj; Other Assets.r;svC;Core Assets - Developer Only2U<{.r;sFlash UI Components2U<{ Global Skins.r;p.r;oComponent Skins2U<{.r;pFPushButton AssetsvC;k;FPushButton Skins.r;p3r;fpb_over3r;;FPushButton Elementsk;3r; fpb_disabled3r;ª;fpb_up3r;f; fpb_press3r;;FUIComponent Class Tree.r;s.r;wFRadioButton AssetsvC;.r;vFRadioButton Skins.r;p.r;t Skin Elements.r;v.r;uh Name SymbolsvC;Hj; Other Assets.r;svC;Core Assets - Developer Only2U<{.r;sFlash UI Components2U<{ Global Skins.r;p.r;oCompon0<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<*] V Name SymbolsvC;Hj; Other Assets.r;svC;Core Assets - Developer Only2U<{.r;sFlash UI Components2U<{ Global Skins.r;p.r;oComponent Skins2U<{.r;pFPushButton AssetsvC;k;FPushButton Skins.r;p3r;fpb_over3r;;FPushButton Elementsk;3r; fpb_disabled3r;ª;fpb_up3r;f; fpb_press3r;;FUIComponent Class Tree.r;s.r;wFRadioButton AssetsvC;.r;vFRadioButton Skins.r;p.r;t Skin Elements.r;v.r;uh