Flash 8 Help please

Hellow fellas, I am having solving a flash 8 problem with a
new website I am making. I have created a small movie that animates
my logo across the front of a flash header. The movie is complete
and saved to the computer but when I preview it in my browser it
continues to loop over and over with no end, and my navigation
buttons roll as though the mouse is passing over them continually
as well. This only happens when previewed in my browser and not in
FLash 8 when I animate it there.
If any of you have experienced this or have insight please
post it here. PS this is my first attempt at making a website but
am learning quickly. So go slow if you dont mind.

I have checked the movie and I have a layer that has the stop
action script that was recommended to me with no change. The file
will run fine when I press play on the player but will loop when I
use the test movie option. NOW when I use the test movie option its
window has the option of debugging the movie and here is the
report, hope this helps;
Level #0: Frame=90
Movie Clip: Frame=1 Target="_level0.instance244"
Shape:
Movie Clip: Frame=1 Target="_level0.instance245"
Shape:
Movie Clip: Frame=1 Target="_level0.instance239"
Shape:
Movie Clip: Frame=26 Target="_level0.menu"
Shape: Mask
Movie Clip: Frame=4 Target="_level0.menu.butt1" Label="over"
Movie Clip: Frame=2 Target="_level0.menu.butt1.ti2"
Text:
Movie Clip: Frame=2 Target="_level0.menu.butt1.ti1"
Text:
Movie Clip: Frame=1 Target="_level0.menu.butt1.instance246"
Shape:
Movie Clip: Frame=2 Target="_level0.menu.butt1.ti4"
Text:
Movie Clip: Frame=2 Target="_level0.menu.butt1.ti3"
Text:
Button: Target="_level0.menu.butt1.instance247"
Movie Clip: Frame=1 Target="_level0.menu.butt2"
Movie Clip: Frame=3 Target="_level0.menu.butt2.ti2"
Text:
Movie Clip: Frame=3 Target="_level0.menu.butt2.ti1"
Text:
Movie Clip: Frame=1 Target="_level0.menu.butt2.instance254"
Shape:
Movie Clip: Frame=3 Target="_level0.menu.butt2.ti4"
Text:
Movie Clip: Frame=3 Target="_level0.menu.butt2.ti3"
Text:
Button: Target="_level0.menu.butt2.instance255"
Movie Clip: Frame=20 Target="_level0.menu.butt3" Label="out"
Movie Clip: Frame=4 Target="_level0.menu.butt3.ti2"
Text:
Movie Clip: Frame=4 Target="_level0.menu.butt3.ti1"
Text:
Shape: Mask
Movie Clip: Frame=1 Target="_level0.menu.butt3.instance256"
Shape:
Movie Clip: Frame=4 Target="_level0.menu.butt3.ti4"
Text:
Movie Clip: Frame=4 Target="_level0.menu.butt3.ti3"
Text:
Button: Target="_level0.menu.butt3.instance257"
Movie Clip: Frame=17 Target="_level0.menu.butt4" Label="out"
Movie Clip: Frame=1 Target="_level0.menu.butt4.ti2"
Text:
Movie Clip: Frame=1 Target="_level0.menu.butt4.ti1"
Text:
Movie Clip: Frame=1 Target="_level0.menu.butt4.instance258"
Shape:
Movie Clip: Frame=1 Target="_level0.menu.butt4.ti4"
Text:
Movie Clip: Frame=1 Target="_level0.menu.butt4.ti3"
Text:
Button: Target="_level0.menu.butt4.instance259"
Shape:
Movie Clip: Frame=1 Target="_level0.instance240"
Shape:
Movie Clip: Frame=26 Target="_level0.instance248"
Shape:
Movie Clip: Frame=26 Target="_level0.instance249"
Shape:
Shape: Mask
Movie Clip: Frame=26 Target="_level0.instance250"
Movie Clip: Frame=26
Target="_level0.instance250.instance251"
Tween Shape: Mask
Movie Clip: Frame=1
Target="_level0.instance250.instance251.instance252"
Shape:
Tween Shape:
Shape: Mask
Movie Clip: Frame=26 Target="_level0.instance253"

Similar Messages

  • "no access to the digital certificate" - Trying to export my first iOS app from Flash - Help please

    Hello
    I'm trying to export my first iOS app from flash to my desktop / on the device (Flash Pro CC, Iphone5)
    I followed the instructions on the adobe website to build an air app for iOS but on the last step it
    doesn't export the app.
    What I've done so far:
    - Apple developer account
    - creating the certificate + convert it to .p12
    - app ID / Name etc.
    - creating the provisioning profile from apple
    - iOS Air app in flash (Only Text "Hello world" with a tween)
    Now i have to load the certificates into Flash & enter a password (is it the password that
    i entered in the certificate or from my developer account/ Apple ID password? Both didn't work at the end)
    When i klick on publish in the last step than it loads a while but then i get the Error:
    "no access to the digital certificate"
    What is wrong? Can you help me please.

    Also, I should say, when I go into my phone on the computer and try to install an app, I get this message:
    Unable to start operation. Installer is already in use.
    Any ideas

  • Passing variable from php into flash, help please

    Here are what I'm having:
    <?PHP
    $testVal = "This is a test";
    $test = urlencode($testVal);
    $out = "test=". $testVal;
    echo $out;
    ?>
    // and this is my flash file
    function getData() {
    // Prepare request
    var urlReq:URLRequest=new URLRequest("http://localhost/test.php");
    urlReq.method=URLRequestMethod.GET;
    var loader:URLLoader = new URLLoader();
    loader.dataFormat=URLLoaderDataFormat.VARIABLES;
    loader.addEventListener(Event.COMPLETE, completeHandler);
    loader.load(urlReq);
    function completeHandler(evt:Event) {
    var vars:URLVariables = URLVariables(evt.target.data);
    trace(" TEST = ", vars.test);
    trace(" TEST = ", unescape(vars.toString()));
    // and below is the ouput
    TEST = undefined
    TEST = test=This is a test
    I've tried with several different ways to get ONLY the value of the variable - that means I only want to have "This is a test" returned, but I either got "undefined" or the whole thing "test=This is a test", instead.
    I'm new to Flash and PHP. Please help.
    Thanks

    There's no need to write any fake variables out, Flash does not need that. OK, here's a simple PHP script like yours - I called it test.php
    <?PHP
         $testVal = "This is a test";
         $out = "test=". $testVal;
         echo $out;
    ?>
    And the AS to call it:
    var myLoader:URLLoader = new URLLoader();
    myLoader.dataFormat = URLLoaderDataFormat.VARIABLES;
    myLoader.load(new URLRequest("http://www.mydomain.com/test.php"));
    myLoader.addEventListener(Event.COMPLETE, dataLoaded, false, 0, true);
    function dataLoaded(e:Event){  
        trace( e.target.data.test);
    You will see 'This is a test' traced to the output window.
    HTH

  • My Mac Book Pro was really slow at everything and would kick me out of my photos every time i got on them. now it won't even allow me to log on. i put my password in and the screen will flash white and go back to the login page. HELP please...

    My Mac Book Pro was really slow at everything and would kick me out of my photos every time i got on them. now it won't even allow me to log on. i put my password in and the screen will flash white and go back to the login page. HELP please...

    There is nothing wrong with your Dell, it will work fine with any MacbookPro. I have been using Dell displays for over 12 years with many different Mac models. I have two 21" Ultra Sharp displays working side by side to design a Keynote presentation right now.
    The issue your having is with the way Keynote  takes control of the video output to both displays, it sends the presentation signal to one and the presenter display to the other, this is set up in;
    Keynote preferences > Presenter display.
    If you want to show a wesite or another app on  either display,  use application switcher:
    press the the  command key on the keyboard, then the tab key; a row of applications will show what applications are running, choose which one you want to show. Use command  > tab to return to Keynote.

  • Can't Left Click in Flash Player Settings Panel - HELP PLEASE

    Hi and thanks for taking the time to read this. Believe me it is a fraction of the time I have wasted trying to resolve this issue.
    Basic problem is:
    I am trying to stream to Ustream but since downloading AFP11 for my Windows PC when I open the Flash Player Settings panel i can't left click on anything. It is set to deny but I can't click allow, or close or any of the icons.
    Right click does work.
    I have followed countless instructions in other forums from other posts that have encountered the problem on Mac and older versions of AFP but as yet none of the solutions have proven succesul.
    I have tried all of the following but nothing has resolved the problem.
    1. Uninstall and reinstall Adobe Flash Player (although this is impossible using Google Chrome) and restart computer.
    2. Unistall flash and install older version. (made no difference on Google Chrome and on IE8 had no flash whatsoever).
    5. Uninstall older AFP and reinstall AFP11.
    4. Uninstall Google Chrome and restart computer.
    5. Uninstall QuickTime (I got this off http://www.techsupportforum.com/forums/f10/flash-player-not-working-properly-please-help-1 61552.html) and restart computer
    6. Last resort use keyboard shortcuts such as tab, enter and ctrl+arrows. This either didn't highlight the panel at all or if it did I still couln't select allow, or close the panel itself so was no help either.
    So now I'm back to square one.
    Now here's a really bizarre thing... I am using a shared laptop computer and if I use my colleagues profile where she hasn't updated her AFP to Adobe Flash Player 11 the settings panel is responding just fine. IT'S THE SAME PC!
    I know I am alone with this problem but someone out there has an answer. If you can help please let me know how to fix this problem where I can't left click in the Adobe Flash Player settings panel.and I will be eternily grateful.
    many thanks
    nik

    OK the amount I hate myself right now is more than a fat guy's self loathing for raiding the fridge at 2am for Pizza but less than an armed robber who's accidentally shot a pregnant woman in the stomach during a shootout. but not much less.
    So after I had miraculously got the Flash Player Setting Panel to work again, (after deleting QuickTime and leaving the window open for abut an hour it just started working again) I then got enticed into downloading the ustream producer software.
    While downloading it informed me that it would only work with QuickTime.
    Stupidly and Optimistically hoping it would remove the need to use flash player altogether I downloaded and installed both.
    I then discovered to my horror that Ustream producer is not a patch on Vidbalster and that it was not capable of delivering the same level of broadcast.
    I then opened the flash player settings panel on ustream and... the problem has returned!
    This means I am 99% sure that QuickTime IS the cause of the problem so I have uninstalled QT off the PC. I have also uninstalled Ustream Producer.
    The thing is though, now no matter how many times I restart, or uninstall and reinstall Adobe, or Google Chrome, I am once again UNABLE TO LEFT CLICK IN THE FLASH PLAYER SETTINGS PANEL. AAAARRRRRGGGGHHHH!!!!
    What did I do? I fixed it and  f***ing broke it again!
    Now it properly will not come back to life! the problem is not solved and i urgently need help.
    Why does Adobe Flash Player Settings Panel and Apple QuickTime hate each other so much that they've got to ruin my life?
    Help forum PLEASE!
    Regards,
    nik

  • Color management issues with Flash CS3, please help?

    Hello everyone.
    I am having issues with color from a Jpeg image produced in Photoshop CS4
    after importing onto the stage in Flash CS3. The color in Flash changes the image to a lighter less saturated state. Yuk.
    Here is a link to a screen capture to show you what's happening (for a bigger view):
    http://www.rudytorres.com/color/weirdcolor.png
    As you can see the front image is the Photoshop image showing the sRGB color profile embedded but Flash (behind) changes that color.
    This client is quite picky and she will notice this difference.
    If any one can help, please.
    - Rudy
    P.S. It's a button somewhere, Right?

    Dougfly,
    Only an hour wasted? Lucky you. Color is an incredibly complex subject. First, forget matching anything to the small LCD on the back of your camera. That's there as a basic guide and is affected by the internal jpg algorithm of your camera.
    2nd, you're not really takeing a color photo with your digital camera, but three separate B&W images in a mosaic pattern, exposed thru separate red, green and blue filters. Actual color doesn't happen until that matrix is demosaiced in either your raw converter, or the in-camera processor (which relies heavily on camera settings, saturation, contrast, mode, etc.)
    Having said the above, you can still get very good, predictable results in your workflow. I have a few color management articles on my website that you might find very helpful. Check out the Introduction to Color Management and Monitor and Printer Profiling. In my opinion, a monitor calibration device is the minimum entry fee if you want decent color.
    http://www.dinagraphics.com/color_management.php
    Lou

  • I am trying to download a plug in called adobe flash player 10.1.102 and error shows up that says instalation encountered errors sign in under administraive privileges and try again and i dont understand what that is or what to do. help please!

    im tryin to down load this plugin like it keeps suggesting because none of the video clips or games of any sort is showing and it wont download. it keeps saying theres an error and i need to sign in under administrative privileges but it doesnt give me that option. i dont understand what to do> help please!!!

    Follow the instructions below. Note the part about "Windows 7 and Vista".
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update the [[Managing the Flash plugin|Flash]] plugin''' to the latest version.
    #*Download and SAVE to your Desktop so you can find the installer later
    #*If you do not have the current version, click on the "Player Download Center" link on the "Download..." page below
    #*After download is complete, exit Firefox
    #*Click on the installer you just downloaded and install
    #**Windows 7 and Vista: may need to right-click the installer and choose "Run as Administrator"
    #*Start Firefox and check your version again or test the installation by going back to the download link below
    #*Download and information: http://www.adobe.com/software/flash/about/
    #**Use Firefox to go to the above site to update the Firefox plugin (will also install plugin for most other browsers; except IE)
    #**Use IE to go to the above site to update the IE ActiveX
    <br />
    The information submitted with your question indicates that you have out of date plugins with known security and stability issues that should be updated. To see the plugins submitted with your question, click "More system details..." to the right of your original question post.
    *Adobe Shockwave for Director Netscape plug-in, version 11.0
    *Adobe PDF Plug-In For Firefox and Netscape
    **New Adobe Reader X (version 10) with Protected Mode just released 2010-11-19
    **See: http://www.securityweek.com/adobe-releases-acrobat-reader-x-protected-mode
    #'''Check your plugin versions''': http://www.mozilla.com/en-US/plugincheck/
    #*'''Note: plugin check page does not have information on all plugin versions'''
    #'''Update Shockwave for Director'''
    #*NOTE: this is not the same as Shockwave Flash; this installs the Shockwave Player.
    #*Use Firefox to download and SAVE the installer to your hard drive from the link in the article below (Desktop is a good place so you can find it).
    #*When the download is complete, exit Firefox (File > Exit)
    #*locate and double-click in the installer you just downloaded, let the install complete.
    #*Restart Firefox and check your plugins again.
    #*'''<u>Download link and more information</u>''': http://support.mozilla.com/en-US/kb/Using+the+Shockwave+plugin+with+Firefox
    #'''Update Adobe Reader (PDF plugin):'''
    #*From within your existing Adobe Reader ('''<u>if you have it already installed</u>'''):
    #**Open the Adobe Reader program from your Programs list
    #**Click Help > Check for Updates
    #**Follow the prompts for updating
    #**If this method works for you, skip the "Download complete installer" section below and proceed to "After the installation" below
    #*Download complete installer ('''if you do <u>NOT</u> have Adobe Reader installed'''):
    #**Use the links below to avoid getting the troublesome "getplus" Adobe Download Manager and other "extras" you may not want
    #**Use Firefox to download and SAVE the installer to your hard drive from the appropriate link below
    #**Click "Save to File"; save to your Desktop (so you can find it)
    #**After download completes, close Firefox
    #**Click the installer you just downloaded and allow the install to continue
    #***Note: Vista and Win7 users may need to right-click the installer and choose "Run as Administrator"
    #**'''<u>Download link</u>''': ftp://ftp.adobe.com/pub/adobe/reader/
    #***Choose your OS
    #***Choose the latest #.x version (example 9.x, for version 9)
    #***Choose the highest number version listed
    #****NOTE: 10.x is the new Adobe Reader X (Windows and Mac only as of this posting)
    #***Choose your language
    #***Download the file
    #***Windows: choose the .exe file; Mac: choose the .dmg file
    #*Using either of the links below will force you to install the "getPlus" Adobe Download Manager. Also be sure to uncheck the McAfee Scanner if you do not want the link forcibly installed on your desktop
    #**''<u>Also see Download link</u>''': http://get.adobe.com/reader/otherversions/
    #**Also see: https://support.mozilla.com/en-US/kb/Using+the+Adobe+Reader+plugin+with+Firefox (do not use the link on this page for downloading; you may get the troublesome "getplus" Adobe Download Manager (Adobe DLM) and other "extras")
    #*After the installation, start Firefox and check your version again.

  • Flash audio - PLEASE HELP!

    Dreamweaver has included in its program the best looking
    flash players I have seen.
    When you go to Insert ---> Media ---> Flash
    Video........that's what I am refering to
    But this is for adding video to your site using the player
    designs provided in Dreamweaver
    Is is possible to use this same method and player syles, but
    for Audio files instead of video - SWF, MP3, .... any audio files
    Please, I really need to add audio to my site
    I tried Swish Jukebox but apparently you cannot add the same
    player style more than once on the same page (which is strange)
    If there is a way to use the Flash Video insert feature for
    audio files?
    I would greatly appreciate the help please
    Any ideas?
    Thanks for your time

    http://musicplayer.sourceforge.net/
    I found that I had to go outside to get a Flash audio player,
    and used the one found at the link above.
    See
    http://www.tfrog93.com/audio/audio.htm
    for the live example, working through Dreamweaver MX2004.
    dwight

  • I can't seem to play any videos on safari or the YouTube app, adobe flash player won't download and I don't know what to do? I need help please.

    Can I have help please?

    IOS device do not support Flash
    However Skyfire, Photon, iSwifter, Browse2Go and Puffin Web Browser will provide limited Flash capability

  • I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    I have the 10.7.4 and I cannot get the Flash Player ,, please help me.

    If you downloaded it, it's likely in your Downloads folder as a Disk Image .dmg. Just open it and intall Flash player and restart your browser. Everything should work.
    Clinton

  • Installing Reader or Flash player on Windows 7 and I get a blank command prompt screen that does nothing. Help please.

    Installing Reader or Flash player on Windows 7 and I get a blank command prompt screen that does nothing. Help please.

    Try using the offline installers.
    Adobe Reader: http://get.adobe.com/reader/enterprise/
    Flash Player for Internet Exporer - ActiveX
    Flash Player for Firefox - NPAPI

  • Hi, I have tried repetedly to install flash player on my mac mini with no luck..... help please !

    Hi, I have tried repetedly to install flash player on my mac mini with no luck..... help please !

    How to perform a "clean install" of Flash Player in Mac OS X

  • Just got firefox yesterday, can load Adobe Flash Player, please help

    Just got Firefox yesterday. This morn I tried to "Listen Live" or "Live Stream" from a radio station. It said I need to download Adobe Flash Player. It won't let me download it. Can you help please,
    Thank You

    This may not be a Firefox problem as such. It may well be that you do not have administrative rights to install FlashPlayer, or for some reason security software is causing a problem. Exactly what do you mean by ''It won't let me download it.'' possibly any error or warning messages you get will be meaningful; what are they ?
    See
    * [[Managing the Flash plugin]]
    Presumably you could use Internet Explorer, does that work with the radio stations ? <br/> note IR & Firefox are likely to need separate installs of flash Player, and certainly you will need to test each browser separately for flash Player functionality.

  • Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    Hi. I am not able to update the Adobe Flash Player on my MackBook Pro. The problem I am getting is a blank page for Step3. Can someone help please?

    If you already have an older version of Flash Player, open the Preference pane and select Check Now... under the Update portion under the General tab:
    You shouldn't have to install a new version from the website (I'm not even sure if you can) if you've already installed Flash Player.
    Clinton

  • Help please flash will not install.

    Hi tried all day to install flash on my first macbook. Tried everything. uninstalled, firewall is off, safari plug-ins enabled. Any help please?

    Thank you to Mike M for your post in Oct 2013. Followed it and it worked first time. What a waste of a day.

  • Time capsule has flashing orange light? Anyone help please?

    Time capsule has flashing orange light and iMac is saying 'backups delayed'? Anyone help please?

    Just do a reboot of the TC to start with.. followed by a full network restart.. ie with everything off.. power on in order.. modem.. TC.. clients with 2min gap.
    If that doesn't fix it.. you should do a reset of the TC and set it up again.
    Tell us more if you still have issues.
    Full network layout.
    OS you are running.
    Firmware on the TC.

Maybe you are looking for

  • Cannot Read Files off CD/DVD Drive

    I realize there are several similarly titled posts on this topic, but I have not found the problem I have.  Computer: Pavilion tx2000CTO.  O/S:  Vista Home Premium (all updates current).  Issue:  Some CD's and DVD's cannot be read completely.  I CAN

  • I am unable to clear history in iOS8

    I'm trying to clear history in Safari in iOS8 On my iPad, and the button just stays grayed out forever, never returning to blue.  Is there a way to make sure it's actually  working and is not just freezing?

  • How to put an icon to Jbutton with Jbuilder 5?

    I have tried to make a jbutton with icon on it, i create an image icon object and pass it to the jbutton.seticon method... When create the image icon, it need the path of the icon file, what is the relative path of image in jbuilder? (not absolute e.

  • Gift an App problem: can't pay with itunes credit!

    Hello, this morning i tried to gift an app to a friend of mine, i've put his email adress in the gift an app page but then itunes asked me to put a new payment option... the problem is that i have 13€ on my itunes account and the app costs only 0,79

  • Cannot import photos bc photos 'cannot be read'

    The photos are coming up when Lightroom opens but they cannot be imported bc they 'cannot be read'.  Some of these have previously been imported without any problems but none of them can be read now.  What do you think the problem is?