Flash CS6 Actionscript 3 errors, please help!

This is my code, and I am having the following errors:
else is unexpected, expecting identifier, and expecting rightbrace before end of program.
I'm sorry if it's really ridiculously easy, I'm a complete noob at flash, and coding all together! In fact, this is my first day.
Could anyone explain what's wrong, and how I can fix it? I'm learning from books I bought from Amazon, and internet tutorials.
import flash.events.Event;
import flash.events.MouseEvent;
lolyoulostnoob.visible = false;
again.visible = false;
var lost = false;
var redo = false;
var health = 3;
var isLeft = false;
var isRight = false;
addEventListener(Event.ENTER_FRAME,hank)
function hank(e:Event){
  if (bob.x < 54.9) {
  else if(bob.x > 596.05){
     bob.x -54.9
  bob.x 596.05;
  if(isLeft){
  bob.x -= 10;
     if(isRight){
        bob.x += 10;
  var rand = Math.random()*550;
  mc_1.y = mc_1.y + 10;
  mc_2.y = mc_2.y + 10;
  mc_3.y = mc_3.y + 10;
    if(mc_1.y >= 427.6){
       mc_1.y = -73.4;
       mc_1.x = rand;
       run = true;
  if(mc_2.y > 427.6){
       mc_2.y = -73.4;
       mc_2.x = rand;
       run = true;
  if(mc_3.y > 427.6){
       mc_3.y = -73.4;
       mc_3.x = rand;
       run = true;
  if(health == 0){
    lost = true;
  if((bob.hitTestObject(mc_1)||if.bob.hitTestObject(mc_2)||if.bob.hitTestObject(mc_3)) && run ){
       health--;
    run =  false;
  if(lost) {
    lolyoulostnoob.visible = !false;
    again.visible = !false;
    bob.visible = !true;
    mc_1.visible = !true;
    mc_2.visible = !true;
    mc_3.visible = !true;
    lost = false;
  if(redo) {
    lolyoulostnoob.visible = false;
    again.visible = false;
    bob.visible = true;
    mc_1.visible = true;
    mc_2.visible = true;
    mc_3.visible =true;
    health = 3;
    redo = false;
again.addEventListener(MouseEvent.MOUSE_UP,p)
function p(e:MouseEvent){
  redo = true;
stage.addEventListener(KeyboardEvent.KEY_DOWN,pressed)
function pressed(event:KeyboardEvent){
  if(event.keyCode == Keyboard.LEFT){
  isLeft = true;
    else if(event.keyCode == Keyboard.RIGHT){
  isRight = true;
  stage.addEventListener(KeyboardEvent.KEY_UP,released)
function released(event:KeyboardEvent){
  if(event.keyCode == Keyboard.LEFT){
  isLeft = false;
    else if(event.keyCode == Keyboard.RIGHT){
  isRight = false;

There could be more, but this might be the one where the error is pointing...
function hank(e:Event){
  if (bob.x < 54.9) {
}  else if(bob.x > 596.05){ // you need a closing (right) brace before the else
    bob.x -54.9
  bob.x 596.05;
Usually the error will indicate a line, so if you have that information you should only post the related code.  You will find it beneficial to go into the Flash Publish Settings and select the option to Permit Debugging.  THis can end up adding extra information to the error messages that you can include in your postings.

Similar Messages

  • Dreamweaver CS6 - internal data error - PLEASE HELP!

    Hi,
    I'm experiencing an internal data error on Dreamweaver CS6.
    I've tried all the things on the forums like deleting your cache, if that's not working deleting the whole cs6 folder, I've reinstalled and still its happening.
    Very frustrating, need to update clients websites and I can not connect.
    Please help!!!!
    Regards Stephanie

    Which operating system?
    Is DW installed on your primary hard drive?
    When DW starts acting weird, the first thing to try is Deleting Corrupted Cache in DW
    http://forums.adobe.com/thread/494811
    If that doesn't help, try Restore Preferences
    http://helpx.adobe.com/dreamweaver/kb/restore-preferences-dreamweaver-cs4-cs5.html
    If all else fails, use the CS Cleaner Tools below to wipe CS6 off your hard drive followed by a software re-install.
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    Nancy O.

  • I am geting following error please help

    ERROR-
    RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://www.nature.com/principles/webservice/login" errorID=2032]. URL: http://www.nature.com/principles/webservice/login"]
    code-
    operation = new Operation(null, "login");
      operation.url = "login";
      argsArray = new Array("login_id", "login_password", "unique_machine_id");
      operation.argumentNames = argsArray;
      operation.method = "POST";
      operation.serializationFilter = filter;
      operations.push(operation);
      public function login(loginId:String, loginPassword:String, uniqueMachineId:String):AsyncToken
           trace(loginId, loginPassword, uniqueMachineId);
           var _internal_operation:AbstractOperation = _service.getOperation("login");
           var _internal_token:AsyncToken = _internal_operation.send(loginId, loginPassword, uniqueMachineId);
           return _internal_token;
    login service is being called from server that is in java-
    package com.nature.ebook.components.auth
      import com.nature.ebook.data.UserInfo;
      import com.nature.ebook.services.CallStatus;
      import com.nature.ebook.services.IEBookService;
      import com.nature.ebook.services.XMLServiceParser;
      import flash.events.EventDispatcher;
      import flash.events.IEventDispatcher;
      import mx.controls.Alert;
      import mx.rpc.AsyncToken;
      import mx.rpc.Fault;
      [ManagedEvents("authSuccess, authFail")]
      public class AuthCommand extends EventDispatcher
      public function AuthCommand(target:IEventDispatcher=null)
      [Inject]
      public var service:IEBookService;
      [Inject]
      public var auth:AuthModel;
      //  Methods
      * This command dispatches  event AuthenticationEvent.AUTH_FAIL when the service return failt
      * @param fault Fault
      public function error(fault:Fault):void
      trace(fault);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, CallStatus.getServerFaultCall());
      dispatchEvent(e);
      * This command dispatches event when the service return rezult Array
      * @param result Array
      * if cs.success <code>true </code> dispatch AuthenticationEvent.AUTH_SUCCESS
      * if cs.success <code>false</code> dispatch AuthenticationEvent.AUTH_FAIL
      public function result(result:*):void
      if (result)
      var cs:CallStatus = XMLServiceParser.getCallStatus(result);
      if (cs.success)
      var us:UserInfo = XMLServiceParser.getUserInfo(result);
      var e:AuthenticationEvent = new AuthenticationEvent(AuthenticationEvent.AUTH_SUCCESS, us, null, cs);
      dispatchEvent(e);
      else
      e = new AuthenticationEvent(AuthenticationEvent.AUTH_FAIL, null, null, cs);
      dispatchEvent(e);
      public function execute(event:AuthenticationEvent):AsyncToken
      return service.login(event.user.loginId, event.magicWord, event.user.uniqueMachineId);

    Sorry for the confusion. After starting the WLS 6.0 server, use your browser
    to launch the console, verify that the Frobable EJB is correctly deployed as
    frobtarget with the correct class path specified. The 6.0 JAAS sample is
    trying to invoke on examples.security.acl.Frobable, make sure this is the
    deployed instance. This is an error in the JAAS example SampleAction.java
    file since the JAAS sample actually builds examples.security.jaas.Frobable,
    this bug will be corrected in service pack 1 which will be available
    shortly.
    nancy coelho <[email protected]> wrote in message
    news:3a9ee0af$[email protected]..
    Hi! I am new to JAAS and also to Weblogic server6.0. I am trying to run
    JAAS sample and geting the following error . please help
    Thanks,
    Nancy
    E:\bea\wlserver6.0\samples>java examples.security.jaas.SampleClient
    t3://localho
    st:7001
    Using Configuration File: Sample.policy
    Login Module Name: examples.security.jaas.SampleLoginModule
    Login Module Flag: required
    username: ncoelho
    password: prabhala
    javax.naming.NameNotFoundException: Unable to resolve frobtarget.Resolved:
    '' U
    nresolved:'frobtarget' ; remaining name ''
    at
    weblogic.rmi.internal.AbstractOutboundRequest.sendReceive(AbstractOut
    boundRequest.java:90)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:247)
    at
    weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:225)
    at
    weblogic.jndi.internal.ServerNamingNode_WLStub.lookup(ServerNamingNod
    e_WLStub.java:121)
    at
    weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:323)
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at examples.security.jaas.SampleAction.run(SampleAction.java:61)
    at javax.security.auth.Subject.doAs(Subject.java:80)
    at examples.security.jaas.SampleClient.main(SampleClient.java:114)
    Failed to frob
    E:\bea\wlserver6.0\samples>

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • My ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    my ipod generation 5 will not come out of recovery mode. i was simply updating my software and this happened. it will not let me restore it comes up with and error. please help, thanks.

    Hey erinoneill24,
    Thanks for using Apple Support Communities.
    Sounds like you can't update your device. You don't mention an error that it gives you. Take a look at both of these articles to troubleshoot.
    iPod displays "Use iTunes to restore" message
    http://support.apple.com/kb/ts1441?viewlocale=it_it
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808?viewlocale=de_DE_1
    If you started your device in recovery mode by mistake, restart it to exit recovery mode. Or you can just wait—after 15 minutes the device will exit recovery mode by itself.
    Have a nice day,
    Mario

  • I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • My dad got me a MacBook Air for my birthday but he used it a few times before he gave it to me. He doesnt remember the user password that he kept and now i cant download adobe flash player in it. Please help me!

    My dad got me a MacBook Air for my birthday but he used it a few times before he gave it to me. He doesnt remember the user password that he kept and now i cant download adobe flash player in it. Please help me!

    Reset Password using Recovery HD
    OS X 10.7 Lion /10.8 Mountain Lion
    Follow the instructions in the first and third boxes.
    http://pondini.org/OSX/Password.html
    Note
    Keychain
    I don't remember my original (former) account password
    https://support.apple.com/kb/HT1631

  • HT201442 I did this but still i am getting the same error , please help me .

    I did this but still i am getting the same error , please help me .
    <Email Edited by Host>

    Look at http://support.apple.com/kb/ts4451
     Cheers, Tom

  • I am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    i am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    Hey alkarim2008,
    If you are having an issue with being unable to update or restore your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    Resolve iOS update and restore errors in iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

  • My iphone won't pass the connect to itunes. when i try to restore is says that there is an error. please help!

    hi my iphone is broken. it won't pass the connect to itunes. when i try to restore is says that there is an error. please help!
    thanks,
    jg2013
    <Subject Edited by Host>

    Hello, 02633. 
    Thank you for visiting Apple Support Communities. 
    If your iPhone is disabled, you will need to process the steps in the article below.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Cheers,
    Jason H.

  • HT4623 I have updated my iphone with the current software but it is showing you need to connect to  of itunes to activate your phone, when i did that it is continuously showing an error.please help me to get through.

    I have updated my iphone with the current software but it is showing you need to connect to  of itunes to activate your phone, when i did that it is continuously showing an error.please help me to get through.
    Kindly Activate my phone.

    Rajan Gupta wrote:
    ...it is continuously showing an error.
    See here  >  http://support.apple.com/kb/TS3424
    Also see this discussion.
    https://discussions.apple.com/message/21189708

  • I need the drivers for earl 2011 macbook pro 13 inch i7 4 gigs for windows 7 64 bits i tried downloading with bootcamp butt it never completes allways ends up with an error please help

    i need the drivers for earl 2011 macbook pro 13 inch i7 4 gigs for windows 7 64 bits i tried downloading with bootcamp butt it never completes allways ends up with an error please help if any one has the drivers or knows were i can download them

    Doug...
    If you don't have it for reference, the manual might come in handy > US/Boot_Camp_Install-Setup.pdf
    After it loads, Command + F to find information regarding the drivers.

  • HT201210 hi i just bought my new iPhone 4s yesterday and when u opened it was not updated so when i tried SO MANY TIMES to update it on the devise and on my new mac it said that there was a unknown error please help me :)

    hi i just bought my new iPhone 4s yesterday and when u opened it was not updated so when i tried SO MANY TIMES to update it on the devise and on my new mac it said that there was a unknown error please help me

    Please tell us what kind of computer you have, what operating system and what version of iTunes. Not just "the latest version of iTunes", the exact version number.

  • I can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi

    i can't download the apple ios 5 for the ipad. after downloading around 10 % an error no. 3259 occurs. it's a network error. please help . it's urgent. i am having apple ipad 2 3G wifi.

    i switched off all the security settings and all the firewalls.
    i m unable to install any of the app on the ipad
    so i saw the apple support and it said to update the older version of my ipad.
    and niether am i able to download the update nor am i able to download any app and install it in my ipad2
    i also tried to download an .ipsw file (ios5 update) from torrentz bt i am also unable to install from that as itunes rjects that file and gives an error. and also tries to delete that file. plz anyone help urgently.

  • I have update my 3g software to 4.21 but its not working when it come to restoring firmware its show a error please help me out

    i have update my 3g software to 4.21 but its not working when it come to restoring firmware its show a error please help me out

    That error shows up when a phone is jailbroken or you are trying to downgrade the iOS version. Neither of which is supported by apple.

Maybe you are looking for

  • Report to know serial number used in mvt of materials during posting period

    Dear All, We are using serial number management, can anybody help me, which transaction code can give the report for all serial numbers used during movement of an materials in the specific period. Thanks in advance. Madhukar Mittal

  • Rewrite a query

    Hello, I would like your help for a query. I know that the logic is really bad,but i am not the one who will decide it. SELECT A.c1 , B.c1 , B.c2 , B.c3 FROM TABLE1 A INNER JOIN Table2 B ON B.c4 ='xxx' AND B.5 = 'xxxx' AND (A.2=B.c6 OR B.c6 = '*' ) A

  • Number of characters in long text functionality

    Can anyone please help me as to how many characters are there in long text functionality in Standard SAP. If we create a document under FB01 , there is a long text field how many characters we can enter in that text field. Also can we have any number

  • [SOLVED] pacman mirror problems

    It seems that my preferred mirror (mirror.csclub.uwaterloo.ca) is down, so I commented it out of /etc/pacman.d/mirrorlist. However, pacman still insists on trying to download from this mirror EVERY TIME it tries to install or update a package So each

  • Simple OOP Problem. Help!

    This is just a simple OOP problem that i cant decide on a best implementation for. im passing an object to an instance of, 'TabbedFrame', which is just a frame with a Tabbed Pane in it that is holding custom panels. however, these custom panels need