Cannot find framelabel Start in Scene 6

When i am running my program, this pops up in the output:
"Cannot find framelabel Start in Scene 6"
This is my code:
//The speed of the scroll movement.
var scrollSpeed:uint = 1;
//This adds two instances of the movie clip onto the stage.
var s1:ScrollBg = new ScrollBg();
var s2:ScrollBg = new ScrollBg();
addChild(s1);
addChild(s2);
//This positions the second movieclip next to the first one.
s1.x = 0;
s2.x = s1.width;
//Adds an event listener to the stage.
stage.addEventListener(Event.ENTER_FRAME, moveScroll);
//This function moves both the images to left. If the first and second
//images goes pass the left stage boundary then it gets moved to
//the other side of the stage.
function moveScroll(e:Event):void{
s1.x -= scrollSpeed; 
s2.x -= scrollSpeed; 
if(s1.x < -s1.width){
s1.x = s1.width;
}else if(s2.x < -s2.width){
s2.x = s2.width;
var isRight:Boolean=false
var isLeft:Boolean=false
var isUp:Boolean=false
var isDown:Boolean=false
var xspeed:Number=0
var yspeed:Number=0
var maxspeed:Number=8
var accel:Number=0.5
stage.addEventListener(KeyboardEvent.KEY_DOWN, downKey);
function downKey(event:KeyboardEvent){
if(event.keyCode==39){
isRight=true}
if(event.keyCode==37){
isLeft=true}
if(event.keyCode==38){
isUp=true}
if(event.keyCode==40){
isDown=true}
stage.addEventListener(KeyboardEvent.KEY_UP, upKey);
function upKey(event:KeyboardEvent){
if(event.keyCode==39){
isRight=false}
if(event.keyCode==37){
isLeft=false}
if(event.keyCode==38){
isUp=false}
if(event.keyCode==40){
isDown=false}
stage.addEventListener(Event.ENTER_FRAME, loop);
function loop(Event){
// if right is pressed and speed didnt hit the limit, increase speed
if(isRight==true && xspeed<maxspeed){xspeed+=2}
// if left is pressed and speed didnt hit the limit, increase speed (the other way)
if(isLeft==true && xspeed>-maxspeed){xspeed-=2}
// if speed is more than 0, decrease
if(xspeed>0){xspeed-=accel}
// if speed is less than 0, increase
if(xspeed<0){xspeed+=accel}
// just like x, but with y
if(isDown==true && yspeed<maxspeed){yspeed+=2}
if(isUp==true && yspeed>-maxspeed){yspeed-=2}
if(yspeed>0){yspeed-=accel}
if(yspeed<0){yspeed+=accel}
// apply speed to movieclip
mc.x+=xspeed
mc.y+=yspeed
// managing the walls
if(mc.x<30 && xspeed<0){mc.x=30}
if(mc.x>470 && xspeed>0){mc.x=470}
if(mc.y<30 && yspeed<0){mc.y=30}
if(mc.y>370 && yspeed>0){mc.y=370}
gotoAndPlay("Scene 6");
How do i fix this?

I do not see a line of code in your original code that calls for a frame labeled "Start"  If there is one, can you highlight where it is?  The only line I see involving Scene 6 is...
gotoAndPlay("Scene 6");
The correct usage of the gotoAndPlay function is: gotoAndPlay(frame, scene); where if you are not using scenes (which is better) you can limit it to be gotoAndPlay(frame).
So if you have a frame labeled "Start" in "Scene 6" then the correct command to get there will be...
gotoAndPlay("Start", "Scene 6");

Similar Messages

  • I keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get it when I either try to open it from the Start menu or from the desktop icon.

    I've just installed Firefox on my laptop and keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get this message whenever I either try to open it from the Start menu or from the desktop icon. I've never gotten it to work and even uninstalled it and then redownloaded it and still cannot get it to open. Any help would be greatly appreciated!!!!

    Are you installing from the official site? http://www.mozilla.com/firefox
    If you use Windows Explorer (My Computer) to check that path, is the Mozilla Firefox folder there? That is the normal installation location, but I think it's worth checking.
    If the folder isn't there or firefox.exe is not in it, I wonder whether some other software might be interfering. You might want to run some supplemental security scans. These two tools are highly regarded:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/products/malwarebytes_free
    SUPERAntiSpyware : http://www.superantispyware.com/

  • Error message when starting: McShield.dll: the system cannot find the file specified - what do I do to solve this?

    When I start Firefox, the following message appears before the home page opens:
    "COMMONSHELL: McShield.dll
    The specified resource language ID cannot be found in the image file.
    McShield.dll: The system cannot find the file specified."
    I click OK, Firefox opens normally and everything seems to operate as expected, no further problems.

    hello, the error message is obviously coming from one of the installed mcafee extensions. please directly contact mcafee technical support - they can likely give you more detailed guidance and are the only ones who can fix bugs or make necessary adjustments in the addon.

  • I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    I accidentally set up my new ipad in itunes under the name of my existing ipad and need to set it up as a new device. Help. I cannot find a way to start fresh.

    That's probably not a good idea to try to share apps since you will have to switch ID's each time you update apps and sync apps from iTunes.
    And technically - according to Apple's terms - you cannot share apps using different ID's. You can actually lock yourself out of an ID for 90 days if you switch ID's and if you associate the iPad with another ID.
    The bold type is a copy and paste from the site that I referenced below.
    When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID. This article describes how to manage these associations.
    http://support.apple.com/kb/ht4627

  • Cannot find file when starting jnlp from browser

    First of all, im not a web guru, so sorry for my weak knowledge on that part.
    I have a swing application packed in a war file.
    In the root of war file i put my jnlp, html that links to jnlp, and jar file. (everything created with NetBeans)
    But there is also a directory "data" inside war where i hold some files.
    My application is accessing those files at runtime. (those are save files for my game)
    So, when i start jnlp directly everything is fine, but when i start jnlp through html link, i got error message:
    SEVERE: null
    java.io.FileNotFoundException: data\options.data (The system cannot find the path specified)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(Unknown Source)
         at java.io.FileInputStream.<init>(Unknown Source)
            ...Java Web Start starts correctly, i can see my first panel of the application, but when i proceed (application tries to load save file), it can not find that file (options.data) obviously.
    How is it possible that everything works fine when i start jnlp directly, and it fails when i start it through the browser?
    What is the problem here?
    Thanks for the help!

    Adoendithas wrote:
    SEVERE: null
    java.io.FileNotFoundException: data\options.data (The system cannot find the path specified)
    Of course the JRE is not going to find a data\options.data on my PC, which is where it will look for it, if your software is running on my PC. Resources for JWS projects must either be available as an URL from the server, or downloaded locally to the user's local file system before they can be used as files. Why it fails to find it on your PC is probably that the 'root path' (the default directory at time of invocation) that is prefixed to data\options.data is different between running it off the local file system, and running from HTML. To say for sure, I would need a lot more information on how you are launching it when 'running locally'.
    A major question here is, does the software merely read the data in options.data, or does it actually need to update (i.e. write to) the options.data?

  • Cannot find class CustomerFacadeRemote in NetBeans IDE 5.0 Quick Start Guid

    Hi,
    I am new to Sun Java Studio Enterprise 8.1. I am follwing NetBeans IDE 5.0 Quick Start Guide for J2EE Applications example and got two following errors:
    C:\SunStudioWS\CustomerBook\CustomerBook-war\src\java\web\CustomerDetail.java:41: cannot find symbol
    symbol : class CustomerFacadeRemote
    location: package ejb
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    C:\SunStudioWS\CustomerBook\CustomerBook-war\src\java\web\CustomerDetail.java:41: cannot find symbol
    symbol : method lookupCustomerFacadeBean()
    location: class web.CustomerDetail
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    2 errors
    C:\SunStudioWS\CustomerBook\CustomerBook-war\nbproject\build-impl.xml:299: The following error occurred while executing this line:
    C:\SunStudioWS\CustomerBook\CustomerBook-war\nbproject\build-impl.xml:141: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 1 second)
    Here is the code:
    * CustomerDetail.java
    * Created on July 23, 2007, 3:27 PM
    package web;
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author yl
    * @version
    public class CustomerDetail extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<title>Servlet customerDetail</title>");
    out.println("</head>");
    out.println("<body>");
    out.println("<h1>Servlet customerDetail at " + request.getContextPath () + "</h1>");
    String customerNr = request.getParameter("customer_nr");
    if((customerNr != null) && !(customerNr.equals("")))
    try{
    ejb.CustomerFacadeRemote custFacade = lookupCustomerFacadeBean();
    out.println("Customer's info for nr. " + customerNr + ": " + custFacade.getCustomerInfo(
    Integer.parseInt(customerNr)));
    }catch(javax.ejb.FinderException ex){
    out.println("Customer with nr. " + customerNr +" not found");
    out.println("<form>");
    out.println("Customer number: <input type='text' name='customer_nr' />");
    out.println("<input type=submit value=Select />");
    out.println("</form>");
    out.println("</body>");
    out.println("</html>");
    out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    private web.ServiceLocator serviceLocator;
    private web.ServiceLocator getServiceLocator() {
    if (serviceLocator == null) {
    serviceLocator = new web.ServiceLocator();
    return serviceLocator;
    private ejb.CustomerFacaderRemote lookupCustomerFacaderBean() {
    try {
    return ((ejb.CustomerFacaderRemoteHome) getServiceLocator().getRemoteHome("java:comp/env/ejb/CustomerFacaderBean",ejb.CustomerFacaderRemoteHome.class)).create();
    } catch(javax.naming.NamingException ne) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ne);
    throw new RuntimeException(ne);
    } catch(javax.ejb.CreateException ce) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,ce);
    throw new RuntimeException(ce);
    } catch(java.rmi.RemoteException re) {
    java.util.logging.Logger.getLogger(getClass().getName()).log(java.util.logging.Level.SEVERE,"exception caught" ,re);
    throw new RuntimeException(re);
    Thank you very much for any help.
    ylou

    In the code you have posted, some places refer to '.CustomerFacader' while others refer to '.CustomerFacade' leading to issues.
    Also: Have you considered using NetBeans 5.5.1 as an alternative to JSE 8.1?
    http://forum.java.sun.com/thread.jspa?threadID=5192837

  • Cannot start HP Pavilion laptop due to Winlogon.dll error cannot find SHLWAPI.dll

    Hello,
    We are getting a winlogon.dll error that it cannot find shlwapi.dll.
    First off, we do not have recover CDs, we do not want to reboot with a complete recovery as we have data we need on this computer.
    We cannot logon at all, it gives the error and then you have to say okay and it stays at a black screen. We have tried repairing from the start up menu, we have tried recovering a previous start up point, we can get to the f8 c prompt but the different commands offered from other website forum tech supports are not recognizable.
    At this point, we are dead in the water. If there were some way to start the computer, get into our pictures, files, etc. to just download and save those then fine we can do a complete new installation.
    Please help.
    Thank you,
    Kelly

    Hi Kelly,
    You need to download and install ImgBurn first.  Then download the Image ( ISO ) for Ubuntu.  When done, use ImgBurn to write the Ubuntu ISO to a blank CD and then just follow the rest of the guide.
    Try the following links for these Two downloads.
    ImgBurn.
    Ubuntu
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I have lost my UK only search button on my firefox start page ? & cannot find a reason anywhere.

    have used firefox start page for some time as it has had two buttons one of which was UK only the other button was for the world, these for some reason have disappeared & there is now just one large search button I cannot find any reason, can anyone help please

    Google may have changes that search page.
    You can try [http://www.google.co.uk/webhp?cr=countryUK|countryGB&ie=UTF-8&oe=UTF-8]

  • I just downloaded itunes to my PC but cannot find the library page to start transporting music files

    I just downloaded itunes to my PC but cannot find the library page to start transporting music files  ?????

    I have music on a stick drive which I want to transport to itunes on my desktop PC running Vista.  I  downloaded itunes but cannot find a page on itunes to load the music onto..               When I put the stick into the USB port,   an AutoPlay box comes up which says Play   using .Windows Media Player..............Import  music, pictures, video  using Real Player.   Open folder to view files using Windows explorer      etc.....& set Auto Play Defaults in control Panel.                            By library page, I mean the page on itunes where the music would be transported to & listed by each name so I can listen to it.

  • Start-Process : This command cannot be run due to the error: The system cannot find the file specified.

    Hi, 
    I need some help with my script. It copies the file to the remote laptops but when it needs to install the .exe it fails.
    If I run 1 line at the time in Powershell ISE, then it works. Somebody has an idea why it doesn't work or can help me on the right way?
    Script: 
    $laptops = Get-Content -Path "C:\Users\bruyld01\Documents\STEPSTONE\Powershell\SAP\LaptopList.txt"
    foreach ($laptop in $laptops)
        Copy-Item "C:\Users\bruyld01\Desktop\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V5.exe" -Destination \\$laptop\C$\
        Enter-PSSession $laptop
        $version = Get-WmiObject -Class Win32_Product | where {$_.Name -like "*SAP Business*"} | Select-Object Version
        if ($version -ne "135.0.2071.1047")
            Start-Process -Filepath "C:\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V5.exe" -ArgumentList "/quiet"
        else
            Write-Host "SAP outlook add-in is up to date!" -ForegroundColor Green
        Exit-PSSession
    Error message:
    Start-Process : This command cannot be run due to the error: The system cannot find the file specified.
    At line:2 char:1
    + Start-Process -Filepath "C:\SAP_Business_ByDesign_Add-In_for_Microsoft_Outlook_V ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : InvalidOperation: (:) [Start-Process], InvalidOperationException
        + FullyQualifiedErrorId : InvalidOperationException,Microsoft.PowerShell.Commands.StartProcessCommand
    Thanks, 
    Dimitri

    Hi,
    Enter-PSSession is used for interactive remote sessions. Look into Invoke-Command instead.
    http://ss64.com/ps/invoke-command.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"

    Using Windows 8.1 Pro on Toshiba Satellite i7 Laptop with 8Gb Ram
    After upgrade from Windows 8 Pro to 8.1 Pro, the Offline Files/CSC service refuses to start and gives the error message:
    "Windows could not start the offline files service on local computer. Error 3: The system cannot find the path specified"
    Before the upgrade, offline files worked fine... how do I re-enable offline files?

      I had a similar issue -  couldn't make any files available offline.
    I found that the offline folder service would not start
    This was because the CSC permission were totally screwed.  I had to take ownership of each folder and file, one by one, then grant everyone full access.
    then delete the full contents of the CSC folder
    format the CSC database using the registry fix then reboot
    in control panel, disable the offline files,  reboot, then re-enable.  and now its working :)
    2hrs to resolve this, with grateful thanks to this thread and some others.
    damn windows8

  • Starting Server "The system cannot find the path specified".

    Hi,
    When trying to start Sun Java SystemApplication Server 9.1 I get the message "The system cannot find the path specified".
    I have PATH = C:\Sun\AppServer\bin;C:\Sun\AppServer\lib\ant\bin;
    Windows XP SP 3.
    Suggestions please!
    Lou

    Are you trying to start it as a system service or just from a command prompt?
    You may need to add the lib directory to the PATH as well, ie C:\Sun\AppServer\lib and don't forget to reboot if it is a system service.

  • Starting weblogic issue: cannot find file .war

    When trying to start the server under my domain, I get a strack trace error in the console that states the system cannot find the project's war file. How can I resolve this issue?

    Look in the "config.xml" file in the domain configuration. In that file will be a reference to the application you've deployed, including the filesystem path to the deployment unit (war file). If that file doesn't exist, then that explains the error. That should give you a clue to why it doesn't exist.

  • I am getting the 'invalid personalization information' error when I start my photoshop cs8. I cannot find my original disk to re-install, but do have the serial number. Can I download a trial version and then enter my serial number?

    I am getting the 'invalid personalization information' error when I start my photoshop cs8. I cannot find my original disk to re-install, but do have the serial number. Can I download a trial version and then enter my serial number?

    If it is the first CS version then you will need to check out the following.  I believe it applies to CS as well even though it specifies CS2....
    Error: Activation Server Unavailable | CS2, Acrobat 7, Audition 3 - http://helpx.adobe.com/x-productkb/policy-pricing/creative-suite-2-activation-end-life.htm l

  • I have just started using iPhone 4s and cannot find out how to delete unwanted photos. I have used iPhone 3 gs for last 2 years and had no problem with this. Phone is connected to i cloud. Help please.

    I have just started using iPhone 4s and cannot find how to delete photos. Have used iPhone 3 GS for last 2 years and not had this problem. I have iCloud for my Apple family and don't know if this is causing problem. Help please.

    Log in to icloud.com with your Apple ID. Once you're logged in, click on your name on the upper right corner. Click Advanced and then Reset Photo Stream. This will delete all your photos in the album Photo Stream in your iPhone 4S so make sure you have backed up (copy to Camera Roll or new folder) all those that you want to keep.
    This is the only way to do it with iOS 5 (not the beta releases)
    http://iphone-and-i.blogspot.com/

Maybe you are looking for

  • Documents permission

    Hi, All my Pages and Numbers documents on iCloud.com have suddenly become impossible to open. On iCloud.com (from IE10 or Google Chrome 40/Win 8) their file names appear scrambled (encrypted?) and if I try to open them I get this error message: "You

  • Duplex printing- 2540 all-in-one desk jet

    Just bought an all-in-one in the online manual it says how to set up duplex printing for  OS X 10.7 however when going into system preferences the option in the drivers tab for duplex does not appear. Does the printer actuall allow for duplex printin

  • ESS Cofiguration

    Hi Experts, Can anyone please send me the step by step guide for setting up ESS on ECC 6.0 My email id is [email protected] Thanks in advance, Srini M

  • My satellite a300-mt1 webcam is not working

    my Satellite A300-MT1 builtin webcam is not working , and the camera is not listed in the Device Manager so i can't update the driver. I am running Vista Home , where can i find the webcam driver? I understand it is a Chicony product, thanks for the

  • CD-ROM driver for 3440CT Win95

    Hi I dont find a win95 driver too my mobile CD-ROM PCMCIA device. I find drivers too Freecoms CD-ROM but not too Toshibas own CD-ROM. Anybody know where I can find that? Thanks Gus