1010 error when trying to debug, need help

i get this error when i go to debug my site.
TypeError: Error #1010: A term is undefined and has no properties.
     at Index_fla::MainTimeline/frame1()[Index_fla.MainTimeline::frame1:11]
This is the action script
// Startup.
stop();
mainMenu_mc.stop();
// Event Setup.
mainMenu_mc.backward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.forward_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.logo_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.home_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.goals_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.outcomes_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.resume_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
mainMenu_mc.statements_btn.addEventListener(MouseEvent.CLICK, navigationClicked);
// Event Handlers.
function navigationClicked(Event:MouseEvent):void
     //We'll use this to store the Frame Label's name.
     var frmLabel:String = '';
     //Determine what Frame Label to use based on which
     //button was clicked.
     switch (Event.target)
          case mainMenu_mc.backward_btn :
               frmLabel = this.getSequencedFrame(false);
               break;
          case mainMenu_mc.forward_btn :
               frmLabel = this.getSequencedFrame(true);
               break;               
          case mainMenu_mc.logo_btn :
               frmLabel = "home_frm";
               break;
          case mainMenu_mc.home_btn :
               frmLabel = "home_frm";
               break;
        case mainMenu_mc.goals_btn :
            frmLabel = "goals_frm";
            break;
        case mainMenu_mc.statements_btn :
            frmLabel = "statement_frm";
            break;
        case mainMenu_mc.outcomes_btn :
            frmLabel = "outcomes_frm";
            break;
        case mainMenu_mc.resume_btn :
            frmLabel = "resume_frm";
            break;
        case mainMenu_mc.letters_btn :
            frmLabel = "letters_frm";
            break;
     //Find the frame number based on our Frame Label.
     var frmGoto:Number = this.getFrame(frmLabel);
     //Don't do anything if we are already on the requested page.
     if (currentFrame != frmGoto)
          //Get and remember the Home page's frame number.
          var frmHome:Number = this.getFrame("home_frm");
          //If our requested page is the Home page, the flying menu
          //needs to go home.
          if(frmGoto == frmHome)
               mainMenu_mc.goHome();
          //Else, if we are on the Home page and are leaving, then
          //leave home.
          else if(currentFrame == frmHome)
               mainMenu_mc.leaveHome();
          //Go to the requested page.
         gotoAndPlay(frmGoto);
// Helper Functions.
function getFrame(frameName:String):Number
     var frame:Number = 1;
     //Loop through all Frame Labels to find our requested frame.
     for (var i = 0; i < currentLabels.length; i++)
          if (currentLabels[i].name == frameName)
               frame = currentLabels[i].frame;
               break;
     return frame;
function getFrameLabel(frame:Number):String
     var frmLabel:String = '';
     //Loop through all Frame Labels to find the requested Frame Label.
     for (var i = 0; i < currentLabels.length; i++)
          if (currentLabels[i].frame == frame)
               frmLabel = currentLabels[i].name;
               break;
     return frmLabel;
function getSequencedFrame(forward:Boolean):String
     //Used to remember the Frame Label of our page.
     var frmSequence:String = '';
     //If we're looking for the next page in sequence...
     if(forward)
          //If our current page is that last page...
          if(currentFrame == this.getFrame("letters_frm"))
               //...then, we need to go Home.
               frmSequence = "home_frm";
          else          
               //...else, we just need to go to the next frame.
               frmSequence = this.getFrameLabel((currentFrame + 1));
     //...else, we're looking for the previous page in sequence.
     else
          //If we're on the first page (remember, we skipped our Start page)...
          if(currentFrame == this.getFrame("home_frm") ||
             currentFrame == this.getFrame("start_frm"))
               //...then, we need to go to the last page.
               frmSequence = "letters_frm";
          else          
               //...else, we just need to go to the the previous frame.
               frmSequence = this.getFrameLabel((currentFrame - 1));
     return frmSequence;
Can any oen tell me why i am getting this error? using flash cs4 in ac3.

you're trying to reference something that doesn't exist when your code executes.  if line 11, is:
mainMenu_mc.logo_btn.addEventListener(...
then
mainMenu_mc.logo_btn
doesn't exist.

Similar Messages

  • "500 internal server error" when trying to use F4 help in the variable sele

    Hi Experts,
    I am getting "500 internal server error" when trying to use F4 help in the variable selection screen (in WAD).
    How could this be resolved?
    Quick reply would be very helpfull.
    Thanks in advance !!

    It seems you are using wrong client ID. Make sure your logon pad has right details. You should verify this with your basis team.
    If the problem persists then try re-installing. But before you do that you can execute sapbexc.xla which is in the c:\program files\sap\bw. Type c:\ in cell c3 and click "start button". Any red flag means you have wrong version dll/ocx on your local drive, in that case you should reinstall with right patches.
    if this solution helps u then pls assign points

  • Error when trying to compile HTML help

    I'm using RoboHelp 7.0 on Windows XP. All of the sudden, last
    week, I start getting the following error when I try to compile
    "Fatal Error: Unexpected error from Microsoft HTML compiler." I've
    read the other posts regarding this error and deleted the .CPD file
    multiple times and tried to compile again still with no success.
    I've uninstalled and reinstalled multiple times and not had any
    better results. The other author in my office can check the project
    out of RoboSource and compile it fine. I have it on my local drive
    when trying to compile.
    I'd appreciate any ideas. It doesn't make sense that is
    something in the project since my other author can compile it fine.
    Thanks,
    Nita

    Hi, Nita,
    Do you have any other RoboHelp projects that you can try
    compiling? This may help to determine whether there's something
    slightly askew about this particular project — sounds
    unlikely if your colleague can compile without error — or
    whether the problem lies in your RoboHelp installation.
    I'd also recommend that you run MJ's Help Diagnostics,
    available from the address below. This will verify that all the
    HTML Help viewer and compiler components are properly installed and
    registered on your machine.
    http://helpware.net/downloads/index.htm#MJs
    Pete

  • Error when trying to debug in Visual Cafe

    I get a class not found exception when I run the server in Visual Cafe.
    Are there any clear directives on how to run the server (JDK 1.2.2, WIN NT)
    in debug mode?
    This is my class that I'm running and below is the error I receive.
    Any help is greatly appreciated.
    /Filip
    public static void main(String[] args) {
    String wlcl =
    "d:\\weblogic\\classes;d:\\weblogic\\lib\\weblogicaux.jar;.;D:\\GetLuckyFast
    \\release;d:\\weblogic\\classes;d:\\weblogic\\license;d:\\weblogic\\myserver
    \\serverclasses;d:\\weblogic\\lib\\weblogicaux.jar;D:\\GetLuckyFast\\release
    ;D:\\GetLuckyFast\\release\\java_extensions\\cdkjava12_3210.jar;D:\\GetLucky
    Fast\\release\\java_extensions\\jsdk.jar;D:\\GetLuckyFast\\release\\java_ext
    ensions\\javax.ejb.zip;D:\\GetLuckyFast\\release\\java_extensions\\jndi.jar;
    D:\\GetLuckyFast\\release\\java_extensions\\jms.jar;D:\\GetLuckyFast\\releas
    e\\java_extensions\\javax_jts.zip;D:\\GetLuckyFast\\release\\java_extensions
    \\mail.jar;D:\\GetLuckyFast\\release\\java_extensions\\dcxjp.zip;D:\\GetLuck
    yFast\\release\\java_extensions\\activation.jar;D:\\GetLuckyFast\\release\\j
    ava_extensions\\jaxp.jar;D:\\GetLuckyFast\\release\\java_extensions\\jcert.j
    ar;D:\\GetLuckyFast\\release\\java_extensions\\jnet.jar;D:\\GetLuckyFast\\re
    lease\\java_extensions\\jsse.jar;d:\\weblogic\\classes;c:\\jdk1.2.2\\lib\\to
    ols.jar;D:\\GetLuckyFast\\release;D:\\GetLuckyFast\\release\\java_extensions
    \\dcxjp.zip;D:\\GetLuckyFast\\release\\java_extensions\\mail.jar;D:\\GetLuck
    yFast\\release\\java_extensions\\activation.jar;D:\\GetLuckyFast\\release\\j
    ava_extensions\\jcert.jar;D:\\GetLuckyFast\\release\\java_extensions\\jnet.j
    ar;D:\\GetLuckyFast\\release\\java_extensions\\jsse.jar;D:\\GetLuckyFast\\re
    lease\\java_extensions\\jaxp.jar;D:\\GetLuckyFast\\release\\java_extensions\
    \cdkjava12_3210.jar";
    System.getProperties().put("weblogic.system.home","d:\\weblogic");
    System.getProperties().put("classpath","C:\\jdk1.2.2\\lib\\tools.jar;d:\\web
    logic\\license");
    System.getProperties().put("weblogic.class.path",wlcl);
    System.getProperties().put("registration.properties","D:\\GetLuckyFast\\rele
    ase\\registration.properties");
    System.getProperties().put("weblogic.system.name","myserver");
    System.getProperties().put("java.security.manager","");
    System.getProperties().put("java.security.policy","d:\\weblogic\\weblogic.po
    licy");
    try {
    weblogic.Server.main(args);
    } catch (Exception t) {
    System.err.println(new java.util.Date() + "####**** ERROR
    t.printStackTrace();
    }//main
    main (17:59:46): weblogic.ejb.common.DeploymentException: Deployment
    Descriptor class could notbe found in ser file:
    main (17:59:46): java.lang.ClassNotFoundException:
    [Lweblogic.security.acl.User;
    main (17:59:46): at
    java.io.ObjectInputStream.inputArray(ObjectInputStream.java:806)
    main (17:59:46): at
    java.io.ObjectInputStream.readObject(ObjectInputStream.java:357)
    main (17:59:46): at
    java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:1831)
    main (17:59:46): at
    java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:502)
    main (17:59:46): at
    javax.ejb.deployment.AccessControlEntry.readObject(AccessControlEntry.java:1
    96)
    main (17:59:46): at java.lang.reflect.Method.invoke(Native Method)
    main (17:59:46): at
    java.io.ObjectInputStream.invokeObjectReader(ObjectInputStream.java:1685)
    main (17:59:46): at
    java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1165)
    main (17:59:46): at
    java.io.ObjectInputStream.readObject(ObjectInputStream.java:369)
    main (17:59:46): at
    java.io.ObjectInputStream.inputArray(ObjectInputStream.java:951)
    main (17:59:46): at
    java.io.ObjectInputStream.readObject(ObjectInputStream.java:357)
    main (17:59:46): at
    java.io.ObjectInputStream.inputClassFields(ObjectInputStream.java:1831)
    main (17:59:47): at
    java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:502)
    main (17:59:47): at
    java.io.ObjectInputStream.inputObject(ObjectInputStream.java:1166)
    main (17:59:47): at
    java.io.ObjectInputStream.readObject(ObjectInputStream.java:369)
    main (17:59:47): at
    java.io.ObjectInputStream.readObject(ObjectInputStream.java:232)
    main (17:59:47): at
    weblogic.ejb.internal.EJBDeployment.setup(EJBDeployment.java:279)
    main (17:59:47): at
    weblogic.ejb.internal.EJBDeployment.setup(EJBDeployment.java:271)
    main (17:59:47): at
    weblogic.ejb.internal.EJBDeployment.<init>(EJBDeployment.java:232)
    main (17:59:47): at
    weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:204)
    main (17:59:47): at
    weblogic.ejb.internal.EJBManagerImpl.deployBeans(EJBManagerImpl.java:354)
    main (17:59:47): at
    weblogic.ejb.internal.EJBManagerImpl.<init>(EJBManagerImpl.java:126)
    main (17:59:47): at weblogic.t3.srvr.T3Srvr.start(T3Srvr.java:1278)
    main (17:59:47): at weblogic.t3.srvr.T3Srvr.main(T3Srvr.java:793)
    main (17:59:47): at java.lang.reflect.Method.invoke(Native Method)
    main (17:59:47): at
    weblogic.Server.startServerDynamically(Server.java:87)
    main (17:59:47): at weblogic.Server.main(Server.java:61)
    main (17:59:47): at T3Debugger.main(T3Debugger.java:16)
    main (17:59:47): at symantec.tools.debug.Agent.runMain(Native Method)
    main (17:59:47): at symantec.tools.debug.MainThread.run(Agent.java:48)

    Carl,
    Here's a screenshot of my project's Solution Explorer:
    OK, so I have a file called "Resources.resx" and another folder down below called "Resources" which contains images. Which one should I rename and what do I do about possible errors that might pop up when I try to Build or Run the app?
    Hello,
    I mean the .resx file, but based on your screenshot, the Resources.resx file was generated by Visual Studio and it was not added by yourself, right?
    This issue has beend discussed in the following thread, you could compare it with yours to narrow down this issue, since the error message shows that the project added duplicate data.
    http://stackoverflow.com/questions/3003914/vs2010-an-item-with-the-same-key-has-already-been-added
    You could follow that thread to check both the .resx file and the .csproj file to see whether there are duplicate data have been added.
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error When Trying to use SAP Help Function

    I receive the following Error while simply clicking on Help in SAP.  I put a ticket in and out IT support was by SAP the following highly intelligent and helpful info/advice This is an actual quote!!!!:
    “This option is not available if they are looking for training on how to use SAP, then need to request this from SAP support or an individual that is working with SAP in their departnemtn"
    I was of the opinion that software comes with the help function in most cases (I say most because I could imagine someone making it a separate module but it would not go over well at all).  I
    I found a folder on the corporate shared drive called SAP_Help and took the following screen shots and there was a notedpad doc that listed every chm file and what it covered. 
    Next I opened SAP from Windows Server 2008 Applications Portal and so after I RDP'd into the server help works...
    Anyone know why this is happening I went to school and got a degree in Accounting.

    It seems you are using wrong client ID. Make sure your logon pad has right details. You should verify this with your basis team.
    If the problem persists then try re-installing. But before you do that you can execute sapbexc.xla which is in the c:\program files\sap\bw. Type c:\ in cell c3 and click "start button". Any red flag means you have wrong version dll/ocx on your local drive, in that case you should reinstall with right patches.
    if this solution helps u then pls assign points

  • Error when installing Itunes 7, need help!

    Everytime i try installing the new itunes 7, i get this error, http://img84.imageshack.us/my.php?image=ituneshelpsl5.png

    The Windows Installer service, the engine behind all MSI installers, performs installations with the built-in operating system account SYSTEM on behalf of the user. So it is SYSTEM's permissions on files, folders, and registry keys that ultimately matter. SYSTEM is normally the most powerful account, but if we run our computers as an administrator, it is possible to inadvertently curb SYSTEM's power by altering permissions with a program or directly ourselves. The result is failures at random points throughout the Windows experience. Based on the screenshot you posted follow these steps to re-grant Windows the permissions it needs to complete the installation.
    1. Download and install SubInACL from Microsoft.
    2. Assuming you installed SubInACL to the default path "C:\Program Files\Windows Resource Kits\Tools\" then from Start Menu Run... execute:
    "C:\Program Files\Windows Resource Kits\Tools\subinacl.exe" /file "C:\Documents and Settings\All Users\Application Data\Apple Computer\iTunes\SC Info" /grant=SYSTEM
    3. Install iTunes 7

  • Proxy errors when trying to debug cfm

    I can't connect to the cf server in CFB and I am sure that rds is enabled and my settings are correct, is there anything else I can do?
    I have also checked the network connection is set to direct, my college has the same settings but he connects ok

    is there a way I can use wire shark to try and narrow down this problem?

  • Error line 68 in DBMS_DEBUG_JDWP when trying to debug from behind firewall

    Hello!
    I am using sqldeveloper on a windows client, connecting to an Oracle 10.1.0.4 database on AIX 5.3 behind our internal firewall. No sweat, I have an sql*net "hole" through the firewall to the database listener.
    But when trying to debug a PL/SQL procedure, the debugging session cannot start but gets the following errors:
    ORA-30683: failure establishing connection to debugger
    ORA-12535: The requested operation could not be completed within the time out period.
    The cause is readily seen in one of sqldeveloper's own windows, namely that the procedure call
    CALL DBMS_DEBUG_JDWP.CONNECT_TCP( '192.168.205.143', '1290' )
    fails. Our internal firewall quite rightly doesn't allow a connection from "any port" on the database server to "any port" on my PC.
    Is there any workaround for this issue, short of trying to get my security officer to open up so that "any port" on the database server can connect to "any port" on my windows client? I can change "debug preferences" in sqldeveloper to point to only one port on my windows client, but since I cannot control what port on the server the DBMS_DEBUG_JDWP.CONNECT_TCP procedure chooses when it tries to connect to my client, that is only a halfway solution as I see it.
    Cheers from snow-white Denmark,
    Hans Henrik Krohn

    Wrong install Disc, that one is machine specific, & doubtful a reinstall will help all that much.
    More RAM will likely help, but not awfully likely it'll be 50%.
    To tell, ehen it gets slow, Open Activity Monitor, Show:>All Processes, sort on CPU%, see if anything using too much CPU% when this happens, click on Memory tab, do you have many Pageouts?

  • I receive an error when trying to convert PDF to word.  Pls help, I have a paid acct.

    I receive an error when trying to convert PDF to word.  Can someone advise on how to resolve?

    "an error" really doesn't tell us much.
    Assuming that you use the ExportPDF online service, I suggest that you Contact Customer Care - click on the Still need help? button to chat or talk with an agent.
    [topic moved to ExportPDF forum]

  • Can anyone please help?  I am getting "javaw.exe" error when trying Struts

    I am getting the following error when trying Structs action in my application.
    javaw.exe has generated errors and will be closed by Windows,
    You will need to restart the program.
    An error log is being created.
    the application server was stopped after this error.
    I reinstalled using j2sdk1.4.2_10, this error still remains.
    can anyone please tell me how to fix it ?
    thanks a lot for your help.
    I am running app on Windows 2000 . P4 3G HZ CPU, 1M RAM

    It's not viruses I was talking about - it was session hijacking and electronic evesdropping. And as far as a browser taking up space....seriously? We're talking MBs here.....
    I use Firefox exclusively, because frankly, I don't like Safari any more than I like IE.....(actually, I really hate IE - despite its being around for forever, it is still not a browser that does much for me).
    But, to each his own. That's not really the point I was making. It's just that we have some very non tech-savvy folks asking questions here, and we need to make sure that the advice we are giving out is not going to increase their risks in any way. I was just trying to be mindful of making sure that we do inform to the best degree possible....
    No offense intended. Hopefully, none taken!
    Cheers,
    GB

  • I get error message "unknown error" When trying to log on to itunes via pc, help please!

    I get error message "unknown error" When trying to log on to itunes via pc, help please!

    Hello, trolle56.
    Thank you for the question.  You may find these articles helpful in troubleshooting the error received with the iTunes Store. 
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Cheers,
    Jason H. 

  • HT204406 hi!!!! I keep getting an "error" when trying to activate my iTunes match. I get to the 1st step, then it gets stopped, and I get the error message. HELP!!!!!!

    hi!!!! I keep getting an "error" when trying to activate my iTunes match. I get to the 1st step, then it gets stopped, and I get the error message. HELP!!!!!!

    That's definitely enough to start.
    It sure seems like it should work...and then I saw that you're using a router. It could very well be that the router is the weak link here.
    Instead connecting to your network router, try using a direct USB connection from your MBP. If that doesn't work, you read this post, which may be relevant to your problem:
    http://h30434.www3.hp.com/t5/Mac-Printing-and-Scanning/Scanning-from-Mac-10-7-fa ils-after-all-recommendations-Not-ready/td-p/1287003
    It seems you're up to date with software. Post with your results.

  • HT1338 i've been getting an error when trying to play online games saying that i need to have the browser in 32 - bit mode. my browser is in 32 - bit mode but the msg keeps coming up and not running the game

    i've been getting an error when trying to play online games saying that i need to have the browser in 32 - bit mode. my browser is in 32 - bit mode but the msg keeps coming up and not running the game

    I dunno, that doesn't make any sense to me.
    I just shut down and rebooted into the SnowLeopard partition and took a peek at the preference panes.  There are only 3 that run in 32 bit only.  They are all 3rd party, and none of the prefpanes are non Intel.  Like I said, I have never owned a PPC machine.  Anyhow, SnowLeopard doesn't even have an iCloud prefpane, or a combined mail, contacts, and calenders prefpane, and the ML security and privacy prefpane is all new as well.  The software update prefpane is Intel and 64 bit in both SnowLeopard and Lion.
    As to the triple boot, unless I'm totally mistaken, what I have here is, in essence, 3 seperate descrete computers in one box.  All using the same hardware. but one at a time.  I wouldn't know how to get more than one running at the same time, without using a virtual machine, even if I wanted to.  (Which I don't)  I do sometimes transfer files from one to another using the shared folder, but other than that, they do not interact.  How could ML system preferences be trying to launch prefpanes from a totally different machine?

  • Please help.  Keep getting a conversion error when trying to convert a PDF to a .docx. Advice?

    Please help.  Keep getting a conversion error when trying to convert a PDF to a .docx. Advice?

    Sara,
    Please see my answers in bold below.
    What browser are you using? Try clearing the cache, or using a different browser. N/A
    Are you converting from within Reader, or directly via the ExportPDF website. Within Reader.I disabled the OCR and this did not work either. Try converting from within Reader, and disable OCR as detailed in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel.
    Are you on a networked computer? Make sure that there aren't any firewall/proxy settings that are preventing you from uploading files to the Internet. Not having problems uploading the file--that works fine.
    Make sure the file is within the file-size limit of 100 MB. It is <40.
    I get the error message, "File failed to be converted using Adobe ExportPDF online."
    Thanks for your help in advance.

  • I have upgraded all apps from CS5 to CC - but keep getting U43M1D207 error when trying to upgrade Illustrator. Tried twice. Help!

    I have upgraded all apps from CS5 to CC - but keep getting U43M1D207 error when trying to upgrade Illustrator. Tried twice. Help!

    You can also use Download New Adobe CC Trials: Direct Links (no Assistant/Manager) | ProDesignTools
    Direct Download Links for Adobe Software
    Are you on a managed network. If yes please refer the Knowledge base article: http://helpx.adobe.com/creative-cloud/help/cc-desktop-download-error.html.
    You may even try the direct download: http://prodesigntools.com/adobe-cc-direct-download-links.html.
    Kindly follow the very important instructions before download.
    It might help you.
    Regards
    Rajshree

Maybe you are looking for