[FLA] me lio con _root

Hola amigos, me cuesta mucho hacerme con el _root para pasar
de un clip a
otro. Tengo la escena principal, en ella tengo un clip y en
este otro clip
con un boton el el. Quiero que al pinahr en ese boton, 2
clips mas abajo me
vaya a una etiqueta pero estoy probando con
_root.gotoandpaly("f") pero no
me hace caso, sin el _root tampoco y no se como dirigirme a
un clip, no se
si hay que empezar en la escena principal e ir nombrando las
etiquetas o
como
garcias por vuestra ayuda

This is a multi-part message in MIME format.
------=_NextPart_000_000D_01C75743.8E3BD660
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
BLUE como te expliques mejor ...
Lucas Sevilla
www.lucassevilla.info
www.gestproyect.info=20
"Blue" <[email protected]> escribi=F3 en el mensaje =
news:[email protected]...
Hola amigos, me cuesta mucho hacerme con el _root para pasar
de un =
clip a=20
otro. Tengo la escena principal, en ella tengo un clip y en
este otro =
clip=20
con un boton el el. Quiero que al pinahr en ese boton, 2
clips mas =
abajo me=20
vaya a una etiqueta pero estoy probando con
_root.gotoandpaly("f") =
pero no=20
me hace caso, sin el _root tampoco y no se como dirigirme a
un clip, =
no se=20
si hay que empezar en la escena principal e ir nombrando las
etiquetas =
o=20
como
garcias por vuestra ayuda
------=_NextPart_000_000D_01C75743.8E3BD660
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2900.3059"
name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3D"Trebuchet MS" size=3D2>BLUE
como te expliques mejor=20
...</FONT></DIV>
<DIV>
<P>Lucas Sevilla</P>
<P><A =
href=3D"
http://www.lucassevilla.info">www.lucassevilla.info</A></P>
<P><A href=3D"
http://www.gestproyect.info">www.gestproyect.info</A>
=
</P></DIV>
<BLOCKQUOTE=20
style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
5px; =
BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
<DIV>"Blue" &lt;<A =
href=3D"mailto:[email protected]">[email protected]</A>&gt;=20
escribi=F3 en el mensaje <A=20
=
href=3D"news:[email protected]">news:erm75r$mg0$1@forums=
.macromedia.com</A>...</DIV>Hola=20
amigos, me cuesta mucho hacerme con el _root para pasar de
un clip a =
<BR>otro.=20
Tengo la escena principal, en ella tengo un clip y en este
otro clip =
<BR>con=20
un boton el el. Quiero que al pinahr en ese boton, 2 clips
mas abajo =
me=20
<BR>vaya a una etiqueta pero estoy probando con
_root.gotoandpaly("f") =
pero no=20
<BR>me hace caso, sin el _root tampoco y no se como
dirigirme a un =
clip, no se=20
<BR>si hay que empezar en la escena principal e ir
nombrando las =
etiquetas o=20
<BR>como<BR>garcias por vuestra =
ayuda<BR><BR></BLOCKQUOTE></BODY></HTML>
------=_NextPart_000_000D_01C75743.8E3BD660--

Similar Messages

  • [Fla 8] Problema con detener sonido

    Hola, de nuevo. Estoy poniendo un sonido de fondo, lo cargo
    sin problema,
    pero no consigo que el botón lo detenga:
    this.onLoad = function(){
    var miMusica:Sound = new Sound();
    miMusica.loadSound("../mp3/musica.mp3", true);
    //Hasta aquí se carga sin problema y empieza sonando tal
    como quiero (en
    streaming, mientras se va cargando)
    //A partir de aquí el código del botón. El
    botón es un MC con dos frame y en
    cada uno una bandera: pause y play, no tiene nada más.
    var pausa:Number = 0;
    var estado:Number = 0;
    boton_btn.stop(); //porque dentro del botón no he puesto
    los stop( );
    boton_btn.onRelease = function (){
    if (estado == 0){
    miMusica.duration(pausa/1000);
    estado = 1;
    boton_btn.gotoAndStop("pause");
    } else {
    pausa = miMusica.position;
    miMusica.stop();
    estado = 0;
    boton_btn.gotoAndStop("play");
    miMusica.stop();
    //Se supone que el botón debería parar el sonido y
    al volver a apretarlo,
    continuar. Me funciona perfectamente si uso attachSound pero
    no con
    loadSound ¿Cuál es el error, por favor?
    Muchas gracias, XL

    Bueno, he sabido solucionarlo usando stopAllSounds();
    Gracias de todas formas. Por si os sirve, la solución es
    ésta:
    var estado:Number = 1;
    boton_btn.stop();
    botonesTXT.text = "[ Detener sonido ]"
    var miMusica:Sound = new Sound();
    miMusica.loadSound("musica.mp3", true);
    boton_btn.onRelease = function (){
    if (estado == 0){
    var numSecondsOffset:Number = (miMusica.position/1000);
    miMusica.start(numSecondsOffset);
    estado = 1;
    boton_btn.gotoAndStop("pause");
    botonesTXT.text = "[ Detener sonido ]"
    } else {
    stopAllSounds();
    estado = 0;
    boton_btn.gotoAndStop("play");
    botonesTXT.text = "[ Reiniciar sonido ]"
    stop( );
    Saludos, XL
    "XL" <[email protected]> escribió en el mensaje
    news:enr3l5$6v5$[email protected]..
    > Hola, de nuevo. Estoy poniendo un sonido de fondo, lo
    cargo sin problema,
    > pero no consigo que el botón lo detenga:
    >
    > this.onLoad = function(){
    > var miMusica:Sound = new Sound();
    > miMusica.loadSound("../mp3/musica.mp3", true);
    > }
    >
    > //Hasta aquí se carga sin problema y empieza
    sonando tal como quiero (en
    > streaming, mientras se va cargando)
    >
    > //A partir de aquí el código del botón.
    El botón es un MC con dos frame y
    > en cada uno una bandera: pause y play, no tiene nada
    más.
    >
    > var pausa:Number = 0;
    > var estado:Number = 0;
    >
    > boton_btn.stop(); //porque dentro del botón no he
    puesto los stop( );
    >
    > boton_btn.onRelease = function (){
    > if (estado == 0){
    > miMusica.duration(pausa/1000);
    > estado = 1;
    > boton_btn.gotoAndStop("pause");
    > } else {
    > pausa = miMusica.position;
    > miMusica.stop();
    > estado = 0;
    > boton_btn.gotoAndStop("play");
    > }
    > miMusica.stop();
    > }
    >
    > //Se supone que el botón debería parar el
    sonido y al volver a apretarlo,
    > continuar. Me funciona perfectamente si uso attachSound
    pero no con
    > loadSound ¿Cuál es el error, por favor?
    >
    > Muchas gracias, XL
    >

  • Movie Clips: resetear _root

    Hola amigos aqui de vuelta con una preguntilla sobre _roots.
    En el primer frame de mi flash tengo 2 capas una de botones
    (tengo un boton
    PRODUCTOS) y otra de clips, en la capa clips tengo un CLIP,
    dentro de este
    otro CLIP y dentro de este ultimo otro CLIP, ( instancia:
    "contenidos") en
    el ultimo clip tengo varios frames con varias etiquetas para
    ir a sus
    contenidos, todo ok, navego por mis contenidos, pero deseo
    que al darle
    CLICK nuevamente al boton PRODUCTOS me resetee el _root del
    CLIP("contenidos"), deseo que estee en el frame 1 y stop.
    Estoy trabajando todo con _roots espero comprendan mi
    consultilla les tare
    bien agradecido la orientacion.
    Miguel

    Ya!!! jeje un colega de otro foro me dio una manito y les
    envio la respuesta
    por si les interesa.
    Solo tienes que crear la ruta desde _root hasta llegar
    contenidos, al hacer
    clic en productos, escribes algo como:
    Código:
    productos.onRelease = function() {
    _root.clip1.clip2.contenidos.gotoAndStop(1);
    Saludos!

  • Can you code a link between html and a particular flash page?

    Hi,
    I hope this question is not too confusing. I am designing a website in flash CS3 using Action script 2.0 not 3.0 and Flash Player 8. The architecture I used is as follows:  I have a menu/main page which loads the swf files of other flash pages.  I have a particular flash chatroom page which is loaded by the main page that I would like to be able to link an web address (example ... www.chatroom.com) directly too that particular sub flash page ... rather than going to the main.swf which is what the original web address uses.  (I hope your following me).
    Technically I know I could link a web address to the chatroom.swf file, but then it would estetically look incomplete since the theme/design of the website is in the main.swf which calls the chatroom.swf.  
    Thus my question is: is there a way to assign the web address to  the chatroom.swf inside the main.swf. I would like to go directly to the chatroom without clicking chatroom on the main.swf menu.  I do not know enough Actionscript 2.0 to know if this is possible. I did try to search for the answer but could not find it.  If it is possible what script would I need?  If it is not possible, any other ideas to get the same effect?
    As always, thank you for your help.

    I just wanted to clarify how the main page links to the subsequest pages when I said it loads the swf file.  The links in the actual menu code are fla files.
    (on release) {
    _root.toLoad = 'chatroom'
    _root.con.play(_currentframe+1);
    Then I must publish the files to make swf files for each page which will be loaded into the main menu.
    I hope that gives insight to my thinking and helps you answer my question.

  • Can anyone help disabling a number nav

    Hi all
    I'm trying to alter some ActionScript in an existing file.
    I've created an extra 'Contact Us' section tab which when clicked brings up the address of the company. Unfortunately the Number 1 navigation box is still clickable and leads to a dead page. I need to find what I need to alter in the ActionScript on frame 102 to stop it from doing this either by removing it or disabling it just in this section and no others.
    Can someone have a look for me because I can's see what needs changing. The CS3 .Fla files are here.
    http://dl.getdropbox.com/u/959827/Flash_Files.zip
    I really appreciate it if someone has got time.

    While I won't take the time to go thru and figure out the intricasies of the design, here is a possible solution that seems to work as far as not making the numbered submenu section area visible for the Contact section.  You'll need to see if it upsets anything else functionally.  Note the two blue lines of code I added:
    function activateTopMenu(inArr:String) {
         colorMe(_root["new"+selArrayName+"But"].bg_mc,0xFFFFFF);
         _root[selArrayName]._visible = false;
         selArrayName = inArr;
         colorMe(_root["new"+selArrayName+"But"].bg_mc,0xEBECF1);
         if(inArr != "Con"){
           _root[inArr]._visible = true;
         selectNr(0);

  • Next/previous inside the movie Clip.

    Hi,
    I try to made Next/previous inside the movie Clip.But When I try to this next previous animation inside movie clip but not working.
    I have attached both sample files.
    The files are on following link:
    http://www.4shared.com/file/125612766/28c58a99/fla.html

    your code was _root.gotoAndStop(contor+1); but your root level only had 1 frame. I took out the "_root." and it worked fine. Here is the working file.

  • Sound from External swf

    I have a main movie (index.swf) that preloads my external SWF
    that is a menu button 4.swf
    My index.swf has background music (song1) that plays on load.
    I also have background music (song2) that plays on my 4.swf
    It works fine when I test 4.swf directly however when I load
    my main index.swf I do not hear the song2.
    I used stopAllSounds(); in my4.swf to stop the background
    music (song1) and then load my song2
    stopAllSounds();
    my_sound = new Sound(sound_loop);
    my_sound.loadSound("4.mp3",true);
    my_sound.start(0,100);
    This has gotten me to get both songs to play when the site is
    loaded and when I click on my menu for 4 button all the sound stops
    and my song2 never plays.
    My actionscript is not very good so any details you can give
    would be greatly appreciated.
    Thanks much!

    here is frame 3 of my loader in index.fla
    var movie:MovieClip =
    _root.StoredActions.Holder.Movies.Holder2.CMovie.duplicateMovieClip("CMovie"
    + n,n);
    loadMovie(n+".swf",_root.StoredActions.Holder.Movies.Holder2["CMovie"+n]);
    if(n>1){
    _root.StoredActions.Holder.Movies.Holder2["CMovie"+n]._x =
    3000;
    var MovieLoaded = 0;
    percent = 0;
    frame4
    MovieLoaded =
    _root.StoredActions.Holder.Movies.Holder2["CMovie"+n].getBytesLoaded();
    loadTotal =
    _root.StoredActions.Holder.Movies.Holder2["CMovie"+n].getBytesTotal();
    percent = int(MovieLoaded/loadTotal*100);
    Bar.gotoAndStop(percent);
    loadingName = ("Loading... " + percent+ "%" + " of "+ n);
    Loadtext_txt.text = loadingName;
    if (loadTotal>10) {
    if (MovieLoaded>=loadTotal) {
    gotoAndPlay(6);
    frame6
    if (n < _root.StoredActions.nMenus) {
    n++;
    gotoAndPlay(3);
    } else {
    gotoAndStop("Stopload");
    _root.gotoAndPlay("Play");
    I know that the above code is loading all the external swf
    and causing the music to start after load. Is there a way to stop
    it from loading the sound?

  • Funcion number en AS 2.0?

    Hola tengo un codigo en as 1.0 con la funcion number asi:
    nuevaposicion=Number(TEXTO:_y)
    y en un proyecto con as 2.0 da error ?por que funcion esta
    sustituida? o
    cual es la nueva sintaxis? o por que me da el error?
    Gracias

    Creo que lo que quieres hacer es recolocar un texto en otra
    posición (pero
    lo haces siguiendo una especie de sintaxis híbrida entre
    Delphi y as2).
    1º. Convierte tu texto en movieclip pulsando la tecla
    F8. Dale un nombre de
    instancia. (por ejemplo 'miTexto')
    2º. Para cambiarlo de posicion bastaría con:
    _root.miTexto._y:Number = -128;
    Y así te manda la esquina superior izquierda del
    movieclip que contiene el
    texto a 128 pixels por debajo de la esquina superior
    izquierda del
    escenario.
    Quiero recordarte que la definición de tipos en
    actionscript 2.0 tiene como
    finalidad detectar errores en el compilador, pero si no
    quieres hacer caso
    al compilador puedes obviarla, (lo que no es buena
    práctica en la
    programación).
    Tal como estás programando (adivino que lo haces
    parametrizando), te
    bastaría con poner en el primer fotograma del nuevo
    movieclip que incluye al
    texto:
    this._y = -128;
    Y así evitas referencias a _root, que es la linea de
    tiempo principal.
    Salu2
    `8¬}
    Juan Muro
    "Blue" <[email protected]> escribió en el mensaje
    news:es0vj6$2hn$[email protected]..
    > Hola tengo un codigo en as 1.0 con la funcion number
    asi:
    >
    > nuevaposicion=Number(TEXTO:_y)
    >
    > y en un proyecto con as 2.0 da error ?por que funcion
    esta sustituida? o
    > cual es la nueva sintaxis? o por que me da el error?
    >
    > Gracias
    >
    >

  • Load and control youTube video

    I would like to load a youtube video in a flash movie.
    I have absolutely no idea how to do this.
    I have the URL of the movie and I have the target movieChild.
    All I want to do is to load and play the video frm within the
    fash movie I have created.
    Can anyone help me. I am using FlashMX. and I haven't used it
    for a while (and I am no computer expert.)

    When you create the PeaBee embedding code...note the "edat"
    variable.
    Put that as a _root variable in your FLA. For example:
    _root.edat="FA18987ECB...
    Then, load the swf from
    http://player.peabee.com/ (the
    address is
    automatically translated to a SWF).
    You should now have a fully functional player inside your own
    code.
    Patrick
    dorianw wrote:
    > The video is mine, so it's not a question of having the
    video on my site. It's
    > more a question of using youtube to store all my videos
    and calling them up
    > when I need them but in the size i need . I've just
    tried PeaBee but the video
    > comes out jerky and I can't seem to use it from within
    the swf I create.
    >
    http://www.baynewmedia.com
    Faster, easier, better...ActionScript development taken to
    new heights.
    Download the BNMAPI today. You'll wonder how you ever did
    without it!
    Available for ActionScript 2.0/3.0.

  • Can I hide/disable the presentation playbar

    I'mputting together a project consisting entirely of imported flash swf files. Some of the swfs are interactive, and some are not, so per other discussions, I'm choosing which files should be controlled by the playbar, and which should not. My issue is usability. On the files where there is user interaction, I need to either hide or disable the playbar so that the user isn't confused as to why pausing/playing/etc. do not work. Does anyone know of a way to hide or diable the playbar on a per screen basis? Thanks!
    Bill

    Hey Bill,
    I just came across a very interesting solution to eliminating the playbar entirely without modifying the vconfig.xml file.  The good news is that it works fantastically...the bad news is that you MUST pay careful attention to what you're doing with the Flash files that you'll have to reimport as a result.  More on that in a sec....
    Someone once added an entry in this forum suggesting that you could use a flash-based button to "communicate" with the Presenter components in a published file.  Although assigning code to a button will work, you can also use “onEnterFrame” event handler as a way to automatically trigger various things to happen.  This way, you won’t need to create buttons that require user interaction to occur just to make something happen in Presenter...or you can leave the level of interactivity for the flash files you're looking to build.  In any case, to kill the playbar scrubber while leaving the attachments and audio controls intact, use the following code on a single frame of an fla:
    this.onEnterFrame = function () {
    _root.m_controlBar.m_scrubBar._visible= 0;
    Save and publish the Flash file, and then add the swf to the first slide in a presentation.  Publish the content and the scrubber/playback will be gone!
    Programming NOTE: because Breeze/Presenter is set up for Flash Player 6/7/8, its best to code everything using Flash Player 6 / Actionscript 2.0 as the coding environment.
    The drawback: as soon as you navigate to the screen that contains a flash object with the above code, the playbar will be killed off for the entire presentation.  Therefore, as you navigate to a slide/screen where you need the playbar to re-appear, you're going to need to create another flash file that resets the visible property of the scrubBar object:
    this.onEnterFrame = function () {
    _root.m_controlBar.m_scrubBar._visible= 1;
    Save and publish this second Flash file and import on your slide where needed/required.
    Hope that helps!
    Rob
    www.robrode.com/yabb/

  • (FLA) Player SWF Alquien tiene uno. Me pregunto. Alguien tiene un player de sonido con su stop y play. Con botones para ir al siguiente sonido o que salga un pequeño menú sin que deforme la tabla para que escoja otro sonido

    Hola gentiles foreros.
    Me pregunto. Alguien tiene un player de sonido con su stop y
    play. Con
    botones para ir al siguiente sonido o que salga un
    pequeño menú sin que
    deforme la tabla para que escoja otro sonido
    Gracias
    Por favor. A mi email: [email protected],
    [email protected]
    Bórrenle el NOSPAM
    Saludos desde Colombia

    Anuack, puedes encontrar en internet muchísimos, elige
    el que mejor se
    adapte a tus necesidades:
    http://www.e-phonic.com/mp3player/
    http://www.premiumbeat.com/flash_resources/free_flash_music_player/
    http://www.draftlight.net/dnex/mp3player/free/
    http://www.genbeta.com/2006/05/08-10-reproductores-de-audio-en-streaming-en-flash
    http://jeroenwijering.com/?item=JW_FLV_Player
    Y miles más en Google...
    Un cordial saludo
    "Anuack.com" <[email protected]> escribió en
    el mensaje
    news:ftr0i4$ftc$[email protected]..
    > Hola gentiles foreros.
    >
    > Me pregunto. Alguien tiene un player de sonido con su
    stop y play. Con
    > botones para ir al siguiente sonido o que salga un
    pequeño menú sin que
    > deforme la tabla para que escoja otro sonido
    >
    > Gracias
    >
    > Por favor. A mi email: [email protected],
    [email protected]
    >
    > Bórrenle el NOSPAM
    >
    > Saludos desde Colombia
    >

  • [FLA MX] dibujar una linea con as teniendo dos puntos

    Saludos forer@s:
    Pues eso, quiero que el usuario cree su propia ruta sobre un
    mapa dado y
    quiero que vaya haciendo una l�nea a trav�s de
    puntos.
    saludos
    http://www.arousa-norte.es
    http://www.acquariumgalicia.com
    http://www.e-imaxina.com
    http://www.osalnes.com
    http://www.stsanxenxo.com
    http://www.hotelperegrina.com
    http://www.campingmoreiras.com
    http://www.escapateaogrove.com
    http://www.turismogrove.com
    http://www.atlantika.net

    Buenos días señor,
    la herramienta 'convertir punto de ancla' (V) con movimiento
    de la ráton (applicado a un rincón punto de ancla) hace dos
    manejadores de contraria dirección, que pueden mover sólo
    al mismo tiempo.
    Por separar los manejadores, emplear la herramienta 'V' otra
    vez al fin de un manejador, con movimiento de la ráton.
    No sé si he entendido el problema exacto (yo hablo sólo un
    poco de español).
    Cordiales saludos --Gernot Hoffmann
    The tool 'Convert anchor' (V) with mouse movement (applied
    to a corner point) creates two handles in opposite direction
    which can move only simultaneously.
    In order to separate the handles, apply the tool (V) once
    more at the end of one handle, moving the mouse.
    I'm not sure whether I understood your problem correctly
    (I'm talking only a litte Spanish).
    Best regards --Gernot Hoffmann

  • (FLA) Alguien me ayuda con este EFECTO?  gracias!

    un book, con el efecto del pasado de hojas con click
    saludos y gracias a los que puedan pasarme un ejemplo de como
    es el script
    www.tatetionline.com
    Pablo Triviño | Diseño
    A&N Focus Point S.A.
    Panamá 3320 - Munro - Buenos Aires
    5411 . 4762.6620 int 11
    www.ayn.com.ar

    hola Pablo, "page flip", buscalo por ese nombre, hay varios
    sitios que
    encontrarás información de como trabajarlo.
    saludos
    "Pablo Triviño" <[email protected]>
    escribió en el mensaje
    news:fv7ff2$k1j$[email protected]..
    > un book, con el efecto del pasado de hojas con click
    > saludos y gracias a los que puedan pasarme un ejemplo de
    como es el script
    >
    > www.tatetionline.com
    >
    > --
    > Pablo Triviño | Diseño
    > A&N Focus Point S.A.
    > Panamá 3320 - Munro - Buenos Aires
    > 5411 . 4762.6620 int 11
    > www.ayn.com.ar
    >

  • [FLA CS3] Cargar sonido externo con actionscript 3.0

    Hola, ¿alguien sabe como hacer un loadSound en
    ActionScript 3.0?
    Necesito cargar un *.mp3 externo y no se que codigo usar
    Gracias

    Me autorespondo:
    var snd:Sound = new Sound(new URLRequest("audio.mp3"));
    snd.play();
    "Bitxo" <[email protected]> escribió
    en el mensaje
    news:feg6op$4ph$[email protected]..
    > Hola, ¿alguien sabe como hacer un loadSound en
    ActionScript 3.0?
    > Necesito cargar un *.mp3 externo y no se que codigo usar
    >
    > Gracias
    >

  • [FLA 8] Galer�a Juan Muro

    Hola, estoy utilizando la galer�a de Juan Muro (la de
    su web de recursos) y
    tengo un problema:
    He suprimido la carga en el index.swf que �l pone y
    con la ayuda de varios
    del foro y podido pasar la publiccai�n de galeria.fla
    a AS2. Hasta aqu� sin
    problemas.
    El problema es que quiero cargar galeria.swf en otra peli
    principal y lo
    hace pero no me crea los thumbails, me aparecen las fotos d
    elos thumbails
    en el tama�o original.
    �Qu� puede ser, por favor?
    Mucha sgracias, XL

    Parece un t�pico problema de niveles. te pego un
    fragmento de la ayuda del
    propio flash que habla acerca de la funci�n
    "_lockroot" que (creo) puede
    solucionarte eso sin tener que modificar el resto del codigo.
    Para hacer que _root indique siempre el valor de l�nea
    de tiempo del archivo
    SWF cargado, en lugar de la l�nea de tiempo
    ra�z, utilice la propiedad
    _lockroot. Puede establecer esta propiedad mediante la carga
    del archivo SWF
    o el archivo SWF que se est� cargando. Cuando
    _lockroot se establece en true
    en una instancia de clip de pel�cula, dicho clip de
    pel�cula act�a como
    _root para cualquier SWF que est� cargado en
    �l. Cuando _lockroot se
    establece en true en un archivo SWF, dicho archivo SWF
    act�a como su propia
    ra�z al margen de qu� otro archivo SWF la
    cargue. Puede establecerse
    _lockroot en true en cualquier clip de pel�cula y en
    tantos como se desee.
    De forma predeterminada, esta propiedad es false.
    Por ejemplo, el autor de container.swf podr�a asociar
    el c�digo siguiente
    del fotograma 1 de la l�nea de tiempo principal:
    // A�adido al fotograma 1 de container.swf:
    target_mc._lockroot = true;
    : : : Fernando D. Blanco : : :
    "XL" <[email protected]> escribi� en el mensaje
    news:[email protected]...
    | Bueno, sigo intent�ndolo. Curiosamente si hago la
    carga de la galer�a
    | mediante un bot�n con loadMovieNum s� que
    carga las fotos, pero no s� c�mo
    | decirle las coordenadas donde quiero que me aparezcan.
    �Alguien sabr�a
    | decirme c�mo indicar las coordenadas?
    |
    | function cargarFotos( )
    | {
    | loadMovieNum("galeria.swf", 1);
    | }
    |
    | Pero si hago la carga mediante un loadMovie para que lo
    cargue en un
    | contenedor y decirle las coordenadas en que quiero que
    aparezca, entonces
    no
    | se me crean los thumbails. �Alguien sabr�a
    decirme por qu� esto?
    |
    | function cargarFotos( )
    | {
    | this.createEmptyMovieClip( "fotos_mc",
    this.getNextHighestDepth( ) );
    | fotos_mc._x = 100;
    | fotos_mc._y = 250;
    | loadMovie("galeria.swf", fotos_mc );
    | trace( "fotos cargadas" );
    | }
    |
    | Muchas gracias, XL
    |
    |

Maybe you are looking for

  • Group Text with Android Doesn't Work

    Hi- I had been using an iPhone for a few years, and decided to switch over to Android. It took some time to get my phone number disassociated from iMessage/iCloud, but I was eventually able to get that done. Since iOS8 came out, though, I'm starting

  • Capacity planning

    Dear Experts,                        I have done the necessary configuration for planned order scheduling in R/3 and ran MRP with lead time scheduling. While running MRP i am doing capacity levelling. From graphical planning table i am able to re-sch

  • Cannot upgrade to OS 5.1

    When I try to check for upgrade on my iPhone 4 while connected to my WIFI, all I get is a message that says "Unable to check for upgrade.  When I try connecting to iTunes for the upgrade, it just sits there waiting for the upgrade software server.  A

  • Aironet 1142 as supplicant to 2960 switch (NEAT/CISP/MAB)

    Hello! First, my configuration, (then the problem down below): I have an Aironet 1142 with mulitple SSIDs [mapped to VLANs] connected to Gi1/0/2 on a 2960 switch in a user-accessible area.  This switch is uplinked to another 2960 switch in a wiring c

  • Can we run MRP for perticular ITEMS or Can we run MRP on MRP Group wise

    Dear Friends, Out of all Material masters MRP should be run on some meterial. Is there any way to run MRP on perticular 1 MRP Group ? Is there any way to run MRP on selected MATERILS ? Waiting for ur help. Thanks... Yogesh.