Error 1009 and apple id

I have iPhone 5
I upgraded the OS 7.2
1 - I get some time error 1009
2 - Can not I use the Apple Store
I resed your Apple ID

resed id but message time out
i have iPhone 5
I upgraded the OS 7.2
1 - I get some time error 1009
2 - Can not I use the Apple Store
I resed your Apple ID

Similar Messages

  • Error   1009 and I don't know what to do exactly, plz help me

    hi
    I wish that you could help me
    I am a beginner in actionscript 3.0, and I have a main swf file, with a menu and several buttons, when I click on each button, a new swf should be loaded, and the menu is resized and goes to the top left of the page, and if I click on the menu, it should come back..
    the problem is that when I click on the first button, everything works well, but when I click on another button, I get this error:
    TypeError: Error #1009: Il est impossible d'accéder à la propriété ou à la méthode d'une référence d'objet nul.
        at s_fla::MainTimeline/s_fla::__setProp___id0__Scene1_texte_2()
        at s_fla::MainTimeline/s_fla::frame2()
    I understood that the problem is due to the file which is displayed before it has been loaded.
    I also found that I have to use the function Event.ADDED_TO_STAGE, but I don't know where to put it??
    could you help me please?
    here is my code:
    function size(e:MouseEvent):void{
        menu_mc.gotoAndPlay(2);
        menu_mc.buttonMode = true;
        menui_mc.addEventListener(MouseEvent.CLICK, showmenu);
        menu_mc.button01_btn.removeEventListener(MouseEvent.CLICK, size);
        menu_mc.button02_btn.removeEventListener(MouseEvent.CLICK, size);
       menu_mc.button03_btn.removeEventListener(MouseEvent.CLICK, size);
    addChild (cliploader);
    function size(e:MouseEvent):void{
        menu_anatomie_mc.gotoAndPlay(13);
        menu_mc.removeEventListener(MouseEvent.CLICK, showmenu);
        menu_mc.button01_btn.addEventListener(MouseEvent.CLICK, size);
        menu_mc.button02_btn.addEventListener(MouseEvent.CLICK, size);
        menu_mc.button03_btn.addEventListener(MouseEvent.CLICK, size);
        removeChild (cliploader);
    menu_mc.button01_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button02_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button03_btn.addEventListener(MouseEvent.CLICK, loadpage);
    menu_mc.button01_btn.page = "file01.swf";
    menu_mc.button02_btn.page = "file02.swf";
    menu_mc.button03_btn.page = "file03.swf";
    function loadpage(e:MouseEvent):void{
        cliploader.myldr.source = e.currentTarget.page;
    please tell me what to do exactly
    P.S: cliploader is a UI loader which is present on the scene
    in my swf files, I have flvplayback which loads a flv files, and I think this is the source of the problem, because I have tried the same thing with a simple swf file which maybe loads quickly, and I didn't get this error
    thank you in advance

    thanks
    I think that the error is in the file that I want to load, in this file I have a flvplayback that I named myplayer, which is in the third frame, and because the video doesn't stop even if I move to another frame, I had to add this code in the third frame
    next_btn.visible = true;
    prev_btn.visible = true;
    myplayer.addEventListener(Event.REMOVED_FROM_STAGE, stopPlay);
    function stopPlay(e:Event)
    myplayer.stop();
    myplayer.stop(); this is line 7 on frame 3
    when I publish this file, it works
    but when I try to play it from the menu in the main swf file I get the error, how can I fix it please?
    can I make this manually, or I'll have the same problem?
    as I said, I tried to load different swf files from the main menu and I didn't have this problem (because there were no video players), so I think the problem is caused by the video player?
    thank you

  • Website - Type Error#1009 and 1039

    I'm currently working on editing the pages on my website but for some reason these errors are apearing. Also some of the text that should be on the .swf disapears. Any help will be apreciated
    This is error I am getting:
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::SimpleButton@40692fa1 to flash.display.MovieClip.
              at flash.display::Sprite/constructChildren()
              at flash.display::Sprite()
              at flash.display::MovieClip()
              at Create_fla::MainTimeline()
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::SimpleButton@40692f41 to flash.display.MovieClip.
              at flash.display::Sprite/constructChildren()
              at flash.display::Sprite()
              at flash.display::MovieClip()
              at Create_fla::MainTimeline()
    TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::SimpleButton@40692ee1 to btnWhiteAreaClose.
              at flash.display::Sprite/constructChildren()
              at flash.display::Sprite()
              at flash.display::MovieClip()
              at Create_fla::MainTimeline()
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at Create_fla::MainTimeline/frame10()
    I assume the issue is on Frame 10 which is where the coding is located so this is the coding for that frame.
    WhiteBlock.visible = false;
    btnCloseLarge.buttonMode = true;
    aPicArr[0] = new Array();
    aPicArr[1] = new Array();
    aPicArr[2] = new Array();
    aPicArr[3] = new Array();//large image
    aPicArr[4] = new Array();//large image captions
    aPicArr[5] = new Array();//number of images per menu item
    var xmlLoader:URLLoader = new URLLoader();
    var xmlData:XML = new XML();
    var incoming_lc:LocalConnection = new LocalConnection();
    incoming_lc.connect("lc_showreel");
    incoming_lc.client = this;
    xmlLoader.addEventListener(Event.COMPLETE, LoadXML); 
    xmlLoader.load(new URLRequest("create.xml"));
    function showreel(ShowReelName)
              var DoTween:Tween;
              removeEventListener(MouseEvent.MOUSE_DOWN,btnClientNamePress);
              outgoing_lc.send("lc_bkgnd", "setBlackout", "Dark");
              DoTween = new Tween(create, "alpha", Regular.easeOut, 1, 0.05, 0.5, true);
              if (placeholder)
                        placeholder.alpha = 0;
              var i:Number;
              for (i=0;i<clientCount; i++)
                        aClientInstance[i].alpha=0;
              showreelPlayer.alpha = 1;
              showreelPlayer.source = ShowReelName
              showreelPlayer.play();
              WhiteBlock.visible = true;
              DoTween = new Tween(WhiteBlock, "alpha", Regular.easeOut, 0, 1, 0.8, true);
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 0, 1, 0.8, true);
              btnCloseLarge.addEventListener(MouseEvent.MOUSE_DOWN,btnCloseShowreel_Press);
    function btnCloseShowreel_Press(event:MouseEvent):void
              addEventListener(MouseEvent.MOUSE_DOWN,btnClientNamePress);
              btnCloseLarge.visible = false;
              WhiteBlock.visible = false;
              showreelPlayer.stop();
              showreelPlayer.alpha = 0;
              var DoTween:Tween;
              outgoing_lc.send("lc_bkgnd", "setBlackout", "Light");
              DoTween = new Tween(create, "alpha", Regular.easeOut, 0.05, 1, 0.5, true);
              if (placeholder)
                        placeholder.alpha = 1;
              sm.buttonMode = true;
              DoTween = new Tween(sm, "alpha", Regular.easeOut, 0, 1, 0.5, true);
              var i:Number;
              for (i=0;i<clientCount; i++)
                        aClientInstance[i].alpha=1;
              DoTween = new Tween(WhiteBlock, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(ArrowLeft_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              btnCloseLarge.removeEventListener(MouseEvent.MOUSE_DOWN,btnCloseShowreel_Press);
    function LoadXML(e:Event):void
              xmlData = new XML(e.target.data);
              ParseImages(xmlData);
    function ParseImages(textInput:XML):void
              var clientChildren:XMLList = textInput.clientDetails.children();
              var clientInfo:XML;
              var childName:String;
              var clientName:String;
              for each (clientInfo in clientChildren)
                        //trace(clientInfo.name() + "=" + clientInfo.text());
                        childName = clientInfo.name();
                        switch (childName)
                                  case "clientName":
                                  aClients[i] = clientInfo.text();
                                  i++;
                                  aPicArr[5][i] = j;
                                  break;
                                  case "image":
                                  aPicArr[0][j] = i;
                                  aPicArr[1][j] = clientInfo.text();
                                  break;
                                  case "image_lrg":
                                  aPicArr[3][j] = clientInfo.text();
                                  aLargePict[j] = clientInfo.text();
                                  break;
                                  case "caption_lrg":
                                  aLargeCapt[j] = clientInfo.text();
                                  aPicArr[4][j] = clientInfo.text();
                                  j++;
                                  break;
                                  case "caption":
                                  aPicArr[2][j] = clientInfo.text();
                                  break;
                                  //trace("(122) i,j: " + i,j);
                                  break;
              clientCount = i;
              /*for (i=1;i<clientCount+1; i++)
                        trace("129:"+i,aPicArr[5][i],aLargePict[aPicArr[5][i]]);
              /*for (i=1;i<aLargePict.length;i++)
                        trace("133:" + i,aLargePict[i]);
              for (i=0;i<clientCount; i++)
                        var cl:MovieClip = new ListName;
                        cl.ClientName.text = aClients[i];
                        cl.y = 245 + i*20;
                        cl.x = 150;
                        cl.buttonMode = true;
                        aClientInstance[i] = addChild(cl);
    addEventListener(MouseEvent.MOUSE_DOWN,btnClientNamePress);
    LeftArrow.addEventListener(MouseEvent.MOUSE_DOWN,btnLeftArrowPress);
    RightArrow.addEventListener(MouseEvent.MOUSE_DOWN,btnRightArrowPress);
    ArrowLeft_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowLeft_LrgPress);
    ArrowRight_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowRight_LrgPress);
    //(parent.parent as MovieClip).ShowAddressLine();
    function btnLeftArrowPress(evt:Event):void
              //trace("Got left arrow");
              showPrevImage();
    function btnRightArrowPress(evt:Event):void
              //trace("Got right arrow");
              showNextImage();
    function btnArrowRight_LrgPress(evt:Event):void
              //trace("Got ArrowRight_Lrg");
              Next_LargeImage();
    function btnArrowLeft_LrgPress(evt:Event):void
              //trace("Got ArrowLeft_Lrg");
              Prev_LargeImage();
    function btnClientNamePress(evt:Event):void
              var fmtDown:TextFormat = new TextFormat();
              fmtDown.color = 0xD7CE60;
              var fmtOut:TextFormat = new TextFormat();
              fmtOut.color = 0xFFFFFF;
              var st_target:String;
              var st_client:String;
              st_target = evt.target.name.substring(8)
              for (i=0; i<clientCount; i++)
                        st_client = aClientInstance[i].name.substring(8);
                        if (Number(st_target))
                                  if (Number(st_client) + 1 == Number(st_target))
                                            CurrentMenu = i;
                                            aPicList.length = 0;
                                            k = 0;
                                            for (j=0;j<aPicArr[0].length; j++)
                                                      if (aPicArr[0][j] == i+1)
                                                                aPicList[k] = aPicArr[1][j];
                                                                aPicCapt[k] = aPicArr[2][j];
                                                                aPicLarge[k] = aPicArr[3][j];
                                                                aPicCaptLarge[k] = aPicArr[4][j];
                                                                k++;
                                            if (aPicList.length > 0)
                                                      showFirstImage();
                                  else
                                            aClientInstance[i].alpha = 1;
    function showFirstImage():void
              var TweenArrow;
              setMenuAlpha();
              k=0;
              loadChild(ImageDir + aPicList[k]);
              if (LeftArrow.alpha == 1)
                                  TweenArrow = new Tween(LeftArrow, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              LeftArrow.buttonMode = false;
              if (aPicList.length > 1)
                        RightArrow.buttonMode = true;
                        TweenArrow = new Tween(RightArrow, "alpha", Regular.easeOut, 0, 1, 0.8, true);
    function showNextImage():void
              var TweenArrow;
              setMenuAlpha();
              if (k < aPicList.length)
                        k++;
                        loadChild(ImageDir + aPicList[k]);
              if ((k +1) == aPicList.length)
                        RightArrow.buttonMode = false;
                        TweenArrow = new Tween(RightArrow, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              if (k >0)
                        LeftArrow.buttonMode = true;
                        if (LeftArrow.alpha == 0)
                                  TweenArrow = new Tween(LeftArrow, "alpha", Regular.easeOut, 0, 1, 0.8, true);
    function showPrevImage():void
              var TweenArrow;
              setMenuAlpha();
              if (k > 0)
                        k--;
                        loadChild(ImageDir + aPicList[k]);
              if (k < 1)
                        LeftArrow.buttonMode = false;
                        TweenArrow = new Tween(LeftArrow, "alpha", Regular.easeOut, 1, 0, 0.5, true);
                        LeftArrow.alpha=0;
              if (k < aPicList.length)
                        RightArrow.buttonMode = true;
                        if (RightArrow.alpha == 0)
                                  TweenArrow = new Tween(RightArrow, "alpha", Regular.easeOut, 0, 1, 0.5, true);
    function loadChild(childSWF)
              ContentLdr = new Loader();
              ContentLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,showProgress);
              ContentLdr.contentLoaderInfo.addEventListener(Event.COMPLETE,contentLoaded);
              pcLoaded.alpha = 1;
              request = new URLRequest(childSWF);
              ContentLdr.load(request);
    function loadLargeImage(childSWF)
              ContentLdr = new Loader();
              ContentLdr.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,showProgress);
              ContentLdr.contentLoaderInfo.addEventListener(Event.COMPLETE,LIcontentLoaded);
              pcLoaded.alpha = 1;
              request = new URLRequest(childSWF);
              ContentLdr.load(request);
    function showProgress(evt:ProgressEvent):void
              percentloaded = (Math.ceil((evt.bytesLoaded/evt.bytesTotal)*100));
              if (pcLoaded != null)
                        pcLoaded.text = percentloaded + "%";
    function contentLoaded(loadEvent:Event):void
              if (placeholder != null)
                        TransitionManager.start((placeholder as MovieClip), {type:Iris, direction:Transition.OUT, duration:0.5, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
                        TransitionManager.start((imageCaption as MovieClip), {type:Fade, direction:Transition.OUT, duration:0.8, easing:Strong.easeOut});
                        //removeChild(placeholder);
              placeholder = new MovieClip;
              placeholder.x = 351;
              placeholder.y = 153;
              sm = addChild(placeholder);
              sm.addEventListener(MouseEvent.MOUSE_DOWN,smallImagePress);
              sm.buttonMode = true;
              placeholder.addChild(ContentLdr.content);
              pcLoaded.alpha=0;
              imageCaption.CaptionTxt.text = aPicCapt[k];
              TransitionManager.start((placeholder as MovieClip), {type:Iris, direction:Transition.IN, duration:0.5, easing:Strong.easeIn, startPoint:5, shape:Iris.CIRCLE});
               TransitionManager.start((imageCaption as MovieClip), {type:Fade, direction:Transition.IN, duration:0.8, easing:Strong.easeIn});
              ContentLdr.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,showProgress );
              ContentLdr.contentLoaderInfo.removeEventListener(Event.COMPLETE,contentLoaded);
    function LIcontentLoaded(loadEvent:Event):void
              if (LI_holder != null)
                        TransitionManager.start((LI_holder as MovieClip), {type:Iris, direction:Transition.OUT, duration:0.5, easing:Strong.easeOut, startPoint:5, shape:Iris.CIRCLE});
                        TransitionManager.start((LrgImageCaption as MovieClip), {type:Fade, direction:Transition.OUT, duration:0.8, easing:Strong.easeOut});
                        //removeChild(placeholder);
              LI_holder = new MovieClip;
              LI_holder.x = 70;
              LI_holder.y = 60;
              largeImage = addChild(LI_holder);
              LI_holder.addChild(ContentLdr.content);
              pcLoaded.alpha=0;
              LrgImageCaption.CaptionTxt.text = aLargeCapt[k+1];
              TransitionManager.start((LI_holder as MovieClip), {type:Iris, direction:Transition.IN, duration:0.5, easing:Strong.easeIn, startPoint:5, shape:Iris.CIRCLE});
               TransitionManager.start((LrgImageCaption as MovieClip), {type:Fade, direction:Transition.IN, duration:0.8, easing:Strong.easeIn});
              ContentLdr.contentLoaderInfo.removeEventListener(ProgressEvent.PROGRESS,showProgress );
              ContentLdr.contentLoaderInfo.removeEventListener(Event.COMPLETE,contentLoaded);
    function smallImagePress(evt:Event):void
              var DoTween:Tween;
              outgoing_lc.send("lc_bkgnd", "setBlackout", "Dark");
              DoTween = new Tween(create, "alpha", Regular.easeOut, 1, 0.05, 0.5, true);
              if (placeholder)
                        placeholder.alpha = 0;
              sm.buttonMode = false;
              DoTween = new Tween(sm, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              imageCaption.alpha = 0;
              header.alpha = 0;
              var i:Number;
              for (i=0;i<clientCount; i++)
                        aClientInstance[i].alpha = 0;
              WhiteBlock.alpha = 0;
              WhiteBlock.visible = true;
              DoTween = new Tween(WhiteBlock, "alpha", Regular.easeOut, 0, 1, 0.8, true);
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 0, 1, 0.8, true);
              //ArrowRight_Lrg.alpha = 1;
              //ArrowLeft_Lrg.alpha = 1;
              btnCloseLarge.addEventListener(MouseEvent.MOUSE_DOWN,btnCloseLarge_Press);
              First_LargImage();
    function btnCloseLarge_Press(event:MouseEvent):void
              var DoTween:Tween;
              outgoing_lc.send("lc_bkgnd", "setBlackout", "Light");
              DoTween = new Tween(create, "alpha", Regular.easeOut, 0.05, 1, 0.5, true);
              if (placeholder)
                        placeholder.alpha = 0;
              sm.buttonMode = true;
              DoTween = new Tween(sm, "alpha", Regular.easeOut, 0, 1, 0.5, true);
              LrgImageCaption.alpha = 0;
              header.alpha = 1;
              var i:Number;
              for (i=0;i<clientCount; i++)
                        aClientInstance[i].alpha = 0;
              DoTween = new Tween(WhiteBlock, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              WhiteBlock.visible = false;
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              DoTween = new Tween(ArrowLeft_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
              btnCloseLarge.removeEventListener(MouseEvent.MOUSE_DOWN,btnCloseLarge_Press);
              removeChild(LI_holder);
    function setMenuAlpha()
              aClientInstance[CurrentMenu].alpha = 0.6;
    function First_LargImage():void
    /*for (i=0;i<aLargeCapt.length;i++)
              trace("430: " + i,aLargePict[i],aLargeCapt[i]);
              var TweenArrow;
              var DoTween:Tween;
              DoTween = new Tween(btnCloseLarge, "alpha", Regular.easeOut, 0, 1, 0.8, true);
              loadLargeImage(ImageDir + aLargePict[aPicArr[5][CurrentMenu+1]]);
              //trace("(436) " + aPicArr[5][CurrentMenu+1], CurrentMenu, aLargePict[CurrentMenu],aLargeCapt[CurrentMenu]);
              if (k == aLargePict.length)
                        ArrowRight_Lrg.buttonMode = false;
                        TweenArrow = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
                        ArrowRight_Lrg.removeEventListener(MouseEvent.MOUSE_DOWN,btnArrowRight_LrgPress );
              else
                        ArrowRight_Lrg.buttonMode = true;
                        TweenArrow = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 0, 1, 0.8, true);
                        ArrowRight_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowRight_LrgPress);
              if (aPicArr[5][CurrentMenu+1]>0)
                        ArrowLeft_Lrg.buttonMode = true;
                        if (ArrowLeft_Lrg.alpha == 0)
                                  TweenArrow = new Tween(ArrowLeft_Lrg, "alpha", Regular.easeOut, 0, 1, 0.8, true);
                                  ArrowLeft_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowLeft_LrgPress );
              k = aPicArr[5][CurrentMenu+1];
    function Next_LargeImage():void
              var TweenArrow;
              if (k < aLargePict.length)
                        k++;
                        loadLargeImage(ImageDir + aLargePict[k]);
              if ((k ) == aLargePict.length)
                        ArrowRight_Lrg.buttonMode = false;
                        TweenArrow = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 1, 0, 0.8, true);
                        ArrowRight_Lrg.removeEventListener(MouseEvent.MOUSE_DOWN,btnArrowLeft_LrgPress) ;
              if (k >0)
                        ArrowLeft_Lrg.buttonMode = true;
                        if (ArrowLeft_Lrg.alpha == 0)
                                  TweenArrow = new Tween(ArrowLeft_Lrg, "alpha", Regular.easeOut, 0, 1, 0.8, true);
                                  ArrowLeft_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowLeft_LrgPress );
    function Prev_LargeImage():void
              var TweenArrow;
              if (k > 0)
                        k--;
                        loadLargeImage(ImageDir + aLargePict[k]);
              if (k < 1)
                        ArrowLeft_Lrg.buttonMode = false;
                        TweenArrow = new Tween(ArrowLeft_Lrg, "alpha", Regular.easeOut, 1, 0, 0.5, true);
                        ArrowLeft_Lrg.removeEventListener(MouseEvent.MOUSE_DOWN,btnArrowLeft_LrgPress);
                        ArrowLeft_Lrg.alpha=0;
              if (k < aLargePict.length)
                        ArrowRight_Lrg.buttonMode = true;
                        if (ArrowRight_Lrg.alpha == 0)
                                  TweenArrow = new Tween(ArrowRight_Lrg, "alpha", Regular.easeOut, 0, 1, 0.5, true);
                                  ArrowRight_Lrg.addEventListener(MouseEvent.MOUSE_DOWN,btnArrowRight_LrgPre ss);
                                  ArrowLeft_Lrg
    stop();
    The only other coding runs from frame 1 through to 9 which is here:
    import fl.transitions.*;
    import fl.transitions.easing.*;
    import flash.events.MouseEvent;
    import flash.net.LocalConnection;
    import flash.net.navigateToURL;
    import flash.net.URLRequest;
    var request:URLRequest
    var ContentLdr:Loader;
    var placeholder:Sprite;
    var LI_holder:Sprite;
    var percentloaded:int;
    var aPicArr:Array = new Array(3);
    var aClients: Array = new Array();
    var aClientInstance: Array = new Array();
    var aPicList: Array = new Array();
    var aPicCapt: Array = new Array();
    var aPicLarge: Array = new Array();
    var aPicCaptLarge: Array = new Array();
    var aLargePict: Array = new Array();
    var aLargeCapt: Array = new Array();
    var i:uint = 0;
    var j:uint = 0;
    var k:uint = 0;
    var clientCount:Number;
    var targetClient:String;
    var ImageDir:String = "images/";
    var CurrentMenu:Number;
    var outgoing_lc:LocalConnection = new LocalConnection();
    var sm;
    var largeImage;
    header.visible=false;
    LeftArrow.alpha=0;
    RightArrow.alpha=0;
    showreelPlayer.alpha=0;
    TransitionManager.start(header, {type:Fade, direction:Transition.IN, duration:0.8, easing:Strong.easeIn});

    As far as the 1034 error goes, it is indicating that somewhere in your codse you are trying to treat a button symbol as if it is a movieclip symbol.  You are likely the only one who is going to be able to find where.  It is possible that the recommendation below might help find which lines it is happening for.
    The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....
    - is declared but not instantiated
    - doesn't have an instance name (or the instance name is mispelled)
    - does not exist in the frame where that code is trying to talk to it
    - is animated into place but is not assigned instance names in every keyframe for it
    - is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).
    If you go into your Publish Settings Flash section and select the option to Permit debugging, your error message should have a line number following the frame number which will help you isolate which object is involved.

  • Error 2 and Apple Application Support Not Found - Windows 8.1 Pro

    I was unable to update iTunes when the new update came out, so I uninstalled it and reinstalled it. When re-installing it I received the following error:
    An error occurred during the installation of assembly ‘Microsoft.VC80.CRT,type=”win32”,version=”8.0.50727.6195”,publicKeyToken=” fc8b3b9a1e18e3b”,processorArchitecture=”amd64”’. Please refer to Help and Support for more information. HRESULT: 0x80070422.
    I click OK and the process continues until I receive the following error:
    Service ‘Apple Mobile Device Service’ (Apple Mobile Device Service) failed to start. Verify that you have sufficient privileges to start system services. “
    I ran the program as an Administrator from the start, so I do have sufficient privileges. I am given three options: Abort, Retry, and Ignore. Retry doesn’t work, so I hit ignore. The process then completes and when I try and open the program I receive the following error:
    Apple Application Support was not found.  Apple Application Support is requires to run iTunesHelper. Please uninstall iTunes, then install iTunes again. Error 2
    I have uninstalled and reinstalled numerous times and attempted Apple Application Support by itself by unzipping the setup. When I do that I receive the following error:
    An error occurred during the installation of assembly ‘Microsoft.VC80.CRT,type=”win32”,version=”8.0.50727.6195”,publicKeyToken=” 1fc8b3b9a1e18e3b”,processorArchitecture=”amd64”’. Please refer to Help and Support for more information. HRESULT: 0x80070422.
    I have no idea what else to try. Please help.
    System Info:
    Windows 8.1 Pro
    Processor Intel(R) Core(TM) i7-3632QM CPU @ 2.20GHz
    Ram 16 GB
    64-Bit OS, x64-based processor

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • Is there any easy way to get my account able to purchase with iTunes.  I get an error message and apple takes 2 days to respond

    I have a credit on iTunes and tried to puchave an app on a game but it failed.  It takes Apple 2 days to respond and clear the error.  Is there any way to do it without going through Apple/iTunes support?

    Depends upon what you mean by 'it failed'. If it's that you are getting a message to contact iTunes Support then no, you will have to contact them (the 48 hours should be the maximum time that it takes for them to reply).

  • 1611 error message and Apple refusing to fix

    Hello all,
    I started to have a few random problems with my iPod touch less than 3 weeks after getting it. I always took very good care it (I got the 16gb and it cost WAY to much NOT to take good care of it). Well, after trying to fix it, it completely crapped out on me. iTunes wanted to restore it, and none of my info was showing up anymore. So I tried to restore it, and I got a 1611 error message. I tried everything on Apple's website to try to fix it to no avail.
    So, I called them up. They sent out a box for me to put it in, send it to them, and they would fix it. I got my box back a few days later absolutely thrilled. Unfortunately when I opened up the box, I found a piece of paper inside with this on it:
    --A diagnostic evaluation has determined the iPod has internal damage related to a liquid spill or contamination.
    Are you kidding me! My iPod has NEVER been exposed to water. I never exercised with it, because I hadn't bought a waterproof case yet. The only thing I did with it was play music and podcasts, play applications on it, and use it in my car on the drive to and from work, but it was NEVER EVER exposed to water. I paid almost $400 for this thing that didn't last 3 weeks. My husband and I are buying a desktop (my laptop is 4 years old and needs replacing) early next year and I was wanting the iMac. But my husband has never liked how expensive Apple products are, and this just pushes him over the edge. Thanks for the GREAT service Apple.

    Most small bits of consumer electronics have a Liquid Damage Indicator. In the case of the Touch, I believe it's at the bottom of the headset jack and very hard to see. The LDI can be triggered not just by liquid but also by moisture (you'd be surprised how many people think it's okay to charge their cell phones in the bathroom.)High levels of moisture or humidity can also damage a Touch. Once there has been any exposure to liquid or moisture, it's difficult to proof what originally caused the problem.
    The only suggestion I can offer is that you take the Touch to an Apple Store if there is one at all near you. You may have better luck pleading your case to an actual person.
    Best of luck.

  • Itunes Match Error-9810 and apple tv misplaying tracks.

    I have Itunes Match, It has been working a treat upuntill this week. My apple tv was taking ages to playsongs, and whilst flicking through on shuffle and stopped on a track i want to listen to it was playing the wrong track. I could pause and rewind the music, but the track was not the track it should have been. I tried resetting everything. Off/On, reset router, but no joy. I then tried to update Match On my MBP and now all I get is error 9810! I am paying for this functionality.... Why is it not working. I have super fast fibbre optic broadband and everything is updated... Please advise....

    Shawn,
    Thanks again for your help. However, none of that worked at all. The only thing that worked was bringing my Mac to work with me today and setting up iTunes Match over WiFi (I'm on Ethernet at home). Not sure why this worked, but I saw someone else had solved their problem by changing which network they were on, so I figured I'd give that a shot. Still don't know if it was the switch from Ethernet to WiFi, or just being on a totally different network that ended up fixing it, but at least it's working.
    Rob

  • I'm from Siria and I can't download Apps, what can I do?  (error 1009) please help me !!!

    Please help me I have an iphone 5 and I can't use it!! I'm from Siria so I can't download apps error 1009 why apple do this? And how can we solve it? Please help me

    You can only download apps from an iTunes store in the country in which you reside.
    A few explanations could be found here:
    iTunes error 1009

  • FMS causes error 1009 in OSMF player

    Hi,
    I have written a program to publish the audio and video data to the FMS. I am publishing the video data to FMS in live mode and trying to play back via OSMF player.  When i start publishing video data in the livepkgr application folder of FMS files like .bootstrap, .control, .meta are getting created. But when i try to playback via OSMFplayer i will get error 1009 and one intersting thing what i have observed is after 7 minutes this error won't come and OSMF player starts playing properly. Can you please give the solution for error 1009 which comes only for first 7 minutes?

    Amit,
    I tried to playback my file as you suggested
    1. I tried to playback the file before publishing it. Player gave 2032 errror which was expected.
    2. I started publishing the my file then the player started saying "stream not found null" for 9-10 minutes.
    3. I was still publishing the video content. After 9-10 minutes the player started playing the contet that i was publishing.
    4. Same thing was happening with OSMF player also.
    One more thing is once the player starts playing the video content for a stream name, then the player never gives any error even i stop and start the publishing the video content.
    For Ex: I pubished video with stream name "rtmp_video_1". Above steps 1,2 and 3 happened. Then i stopped publishing. After some 2-3 minutes again i started publishing with same stream name  "rtmp_video_1". The player didn't give any error and started playing immediately.
    What i am thinking is that, FMS is taking some time (9-10 minutes) to make a stream available for video players to play. I have read some where that, when a player requests for a partucular stream with its stream name, the FMS does stream name to index conversion. When this conversion fails its sends error message to the player and player throws the error messages at the user. I don't know what is going wrong. Is something wrong with the way in which  i am publishing the video or something is wrong with the FMS? Please let me know.
    Thanks and Regards,
    Vishwanath

  • Getting error #1009 desperately need help

    Ive created a search engine in flex no to elaborate and it
    works to a certain extent. the timeline is i input a word and hit
    the search button it sends the word to a php script that looks in
    the database for entries in a table that match then returns the
    values of the rows to the php file and spits out an xml file. The
    xml is then parsed by the search engine and the nodes are put into
    an array collection whos data is then used by my itemRenderer to
    populate a list component.
    Now the problem i have is that if i input a search word that
    i know has more than one entry in the database all the code works
    the search works and it populates the list properly. However if i
    input a word that has only 1 or no entry it get the error #1009 and
    i cant figure out why. i kind of understand if the arrayCollection
    has nothing in it since its a null object but when i know theres an
    entry it makes no sense why its spitting that error out.. heres my
    mxml code for the search engine..Thank you in advance to any who
    can help me..

    Would you be able to elaborate on how to go about it..ive
    tried putting it into and xmllistcollection and a couple of other
    ways but i still get either the same result or i get another error
    because of a failed coercion i believe..thanks for the help so far
    any other help would be appreciated..

  • Muse is not opening - Error #1009

    After saving my work in Muse, I shut down the program.  When I tried to re-open it, the program reported an error - #1009 and would not open after I pressed Dismiss all/Continue buttons.  Any help would be appreciated. 
    I can send the MuseLog file to someone if it would help.  If yes, where should I send it?
    Thanks,
    Greg

    Hii,
    Please send your the error log file to [email protected] along with a link to this topic so we can check out your file. If your file is > 20MB, use a filesharing service like SendThisFile or Adobe SendNow.

  • Error #1009 when switching scene or frame.

    TypeError: Error #1009: Cannot access a property or method of a null object reference.
              at map_fla::MainTimeline/limit()
              at map_fla::MainTimeline/moving()
    here is my code
    backS1.addEventListener(MouseEvent.MOUSE_DOWN, goS1);
    function goS1(Event):void{
            gotoAndStop(1, "Scene 1");
    F5.addEventListener(MouseEvent.MOUSE_DOWN, gotoF5);
    function gotoF5(Event):void{
            gotoAndStop(5);
    var toR:Boolean=false;
    var toL:Boolean=false;
    var toU:Boolean=false;
    var toD:Boolean=false;
    stage.addEventListener(KeyboardEvent.KEY_UP, notClick);
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onClick);
    stage.addEventListener(Event.ENTER_FRAME, moving);
    function onClick(event:KeyboardEvent):void {
        switch (event.keyCode) {
        case Keyboard.RIGHT :
            toR=true;
        break;
        case Keyboard.LEFT :
            toL=true;
        break;
        case Keyboard.UP :
            toU=true;
        break;
        case Keyboard.DOWN :
            toD=true;
        break;
    function notClick(event:KeyboardEvent):void {
        switch (event.keyCode) {
        case Keyboard.RIGHT :
            toR=false;
        break;
        case Keyboard.LEFT :
            toL=false;
        break;
        case Keyboard.UP :
            toU=false;
        break;
        case Keyboard.DOWN :
            toD=false;
        break;
    function moving(event:Event):void {
        limit(map);
        if (toR) {
            map.x-=5;
        if (toL) {
            map.x+=5;
        if (toU) {
            map.y+=5;
        if (toD) {
            map.y-=5;
    navU.addEventListener(MouseEvent.MOUSE_DOWN, goU);
    navD.addEventListener(MouseEvent.MOUSE_DOWN, goD);
    navR.addEventListener(MouseEvent.MOUSE_DOWN, goR);
    navL.addEventListener(MouseEvent.MOUSE_DOWN, goL);
    navC.addEventListener(MouseEvent.MOUSE_DOWN, goC);
    function goU(Event):void{
        map.y += 25;
    function goD(Event):void{
        map.y -= 25;
    function goR(Event):void{
        map.x -= 25;
    function goL(Event):void{
        map.x += 25;
    function goC(Event):void{
        map.x = stage.stageWidth/2;
        map.y = stage.stageHeight/2;
    map.addEventListener(MouseEvent.MOUSE_DOWN, Drag);
    map.addEventListener(MouseEvent.MOUSE_UP, Drop);
    map.addEventListener(MouseEvent.MOUSE_OUT, Drop);
    function Drag(Event):void {
        map.startDrag();
    function Drop(Event):void {
            map.stopDrag();
    function limit(o:MovieClip) {
       if (o.x + 364.5 < 500) {
           o.x = 500 - 364.5;
       else
       if (o.x - 364.5 > 50) {
           o.x = 50 + 364.5;
       if (o.y + 309.5 < 375) {
           o.y = 375 - 309.5;
       else
       if (o.y - 309.5 > 25) {
           o.y = 25 + 309.5;
    when I run my code, it's going well. the problem when I switch to another scene or frame it shows error #1009 and become lagging. but the code can still running. I dont know where the problem is. I'm totally noob. ty in advance.

    One way would be to remove the event listener that calls the moving function whenever you leave the frames where map exists...
    stage.removeEventListener(Event.ENTER_FRAME, moving);
    Another option would be to test for the existence of map in the moving function before you execute any code that targets it.

  • Why apple do not let iran download any apps and gives error 1009

    why apple do not let iran download any apps and gives error 1009 . we can just download apps with VPN or ANTI FILTER .
    iran`s people are realy good people but some of Authorities are bad .
    APPLE pls dont think bad about us . we want Peace but our Authorities ...
    please slove the problem of error 1009 ...

    Apple has no App Store in Iran. The US Government has severe restrictions on US companies doing business in Iran, and there may well be other issues such as lack of available infrastructure, issues with Iranian law, or other problems that would also prevent Apple from doing business there.
    Unless and until Apple is able to open an App Store in your country there's nothing you can do, and quite frankly I think that's not likely to happen anytime in the foreseeable future.
    Regards.

  • HT1349 I have installed and uninstalled iTunes on multiple occasions, but keep getting the error message that "Apple Application Support is required to run iTunes ..... Error 2 (Windows Error 2)".  Can't find any useful solution.  Can anyone help?  Pleeee

    I have instlled and uninstalled iTunes on multiple occasions but iTunes fails to start with message "Apple Application support is required to run iTunes .......... Error 2 (Windows error 2)".  Most most frustrating.  Can anyone help, pleeeeeeease!!

    iTunes "Apple Application Support is required... Error 2" and possible fix.
    Hi Redgilly (and others).
    I just resolved this on Win Vista (should apply equally for Win7 too). Please uninstall iTunes before proceeding though. I'll walk you through the process I followed, if you like you can jump straight to the Solution section.
    Problems:
    The initial error during the installation of iTunes was:
    An error occurred during the installation of assembly 'Microsoft.VC80.CRT,version="8.0.50727.4053",type="win32",publicKeyToken='1fc8b 3b9a1e18e3b",processorarchitecture="x86". Please refer to Help and Support for more information. HRESULT:0x8007054F
    The error (after installing iTunes) when trying to run iTunes was:
    Apple Application Support is required to run iTunes. Please uninstall iTunes, then install iTunes again. Error 2 (Windows error 2).
    After trying various fixes around the forums I came across this MSKB article, which relates to the first installation error:
    http://support.microsoft.com/kb/2688946
    This lead me to trying to install MS Visual C++ but I received the following error trying to install that:
    Error 1935.An error occurred during the installation of assembly ‘Microsoft.VC80.ATL,type=”win32”,version=”8.0.50727.762”,publicKeyToken=”1fc8b3 b9a1e18e3b”,processorArchitecture=”amd64”’. Please refer to Help and Support for more information. HRESULT: 0x80070BC9. Assembly interface: IassemblyCacheItem, function: Commit, component: {837BF1EB-D770-94EB-A01F-C8B3B9A1E18E}
    Note: The installation of VC++ rolls back when it fails.
    Solution:
    Through this error I found this MSKB article:
    http://support.microsoft.com/kb/946414
    The Automated MS "Fix It" msi package didn’t work.
    Note: Please backup your registry first (see the above MSKB article for instructions).
    I opened the registry and (as instructed in the MSKB article) deleted the following keys:
    HKEY_LOCAL_MACHINE\COMPONENTS\
    PendingXmlIdentifier
    NextQueueEntryIndex
    AdvancedInstallersNeedResolving
    Reboot and reinstall iTunes.
    I hope this helps.

  • TS1814 I had to restore my Ipod Touch and now I can't connect to anything on it. When it asks for my Apple ID it comes up with an error message and says that it can't connect to the server. I have checked my WiFi connection and its connected.

    I have had to restore my Ipod Touch and now I can't connect to anything on it. When it asks for my Apple ID it comes up with an error message and says that it can't connect to the server. I have checked my WiFi connection and its connected.

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    -Griff W.

Maybe you are looking for

  • Modifyng SelectChoice selected values from ADFPageController

    Hi! Using ADF BC, in a JSPx I have two select Choice. -City. -State. The task I want to do is the following: I NEED to modifyng the Cities values in function of State values. I want to do this FROM ADFPageController. For that, I need to access and mo

  • Change ship to address in sales order

    Hi Friends, I am an SD consultant and need your help regarding a requirement. While creating the sales order, the user changes the address of the ship to in the order - header - partner tab. The user deletes the name1 of the ship to party and keeps t

  • Is there limit to file creation of file on application ?

    Hello Gurus, I have a huge internal  table nearly of size 3-4 GB which is being downloaded on application server. using ws_download. Now when this process is going on the program is giving a dump saying the maximum limit is reached. And in the code a

  • How to get the size of partition?

    The following SQL will get the rows of the fact table & aggregation. But how to get the size (MB) of the partition. select * from $system.discover_partition_stat That should be doable, because in BIDS, we can see the size of a partition, but from whi

  • Problem with standalone resource-adapter

    Hello, I have problem with excluding standalone resource adapters from enterprise applications on OAS 10.1.3.4. Because collection of standalone resource adapters can change dynamically (release of new versions, creation of new environment), I cannot