Ver Mensaje Individual
  #3 (permalink)  
Antiguo 27/04/2009, 11:45
daprfctman
 
Fecha de Ingreso: junio-2008
Mensajes: 7
Antigüedad: 16 años, 5 meses
Puntos: 0
Exclamación Respuesta: Ayuda con navbar en XML

Mi fla dice lo siguiente:


// iMenuPro Setup in three easy steps:

// 1. import the class (make sure it's in the same directory with this file);

import iMenuPro2;

// 2. create your scope (root, target, whatever) movieClip

var home:MovieClip = this;

// 3. create an iMenuPro object, and give the appropriate values in the constructor:

// Constructor Declaration
// public function iMenuPro2(target:MovieClip, instanceName:String, xmlResource:String, instanceWidth:Number, instanceHeight:Number, instanceX:Number, instanceY:Number, enableStroke:Boolean, enablePhotoStroke:Boolean, enableDescriptions:Boolean, linkMode:String, enableDropShadow:Boolean, infoPanelRatio:Number, effect:String)

// Argument Analysis

// 1. target [movieClip]: the target of your iMenuPro instance ie. the movieClip under which you want the iMenuPro movieClips to be placed
// 2. instanceName [String]: a unique name for your iMenuPro instance. When using multiple instances make sure you use different instanceNames
// 3. xmlResource [String]: the url of you xml resource file
// 4. instanceWidth [Number]: the width [pixels] of the iMenuPro instance
// 5. instanceHeight [Number]: the height [pixels] of the iMenuPro instance
// 6. instanceX [Number]: the x position [pixels] of the iMenuPro instance
// 7. instanceY [Number]: the y position [pixels] of the iMenuPro instance
// 8. enableStroke [Boolean]: true, if you want an external white stroke, false otherwise
// 9. enablePhotoStroke [Boolean]: true, if you want a white stroke for each photo, false otherwise
// 10. enableDescriptions [Boolean]: true, if you want the infoPanel to appear onRollOver, false otherwise
// 11. linkMode [String]: "photo",if you want to get the photo url onRelease, "url" if you want to load an external url declared on the xml file
// 12. enableDropShadow [Boolean]: true, if you want dropShadow for each photo, false otherwise
// 13. infoPanelRatio [Number] (0, 1]: the percentage of the instanceHeight that you want the infoPanel to cover
// 14. effect [String]: Choose the rollOver effect between "Saturation" and "BrightnessOffset".

var obj1:iMenuPro = new iMenuPro(home, "in1", "photos.xml", 570, 280, 10, 10, true, true, true, "url", false, 0.35, "Saturation");



Pero ahora no se que modificar.