lingering text, please help!

I am to convert a powerpoint presentation into a web page using flash. Here's the url:

http://www.elanwebservices.com/clinical_discussion/presentation.html

I converted text on each image to a clip, so I can stack on top of the images. To prevent the text and images displayed on other slides, I put all the images and video clips of text in 0 visibility on each image, with the exception of those appearing on a particular frame. For example, on section 4:

container_mc2._visible = 0;
container_mc4._visible = 0;
container_mc6._visible = 0;
container_mc7._visible = 0;
container_mc8._visible = 0;
container_mc9._visible = 0;
container_mc10._visible = 0;
slide2text_mc._visible = 0;
slide3text_mc._visible = 0;
slide5text_mc._visible = 0;
slide6text_mc._visible = 0;
slide7text_mc._visible = 0;
slide11text_mc._visible = 0;

To see all the ActionScript on frame 4, I glued on the html page (see the page source) in case you want to watch the whole ActionScript code.

Here's the problem: you can go forward, or you can click a back button. However, if you start by clicking on randomly, the text sticks from one image to the other and then from text to other frames begin to pile up and there is a big mess. I'm running out of ideas of how can I make sure that text doesn't one image to another when the buttons are clicked randomly.

I'd greatly appreciate your contribution!

Thank you!

John

There are no objects within a framework that do not need to be there. However, which shows my inexperience, for some reason a object under 4 will appear in the previous images if you click the back button. I do not understand why an object in one keyframe appears in another keyframe. One of these days I'll understand it, but that's why I updated all objects visibility 0 if it does not belong to a particular frame.

I decided to do the thing the more sensible and just incorporate the compass image and that should take care of the problem.

In any case, thanks for your comments. And if you see me failed even once, I hope that will help you again.

Tags: Adobe Animate

Similar Questions

  • I'm setting up a website, but I have a problem: I need a scrolling text box that can contain images and text please help?

    I create a flash site, but I need a text box or something else that can contain text and images. Help, please?

    You can use a scrollpane component. Simply create a movieclip with some content you want scrolling, set the ID of this movieclip binding and set the contentPath of the scollpane to this connection ID.

  • BlackBerry Smartphones cont enter email or texts please help!

    Hi, im abit new to BlackBerry and phone was doing well, this afternoon, I can not get into my emails or text messages, I can click on the icon for the two but so it's like it has frozen on me, and I have to press the button red power of appeal to get the icon! not sure if I've done something, but been trying all afternoon and no luck, if anyone can help me I would be very grateful.

    Thank you very much

    Hi and welcome to the forums!

    Try a traction battery (hard reset) as a first step.
    Thank you

    Bifocals

    KB02141 How to reset a BlackBerry smartphone

    No data will be lost when you do the following: remove the battery while the device is activated.
    Remplacer replace after one minute, let the device reboot 1-3 min, see if the problem is corrected.

  • BlackBerry Smartphones Can not click on the application of the texts, please help... (a description of more inside)

    OK, I had my phone for over a month now.  It was perfectly fine.  I had no problem at all.  Today, while I have to send text Messages to friends, I check my phone to try to open the texts that were waiting for me, and it wouldn't let me open the app.  I checked to see if it was the ball, but other applications open except for the yahoo mail app. I can text even if I pick up the phone on the sleep of protection while it vibrates or I can send texts through my contact list, but I still can't look at the texts that are pending.  I now have 10 waiting on me... can someone help me with this...

    First download and install from here Office Manager (without Media Manager 5.0 is recommended): https://www.blackberry.com/Downloads/entry.do?code=A8BAA56554F96369AB93E4F3BB068C22

    Then download and install the software from here: http://na.blackberry.com/eng/support/downloads/download_sites.jsp

    You will be able to check the latest version of the OS by going to Options | Everything. The latest version of AT & TBold is 4.6.0.297. So if your version of operating system is less than that, then you'll be upgrading the operating system.

    Then try to reload the operating system by connecting the device to your computer, open the Desktop Manager, then go to the Application Loader. This will open a wizard who travels to reload the operating system on your device. More detailed instructions can be found here:
    http://CrackBerry.com/BlackBerry-101-How-install-or-upgrade-new-rim-operating-system-OS

  • Alignment problem Arabic text - please help!

    I have five text fields each contains some characters and numbers ARABS. I need concat all these data and fill in one field.

    When I use concat, the positioning of several characters are displaced. Can't find the reason or a fix.

    The form is attached to this link:

    http://groups.Google.com/group/LiveCycle/Web/Arabic%20format%20issue.PDF

    Any help is very appreciated.

    Nith

    Hi Nith,

    In the first post, the sequence of the channels was not correct. I think that TextField4 and TextField5 have been exchanged around.

    In your screenshot, the sequence is in good order, but reading from right to left. I would have thought that it was OK for the locale.

    Maybe try TextField1 TextField5, TextField4,..., the concatenation.

    Niall

  • Centering the strangeness of text - please help!

    Hello

    Please check out my new site: http://www.catherinemix.com

    It's cool and I am happy with it, but there is still a bug I would like to work:

    Notice, when you click on a thumbnail and display an image enlarged, that descriptive information at the bottom of the screen trends often to the left a bit. I have no idea why this is happening. Here is the code involved:

    titleText = new TextField();
    titleText.autoSize = TextFieldAutoSize.CENTER;

    var ttFormat:TextFormat = new TextFormat();
    ttFormat.color = 0xFFFFFF;
    ttFormat.size = 18;
    ttFormat.font = "Baskerville Old Face";

    textSprite = new Sprite();
    textSprite.addChild (titleText);
    (parent as MovieClip) .addChild (textSprite);
    var titleXML:XML = new XML (titleURL.data);

    titleText.text = titleXML.toXMLString ();
    titleText.setTextFormat (ttFormat);
    textSprite.y = 570;
    textSprite.x = ((stage.stageWidth / 2) - titleText.length);
    trace ("titleText.length =" + titleText.length);
    trace ("titleText.x =" + titleText.x);
    textSprite.mouseEnabled = false;
    titleText.mouseEnabled = false;

    I do not know... Someone sees a flaw in my thinking / code?

    THX and be well!

    Graham

    You're uusing the length property of TextField under your plan of centering.  This value represents the number of characters in the text field, not the physical length of it.  You might do better rather to use the textWidth property.  Or you might be able to use the width property of textSprite.  To Center, it would be half of the stage width minus 1 the half-width of textfield.

    As you try to apply a text format to the textfield, you can consider using a textfield planted on the wise rather than dynamically create permanently.  This way you can incorporate the police so that the planned police is perceived by the viewer and not apply in some their system default - mine appears as Times New Roman.  Having the textfield already there (to the width of the stage) will allow accurate centering.

  • Stretched Menu text - Please HELP! -Adobe Muse

    Homepage

    Work in Adobe Muse. In 1200, everything is great, but if you shrink the window at different breakpoints my type of menu is tense. How can I fix this to happen? I tried everything thanks for any help, I really appreciate this community.

    Have you watched the video on the creation of breakpoints?

    Create a sensitive site with Adobe Muse | Adobe Muse CC tutorials

    Watch this video and more on the site, they teach you about correctly using breakpoints and the addition of sensitive menu mobile.

  • I can't receive text messages only send it please help me

    I can't receive text messages on my iPhone 6s only send it please help me

    Hi Koliesnichenko,

    Welcome to Apple Support communities.

    As I understand it, there is a problem receiving SMS messages with your iPhone 6 s. try to take a look at the article below the link that provides a lot of information and troubleshooting tips that may help you resolve this problem.

    If you cannot send or receive messages on your iPhone, iPad or iPod touch - Apple Support

    So long.

  • Not able to be seen on top of an image with no text wrapping, prepared text box to be on the top, on the top layer and works fine with all other images with text is near or above the image in this document, PLEASE HELP

    I have an InDesign Document with a handful of images and text on the top or near the images. This should be so simple, but for some reason, I keep having this problem. There is no build-up on the given word and I can't place any text on one of the images. All the settings for all of the images in this scenario are the same. I'm fine with everything else but this one...

    I don't see any boxes hidden or anything else for that matter. I've recreated text boxes and still have the same problem it appears then disappears or I can get only part of the Word visible on the image, then a + sign comes... It should work please help. I tried to recrete this particular image and word a handful of times its just not the text box woking sometimes added a sign which does no sense, I tried a different text alignment so +... Yes indeed HELP Please thank you I can send a screen if it helps

    Have you tried select the text block, and then go to object > text frame Options and checking the checkbox ignore text dressed ?

  • Please HELP ME.suddenly I care, all the text is converted into strange shapes. PLEASE HELP ME

    Today, all of a sudden my text in ae had real crazy, ALL the text in the ae is either typed as strange shapes, btw my version is a former ae cs3 is on but it never gave me any problems, I don't know how it happened, I cleared the cache and still notin happened.ive attached an image where I typed the entire alphabet without space... ND is became that... PLEASE HELP ME1.JPG

    Well, you have a pt 40 35 text px...

    Mylenium

  • Please help w / export PDF accessible text

    Hello

    I'm trying to export a pdf file to text accessible for the purpose of import in excellent for formatting the data in a CSV file for routing software. When I export the PDF accessible text file, it is saved as an empty file? I'm not sure what I'm doing wrong, but please help if anyone can. The data are much too to insert manually in excel.

    Thank you

    Josh

    Hi Joshua.

    You probably have a page that requires to be captured. I wrote a tutorial on how to perform this task in Acrobat ms:

    https://acrobatusers.com/tutorials/turn-paper-into-searchable-PDFs

    Donna.

  • Adobe flash CS6 crashes when you use the text or Word of edition tool all the time... Please help!

    Adobe flash CS6 crashes when you use the text or Word of edition tool all the time... Please help!

    No one can tell you anything without the proper system or other technical details info. The standard answer with all the problems of text is quite simply, you have a "bad policy" on your system and need to get rid of him.

    Mylenium

  • Drag and Drop | Text | Submit | Help, please

    Hello. I really need help. I THANK YOU in advance.

    I'm building a contact with voting of profession flash with AS3. The feature will allow users to drag and drop choices OR add their own allow them to present their TOP 5 choices.

    PROBLEM:

    1 drag and move text is not submitted when it is moved to the editable text field.

    HOW CAN I DO this to ALLOW for DRAG AND drop the ITEMS to BE SUBMITTED or TEXT THAT IS ENTERED MANUALLY.

    This can be seen HERE: http://pttdt.com/winnipegcafes.php

    AS3 code so far:

    / * Drag and Drop

    Makes the instance for the specified symbol with drag and drop furniture.

    */

    choice_1.buttonMode = true;

    choice_1.mouseChildren = false;

    choice_1.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag);

    function fl_ClickToDrag(event:MouseEvent):void

    {

    choice_1.startDrag ();

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop);

    function fl_ReleaseToDrop(event:MouseEvent):void

    {

    choice_1.stopDrag ();

    }

    / * Drag and Drop

    Makes the instance for the specified symbol with drag and drop furniture.

    */

    choice_2.buttonMode = true;

    choice_2.mouseChildren = false;

    choice_2.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag_2);

    function fl_ClickToDrag_2(event:MouseEvent):void

    {

    choice_2.startDrag ();

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop_2);

    function fl_ReleaseToDrop_2(event:MouseEvent):void

    {

    choice_2.stopDrag ();

    }

    / * Drag and Drop

    Makes the instance for the specified symbol with drag and drop furniture.

    */

    choice_3.buttonMode = true;

    choice_3.mouseChildren = false;

    choice_3.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag_3);

    function fl_ClickToDrag_3(event:MouseEvent):void

    {

    choice_3.startDrag ();

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop_3);

    function fl_ReleaseToDrop_3(event:MouseEvent):void

    {

    choice_3.stopDrag ();

    }

    / * Drag and Drop

    Makes the instance for the specified symbol with drag and drop furniture.

    */

    choice_4.buttonMode = true;

    choice_4.mouseChildren = false;

    choice_4.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag_4);

    function fl_ClickToDrag_4(event:MouseEvent):void

    {

    choice_4.startDrag ();

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop_4);

    function fl_ReleaseToDrop_4(event:MouseEvent):void

    {

    choice_4.stopDrag ();

    }

    / * Drag and Drop

    Makes the instance for the specified symbol with drag and drop furniture.

    */

    choice_5.buttonMode = true;

    choice_5.mouseChildren = false;

    choice_5.addEventListener (MouseEvent.MOUSE_DOWN, fl_ClickToDrag_5);

    function fl_ClickToDrag_5(event:MouseEvent):void

    {

    choice_5.startDrag ();

    }

    stage.addEventListener (MouseEvent.MOUSE_UP, fl_ReleaseToDrop_5);

    function fl_ReleaseToDrop_5(event:MouseEvent):void

    {

    choice_5.stopDrag ();

    }

    / * Event mouseclick

    By clicking on the instance for the specified symbol performs a function in which you can add your own custom code.

    Directions for use:

    1. Add your custom code on a new line after the line that says "/ / Start your code custom" below.

    The code runs when the user clicks the symbol instance.

    */

    send_btn.addEventListener (MouseEvent.CLICK, fl_MouseClickHandler);

    function fl_MouseClickHandler(event:MouseEvent):void

    {

    / / Start your code custom

    / / This code example displays the words 'Mouse clicked' in the output panel.

    trace (box_1.text);

    trace (box_2.text);

    trace (box_3.text);

    trace (box_4.text);

    trace (box_5.text);

    trace (theName.text);

    trace (theEmail.text);

    / / End of your code custom

    }

    Please HELP

    Your code appears to only drag - move and nothing regarding the assignment, whatever it is, when an item is deleted.  So your problem is that you did not do anything to do what you say doesn't happen.

  • The space bar has stopped working in text blocks. Iendupwithsentaceslikethis - I have reset the mac, but it is always the case please help!

    Iendupwithsentaceslikethis - I have reset the mac, but it is always the case please help!

    Latest version CC

    Richard

    Solved the problem - I just changed a Chinese document. I copied the milling guide in a new document.

  • I can not use the command share in safari, mail, notes, etc. since I updated to El Capitan (10.11.5). No way to solve it. Please help me.

    I can not use the command share in safari, mail, notes, etc. since I updated to El Capitan (10.11.5). No way to solve it. Please help me.

    There is a problem with your installation of OS X. The easiest way, but not the fastest way to fix it is to reinstall the operating system. Unless you are in a hurry or have measured access to the network, it is what I suggest, especially since I don't know if there are any problems with the installation. Please backup all data before reinstalling. You won't need the backup unless something is wrong.

    The below, advanced shortcut if it works, can save you some downtime (and the cost of a download of several gigabyte, if necessary.)

    1 back up all data.

    2. disconnect all external storage devices.

    3. start in recovery mode. Select a language, if you are prompted. The OS X Utilities appears. One of the options is to install OS X. This is not what you do.

    4. This step is only necessary if you use FileVault 2. If you don't know what's FileVault, you use it. Go to the next step. Otherwise, launch utility disk, then select the icon for the volume FileVault ("Macintosh HD", unless you have given it a different name.) It will be nested under another icon of the disc. Select open in the file menu and enter your login password when you are prompted. Then quit disk utility must be returned to the main screen.

    5. Select get online help. Safari will launch. While in recovery, you will have no access to your Favorites, but you won't need them. Load this web page.

    6. triple - click anywhere in the line below to select this option:

    chflags -R norestricted /V*/*/S*/*/Caches

    Copy the selected text in the Clipboard by pressing Control-C key combination.

    7. Quit Safari. You go back to the OS X Utilities screen.

    In the menu bar, select

    Utilities ▹ Terminal

    Launch the Terminal application. Paste in the Terminal window by pressing the command-V key combination.

    Wait for a new line ending with a number sign (#) to appear. Quit the Terminal must be returned to the main screen.

    8. Select

    ▹ Restart 

    in the menu bar.

    9. This step must be performed after the restart, and while you are logged as administrator, not in recovery mode. If you have only one user account, you are the administrator.

    Select and copy this line as in step 6:

    sudo /usr/libexec/xpchelper --rebuild-cache

    Paste in a Terminal as before. You will be asked for your login password. Nothing displayed when you type. Type carefully, and then press return. If you do not have a password, you will need to configure one before you can run the command. You can get a warning to be careful. Confirm. You don't need to display the warning.

    If you see a message that your user name "is not in the sudoers file", then you have not logged as an administrator. Log in as one and repeat this step. You don't have to repeat the previous steps.

    Wait for a new line ending with a dollar sign ($) below what you entered.

    10. make as in step 9 with this line:

    sudo /usr/libexec/*/app_sandbox_cache_builder --rebuild-cache

    You can then quit Terminal.

Maybe you are looking for