How attachMovie in a specific setting?

I have 3 pages of a document converted to symbols (e.g., mc_pg1, mc_pg2, mc_pg3), each residing in its own framework ("pg1", "pg2", "pg3") inside mc_Pages.  Mc_pg1, mc_pg2 and mc_pg3 are inside a movieclip called mc_Pages.  When you click on mc_Pages, I enclose a flashing icon (mc_Target) to a specific page.  The problem I have is when I attach mc_Target to a specific mc in its framework, go to another frame and then go back to the initial frame, mc_Target's is no longer attached.  Yet, I have not clique anywhere else, other than the buttons that allow me to navigate from one image to the next.  So, my code is:

mc_Pages.onPress = function (): Void

{

if(varPg1 == true) //this checks to see if I'm on chassis "pg1" where the mc_pg1

{

mc_Pages.mc_pg1.attachMovie ("mcTarget", "mc_Target", 1); attach an icon flashing mc_Target in mc_pg1

mc_Pages.mc_pg1.mc_Target._x = mc_Pages.mc_pg1._xmouse

mc_Pages.mc_pg1.mc_Target._y = mc_Pages.mc_pg1._ymouse

}

else //this if(varPg2 == true) checks to see if I'm on chassis 'pg2"where the mc_pg2

{

mc_Pages.mc_pg2.attachMovie ("mcTarget", "mc_Target", 1); attach an icon flashing mc_Target in mc_pg2

mc_Pages.mc_pg2.mc_Target._x = mc_Pages.mc_pg2._xmouse

mc_Pages.mc_pg2.mc_Target._y = mc_Pages.mc_pg2._ymouse

}

Another yew (etc.)

}

Everything works as it should, i.e. on the pressure on the mouse button, the mc_Target is attached to the chassis/mc in mc_Pages that I am (I have a btn_Next and btn_Previous on the same timeline as mc_Pages that navigates to the specific framework within the mc_Pages), except that on his return to a framework/mc which had previously attached mc_Target, mc_Target is no longer there.

I've been struggling with this during a period of time and can't seem to find a solution.  Any help is greatly appreciated.  Thank you.

Artur

Likewise, you will store a variable that indicates whether the object has been loaded or not.  So you'll need a few variables for each that you assign values when you first attach the object, e ion indicating he was attached (true/false) and two which show the coordinates _X and FLF of the attached object...

Tags: Adobe Animate

Similar Questions

  • How to export a specific set of tables in a schema whose name begins with 'A'

    Hi all

    I need to export oracle specific tables in a schema whose name begins with "AA_".
    Is it possible to export as it...

    Please help me with this...

    Oracle version: 11 GR 2

    Kind regards
    VAMSi...

    you have 2 possible

    1- using  exp user/password file=location\name.dmp log=location\name.log tables=AA% 
    
    Or 
    
    Sqlplus username/password
    
    Spool export.log
    
    select ''''|| table_name ||''''||',' from user_tables
    where table_name like 'AA%'
    
    Spool off ;
    
    And Put table name that generated in Spool file in Tables parameter (export)
    

    Mark this thread as a response please.

  • How to move a specific tablespace data file from one directory to another

    Database: 10.2.0.1
    OS: generic
    Description of the problem: how to move a specific tablespace data file of one directory to another account of the database that is on the installer of Oracle Dataguard

    * Oracle is working on this issue, but at the same time opens the topic community so that community members can add their views, experience, or knowledge. This will strengthen again all the knowledge bases, including My Oracle Support and My Oracle Support Communities *.

    Published by: ram_orcl on August 16, 2010 21:21

    Dear ram_orcl,

    Please follow the procedures here;

    http://download-UK.Oracle.com/docs/CD/B19306_01/server.102/b14239/manage_ps.htm#i1034172

    8.3.4 Renaming a Datafile in the Primary Database
    
    When you rename one or more datafiles in the primary database, the change is not propagated to the standby database. Therefore, if you want to rename the same datafiles on the standby database, you must manually make the equivalent modifications on the standby database because the modifications are not performed automatically, even if the STANDBY_FILE_MANAGEMENT initialization parameter is set to AUTO.
    
    The following steps describe how to rename a datafile in the primary database and manually propagate the changes to the standby database.
    
       1.
    
          To rename the datafile in the primary database, take the tablespace offline:
    
          SQL> ALTER TABLESPACE tbs_4 OFFLINE;
    
       2.
    
          Exit from the SQL prompt and issue an operating system command, such as the following UNIX mv command, to rename the datafile on the primary system:
    
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf
          /disk1/oracle/oradata/payroll/tbs_x.dbf
    
       3.
    
          Rename the datafile in the primary database and bring the tablespace back online:
    
          SQL> ALTER TABLESPACE tbs_4 RENAME DATAFILE      2> '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            3>  TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
          SQL> ALTER TABLESPACE tbs_4 ONLINE;
    
       4.
    
          Connect to the standby database, query the V$ARCHIVED_LOG view to verify all of the archived redo log files are applied, and then stop Redo Apply:
    
          SQL> SELECT SEQUENCE#,APPLIED FROM V$ARCHIVED_LOG ORDER BY SEQUENCE#;
          SEQUENCE# APP
          --------- ---
          8 YES
          9 YES
          10 YES
          11 YES
          4 rows selected.
    
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE CANCEL;
    
       5.
    
          Shut down the standby database:
    
          SQL> SHUTDOWN;
    
       6.
    
          Rename the datafile at the standby site using an operating system command, such as the UNIX mv command:
    
          % mv /disk1/oracle/oradata/payroll/tbs_4.dbf /disk1/oracle/oradata/payroll/tbs_x.dbf
    
       7.
    
          Start and mount the standby database:
    
          SQL> STARTUP MOUNT;
    
       8.
    
          Rename the datafile in the standby control file. Note that the STANDBY_FILE_MANAGEMENT initialization parameter must be set to MANUAL.
    
          SQL> ALTER DATABASE RENAME FILE '/disk1/oracle/oradata/payroll/tbs_4.dbf'
            2> TO '/disk1/oracle/oradata/payroll/tbs_x.dbf';
    
       9.
    
          On the standby database, restart Redo Apply:
    
          SQL> ALTER DATABASE RECOVER MANAGED STANDBY DATABASE
            2> DISCONNECT FROM SESSION;
    
    If you do not rename the corresponding datafile at the standby system, and then try to refresh the standby database control file, the standby database will attempt to use the renamed datafile, but it will not find it. Consequently, you will see error messages similar to the following in the alert log:
    
    ORA-00283: recovery session canceled due to errors
    ORA-01157: cannot identify/lock datafile 4 - see DBWR trace file
    ORA-01110: datafile 4: '/Disk1/oracle/oradata/payroll/tbs_x.dbf'
    

    Hope that helps.

    Ogan

  • Does anyone know how to turn off this setting when your phone is at a certain angle turns on without you pressing the button side feed or House? Please if you know tell me!

    Does anyone know how to turn off this setting when your phone is at a certain angle turns on without you pressing the button side feed or House? Please if you know tell me!

    Settings > display and brightness > raise to Wake

  • How long does take to set up the date and time

    How long does take to set up the date and time

    Less than a minute.

    Settings > general > time zone > set automatically

    If this does not work, try the help in this support article > If your Apple TV will stop to display date and time on startup - Apple Support

  • While creating a slide show with pictures, can you assign music to a specific set of photos? I would use 5 different pieces of music for every 5 parts of my slide show.

    While creating a slide show with pictures, can you assign music to a specific set of photos? I would use 5 different pieces of music for every 5 parts of my slide show.

    No, you can't.  One solution is to create 5 different slideshows and export them to the office where you can bring together them in a single quicktime movie file and use it.

    If you have a copy of iMovie 6 HD, it can be hacked to work with El Capitan. With it you can assign exactly music groups of slides in the slide show:

  • How can I change the setting on my Apple to change the settings for automatic renewal at normal setting

    How can I change the setting on my Apple to change the settings for automatic renewal at normal setting

    I get a fresh fresh message on my credit card and I need to stop this setting automatic renewal for apple applications.

    If you mean cancel the renewal auto-renewal subscription and then follow these instructions: view, change or cancel your subscription - Apple Support

    (I asked for your message to be moved to the forum of the iTunes Store, where you have posted is for questions about the iTunes U app.)

  • How to find a specific voice memo file in the backup from my iPhone to my Mac? I know where to find the backup, but not how to recover specific files. Thank you.

    How to find a specific voice memo file in the backup from my iPhone to my Mac? I know where to find the backup, but not how to recover specific files. Thank you.

    You can't look "inside" a backup. Just use iTunes to sync with your iPhone, then you'll see a separate category for voice memos in the sidebar.

  • BIOS WMI question - how to disable a specific device in the boot list?

    Hello

    I have question for WMI, how to disable a specific device in the boot list? I found "BootODD" "BootFDD" etc. in the documentation, but I have no idea how to use. And here my question.

    Documentation:
    http://APS2.toshiba-tro.de/KB0/TSB3803HR0000R01_TOSHIBA_BIOS_WMI_Interface_Guide_-_13_Rev_1.1.PDF

    Do you know that pdf is a guide for authors of vb script?
    I don't think running a script against the BIOS is a good way to learn.

    In any case, here is a link to download Microsoft Scriptomatic which is a very good place to learn [http://www.microsoft.com/en-us/download/details.aspx?id=12028]

    Also, try a search for examples of WMI scripts there necessarily one who does your job.

    Good luck

  • Hello! Pro iPad comes with a specific set of fonts in Keynote? Or is it possible ad fonts, for example with the font book?

    Hello! Pro iPad comes with a specific set of fonts in Keynote? Or is it possible ad fonts, for example with the font book?

    This is a list of the fonts installed in iOS 7, as far as I know, it has not changed for iOS 9.

    iOS 7: List fonts - Apple Support

    Fonts are embedded in the iOS, a few Apps will bring new fonts when loading the application. Keynote will use those that are pre-loaded with iOS. There are third-party fonts that can be installed, but you will need to check that they are working with the speech of the seller of these fonts.

  • How can I remove specific MacBookPro (s) and PC which have been taken by a thief (s) numere?

    How can I remove specific MacBookPro (s) and PC which have been taken by a thief (s) numere?

    I don't see an option in iTunes to reauthorize a MacBookPro (s) and PC numere specific.

    It has an option to reauthorize all but, when I click on it it gives the following message:

    Failed to remove permission

    You can only Deauthorize all computers once a year. You must wait until 24 February 2016 before you can remove all your computers again. If you encounter problems computers, please contact Support Apple customer visiting http://www.apple.com/support/itunes/store/

    I suspect that this may be a security risk in iTunes, Apple/iTunes is not allowing customers to withdraw the authorisation of systems that have been stolen by thieves.

    Unless you are able to connect to remote computers, there is no way to do. If you wish, click here and ask the staff of the iTunes Store to perform a second remove all.

    (138421)

  • How to change the language setting in Microsoft word to generate a list of references?

    How to change the language setting in Microsoft word to generate a list of references?

    I use a Mac with the (traditional) Chinese language setting, and I need the reference generatinga list for my document in English!

    If you don't get an answer here, try the forums devoted entirely to problems with MS applications:

    http://answers.Microsoft.com/en-us/Mac/forum/MacWord

  • How can I change this setting to display on a TV and laptop?

    original title: when I connect my laptop to the tv, I opted for the display on the tv only tobe.  Now, I want to display my computer and the TV. How do I change this setting?

    I used the vga connection to connect the entire computer and television.  The software asked where I wanted to display

    On the computer and TV

    or

    just on the tv

    I chose only on tv.  I don't like this setting, and I want to restore the computer and television.  How can I do this?

    Hi Lorne-MaureenCodner,

    Follow the steps below to view a video on the computer and the TV at the same time:
    1. Right-click on an empty space on your desktop
    2. Select Customize
    3. Select display
    4. Select change display settings
    5. Select duplicate these views of several drop-down screens
    6. Click on apply and OK
    Let is know if this helps.
  • How can I make a set of my pre-installed Windows XP system recovery disks?

    How can I make a set of recovery discs from my Windows XP pre-installed system supplied with the machine? It works ok (so not the repair feature). It there is just so much junk from test facilities in the background that I want to do a complete wipe-out and re - install, but I don't have any original Windows XP disks.

    The process to create recovery disks is different according to the model of the computer.

    Check your manual for instructions or see website of support from the manufacturer for instructions.

  • How can I create a set of installation / recovery discs?

    Right now, my computer works well with Windows XP, SP3.  How can I create a set of installation / recovery discs?

    I have the original series OEM number upwards, but have more discs - do I need something else before I start?  Can I make my own computer?

    Right now, my computer works well with Windows XP, SP3.  How can I create a set of installation / recovery discs?

    I have the original series OEM number upwards, but have more discs - do I need something else before I start?  Can I make my own computer?

    http://www.ehow.com/how_4797051_burn-Windows-XP-recovery-disc.html

Maybe you are looking for