Help me,About invoking PopUpManager.addPopUp problem in Flex 4 Module

hello,when I invoke PopUpManager.addPopUp(),have a problem. detail from the fellowing program code;
<?xml version="1.0" encoding="utf-8"?>
<mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
           xmlns:s="library://ns.adobe.com/flex/spark" width="100%" height="100%"
           xmlns:mx="library://ns.adobe.com/flex/mx" creationComplete="initApp()">
    <fx:Declarations>
        <!-- 将非可视元素(例如服务、值对象)放在此处 -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayCollection;
            import mx.controls.Alert;
            import mx.core.FlexBitmap;
            import mx.core.FlexGlobals;
            import mx.events.CloseEvent;
            import mx.events.DataGridEvent;
            import mx.events.ListEvent;
            import mx.managers.PopUpManager;
            import mx.rpc.AsyncToken;
            import mx.rpc.events.FaultEvent;
            import mx.rpc.events.ResultEvent;
            import mx.rpc.remoting.RemoteObject;
            import org.mydev.fnd.proxy.FndLookupHeadersProxy;
            import org.mydev.fnd.proxy.FndLookupLinesProxy;
            import org.mydev.fnd.vo.FndLookupHeadersVO;
            import org.mydev.fnd.vo.FndLookupLinesVO;
            import org.mydev.utils.PublicFunction;
            import spark.components.Application;
            [Bindable]
            private var myac:ArrayCollection=new ArrayCollection();
            [Bindable]
            private var myacLines:ArrayCollection=new ArrayCollection();
            private var headerProxy:FndLookupHeadersProxy=new FndLookupHeadersProxy();
            private var linesProxy:FndLookupLinesProxy=new FndLookupLinesProxy();
            private var add:FndHeaderDM;
            private var lineAdd:FndLineDM;
            private function lfRowNum(oItem:Object,iCol:int):String
                var iIndex:int = myac.getItemIndex(oItem) + 1;
                return String(iIndex);
            private function lfRowNumLines(oItem:Object,iCol:int):String
                var iIndex:int = myacLines.getItemIndex(oItem) + 1;
                return String(iIndex);
            private function we_resultHandler(event:ResultEvent):void
                myac=event.result as ArrayCollection;
                //                PopUpManager.removePopUp(wi);
                // TODO Auto-generated method stub
            private function we_faultHeadler(event:FaultEvent):void{
                //                var msg:String=event.message.toString();
                Alert.show("插入数据失败!");
            private function we_resultHandlerLines(event:ResultEvent):void
                myacLines=event.result as ArrayCollection;
                //                PopUpManager.removePopUp(wi);
                // TODO Auto-generated method stub
            private function we_faultHeadlerLines(event:FaultEvent):void{
                //                var msg:String=event.message.toString();
                Alert.show("插入数据失败!");
            public function initApp():void{
                dataHeaders.allowMultipleSelection=true;
                var token:AsyncToken=headerProxy.getAllHeaders();
                PublicFunction.addResponder(token,we_resultHandler,we_faultHeadler);
                //                dataHeaders.addEventListener(MouseEvent.DOUBLE_CLICK,doubleClick)
                //                dataHeaders.addEventListener(ListEvent.KEY_DOWN,selectChange);
           protected function btnAddHeader_clickHandler(event:MouseEvent):void
                //                trace("test.............");
                add=new FndHeaderDM();
                PopUpManager.addPopUp(add,parent,true);
                //PopUpManager.addPopUp(add,FlexGlobals.topLevelApplication as DisplayObject,true);
                PopUpManager.bringToFront(add);
                PopUpManager.centerPopUp(add);
                //                var myFun:Function=initApp;
                var fndLookupHeadersVO:FndLookupHeadersVO=new FndLookupHeadersVO();
                add.init(fndLookupHeadersVO,1,myac);
            private function headerAlertClickHandler(event:CloseEvent):void { 
                var myObj:FndLookupHeadersVO=(FndLookupHeadersVO)(dataHeaders.selectedItem);
                if (event.detail==Alert.YES){  
                    //                    Alert.show("你选择了 确定");  
                    myac.removeItemAt(dataHeaders.selectedIndex);   
                    //this.parent.removeChildAt(dataHeaders.selectedIndex);
                    headerProxy.removeObj(myObj);
                    //                initApp();
                    //dataHeaders.initialize();
                //                else if(event.detail==Alert.NO){  
                //                    Alert.show("你选择了 否");  
                //                }else{  
                //                    Alert.show("你选择了 取消");  
            protected function btnDelHeader_clickHandler(event:MouseEvent):void
                if (dataHeaders.selectedItem!=null){
                    Alert.show("是否要删除?", "信息提示",3, this, headerAlertClickHandler);
                }else{
                    Alert.show("请选定一条记录进行操作!", "信息提示");
                //                PublicFunction.confirmDelete(dataHeaders.selectedItems,secondAlertClickHandler);
            protected function btnEditHeader_clickHandler(event:MouseEvent):void
                if (dataHeaders.selectedItem!=null){
                    var myObj:FndLookupHeadersVO=(FndLookupHeadersVO)(dataHeaders.selectedItem);
                    add=new FndHeaderDM();
                    PopUpManager.addPopUp(add,parent,true);
                    PopUpManager.bringToFront(add);
                    PopUpManager.centerPopUp(add);
                    add.init(myObj,2,myac);
                }else{
                    Alert.show("请选定一条记录进行操作!", "信息提示");
            protected function dataHeaders_changeHandler(event:ListEvent):void
                //                Alert.show(myac.getItemAt(dataHeaders.selectedIndex)+"");
                var myObj:FndLookupHeadersVO=(FndLookupHeadersVO)(myac.getItemAt(dataHeaders.selectedIndex));
                var myLineObj:FndLookupLinesVO=new FndLookupLinesVO();
                myLineObj.headerId=myObj.headerId;
                var token:AsyncToken=linesProxy.getByObj(myLineObj);
                PublicFunction.addResponder(token,we_resultHandlerLines,we_faultHeadlerLines);
            protected function dataHeaders_doubleClickHandler(event:MouseEvent):void
                if (dataHeaders.selectedItem!=null){
                    var myObj:FndLookupHeadersVO=(FndLookupHeadersVO)(dataHeaders.selectedItem);
                    add=new FndHeaderDM();
                    PopUpManager.addPopUp(add,parent,true);
                    PopUpManager.bringToFront(add);
                    PopUpManager.centerPopUp(add);
                    add.init(myObj,2,myac);
                }else{
                    Alert.show("请选定一条记录进行操作!", "信息提示");
            protected function dataLines_doubleClickHandler(event:MouseEvent):void
                if (dataHeaders.selectedItem!=null)
                    lineAdd=new FndLineDM();
                    PopUpManager.addPopUp(lineAdd,parent,true);
                    PopUpManager.bringToFront(lineAdd);
                    PopUpManager.centerPopUp(lineAdd);
                    var lineObject:FndLookupLinesVO=(FndLookupLinesVO)(dataLines.selectedItem);
                    lineAdd.init(lineObject,2,myacLines);
                else
                    Alert.show("请选定一条记录进行操作!", "信息提示");
            protected function btnAddLines_clickHandler(event:MouseEvent):void
                if (dataHeaders.selectedItem!=null)
                    lineAdd=new FndLineDM();
                    PopUpManager.addPopUp(lineAdd,parent,true);
                    PopUpManager.bringToFront(lineAdd);
                    PopUpManager.centerPopUp(lineAdd);
                    var fndLookupLinesVO:FndLookupLinesVO=new FndLookupLinesVO();
                    var headerObject:FndLookupHeadersVO=(FndLookupHeadersVO)(dataHeaders.selectedItem);
                    fndLookupLinesVO.headerId=headerObject.headerId;
                    lineAdd.init(fndLookupLinesVO,1,myacLines);
                else
                    Alert.show("请选定一条记录进行操作!", "信息提示");
            protected function btnEditLines_clickHandler(event:MouseEvent):void
                if (dataLines.selectedItem!=null)
                    lineAdd=new FndLineDM();
                    PopUpManager.addPopUp(lineAdd,parent,true);
                    PopUpManager.bringToFront(lineAdd);
                    PopUpManager.centerPopUp(lineAdd);
                    var lineObject:FndLookupLinesVO=(FndLookupLinesVO)(dataLines.selectedItem);
                    lineAdd.init(lineObject,2,myacLines);
                else
                    Alert.show("请选定一条记录进行操作!", "信息提示");
            private function lineAlertClickHandler(event:CloseEvent):void { 
                var myObj:FndLookupLinesVO=(FndLookupLinesVO)(dataLines.selectedItem);
                if (event.detail==Alert.YES){  
                    myacLines.removeItemAt(dataLines.selectedIndex);   
                    linesProxy.removeObj(myObj);
            protected function btnDelLines_clickHandler(event:MouseEvent):void
                if (dataLines.selectedItem!=null){
                    Alert.show("是否要删除?", "信息提示",3, this, lineAlertClickHandler);
                }else{
                    Alert.show("请选定一条记录进行操作!", "信息提示");
        ]]>
    </fx:Script>
    <s:Panel height="100%" width="100%"  title="HEADERS" autoLayout="true">
        <s:Panel x="0" y="194" height="100%" width="100%" title="LINES" autoLayout="true">
            <mx:DataGrid x="10" y="39" height="100%" width="100%"  id="dataLines" dataProvider="{myacLines}" doubleClickEnabled="true" doubleClick="dataLines_doubleClickHandler(event)">
                <mx:columns>
                    <mx:DataGridColumn headerText="#RowNo" labelFunction="lfRowNumLines" width="50"/>
                    <mx:DataGridColumn headerText="LINE_ID" dataField="lineId"/>
                    <mx:DataGridColumn headerText="LOOKUP_CODE" dataField="lookupCode"/>
                    <mx:DataGridColumn headerText="MEANING" dataField="meaning"/>
                    <mx:DataGridColumn headerText="DESCRIPTION" dataField="description"/>
                </mx:columns>
            </mx:DataGrid>
            <s:Button x="200" y="10" label="删除" id="btnDelLines" click="btnDelLines_clickHandler(event)"/>
            <s:Button x="10" y="10" label="追加" id="btnAddLines" click="btnAddLines_clickHandler(event)"/>
            <s:Button x="102" y="10" label="编辑" id="btnEditLines" click="btnEditLines_clickHandler(event)"/>
        </s:Panel>
        <s:Button x="10" y="10" label="追加" id="btnAddHeader" click="btnAddHeader_clickHandler(event)"/>
        <s:Button x="106" y="10" label="编辑" id="btnEditHeader" click="btnEditHeader_clickHandler(event)"/>
        <s:Button x="207" y="10" label="删除" id="btnDelHeader" click="btnDelHeader_clickHandler(event)"/>
        <mx:DataGrid x="10" y="39" height="147" width="100%" change="dataHeaders_changeHandler(event)" doubleClick="dataHeaders_doubleClickHandler(event)" dataProvider="{myac}" id="dataHeaders" doubleClickEnabled="true" lockedColumnCount="1">
            <mx:columns>
                <mx:DataGridColumn headerText="#RowNo" labelFunction="lfRowNum" width="50" />
                <mx:DataGridColumn headerText="HEADER_ID" dataField="headerId"/>
                <mx:DataGridColumn headerText="LOOKUP_TABLE" dataField="lookupTable"/>
                <mx:DataGridColumn headerText="LOOKUP_COLUMN" dataField="lookupColumn"/>
                <mx:DataGridColumn headerText="LOOKUP_DESCRIPTION" dataField="lookupDescription"/>
            </mx:columns>
        </mx:DataGrid>
    </s:Panel>
</mx:Module>
When I execute  btnAddHeader_clickHandler(event) function,error information  in the fellowing:
Error: 找不到 FndHeaderDM232.SkinnableContainerSkin233.contentGroup.frm.FormItem238.txtTable 的外观。
    at spark.components.supportClasses::SkinnableComponent/attachSkin()[E:\dev\4.x\frameworks\pr ojects\spark\src\spark\components\supportClasses\SkinnableComponent.as:632]
    at spark.components.supportClasses::SkinnableComponent/validateSkinChange()[E:\dev\4.x\frame works\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:405]
    at spark.components.supportClasses::SkinnableComponent/createChildren()[E:\dev\4.x\framework s\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:368]
    at mx.core::UIComponent/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UI Component.as:7349]
    at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\core\UIComponent.as:7241]
    at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\core\Container.as:3972]
    at mx.core::Container/addChildAt()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Cont ainer.as:2616]
    at mx.core::Container/addChild()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Contai ner.as:2534]
    at mx.core::Container/createComponentFromDescriptor()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\Container.as:4392]
    at mx.core::Container/createComponentsFromDescriptors()[E:\dev\4.x\frameworks\projects\frame work\src\mx\core\Container.as:4181]
    at mx.core::Container/createChildren()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ Container.as:3187]
    at mx.containers::FormItem/createChildren()[E:\dev\4.x\frameworks\projects\framework\src\mx\ containers\FormItem.as:479]
    at mx.core::UIComponent/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UI Component.as:7349]
    at mx.core::Container/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Cont ainer.as:3129]
    at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\core\UIComponent.as:7241]
    at mx.core::Container/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\core\Container.as:3972]
    at mx.core::Container/addChildAt()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Cont ainer.as:2616]
    at mx.containers::Form/addChildAt()[E:\dev\4.x\frameworks\projects\framework\src\mx\containe rs\Form.as:293]
    at mx.core::Container/addChild()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Contai ner.as:2534]
    at mx.containers::Form/addChild()[E:\dev\4.x\frameworks\projects\framework\src\mx\containers \Form.as:282]
    at mx.core::Container/createComponentFromDescriptor()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\Container.as:4392]
    at mx.core::Container/createComponentsFromDescriptors()[E:\dev\4.x\frameworks\projects\frame work\src\mx\core\Container.as:4181]
    at mx.core::Container/createChildren()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ Container.as:3187]
    at mx.core::UIComponent/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UI Component.as:7349]
    at mx.core::Container/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\Cont ainer.as:3129]
    at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\4.x\frameworks\projects\fr amework\src\mx\core\UIComponent.as:7241]
    at mx.core::UIComponent/addChildAt()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UI Component.as:6947]
    at spark.components::Group/addDisplayObjectToDisplayList()[E:\dev\4.x\frameworks\projects\sp ark\src\spark\components\Group.as:1825]
    at spark.components::Group/http://www.adobe.com/2006/flex/mx/internal::elementAdded()[E:\dev\4.x\frameworks\projects\ spark\src\spark\components\Group.as:1416]
    at spark.components::Group/setMXMLContent()[E:\dev\4.x\frameworks\projects\spark\src\spark\c omponents\Group.as:512]
    at spark.components::Group/set mxmlContent()[E:\dev\4.x\frameworks\projects\spark\src\spark\components\Group.as:452]
    at spark.components::SkinnableContainer/set mxmlContent()[E:\dev\4.x\frameworks\projects\spark\src\spark\components\SkinnableContaine r.as:604]
    at spark.components::SkinnableContainer/createDeferredContent()[E:\dev\4.x\frameworks\projec ts\spark\src\spark\components\SkinnableContainer.as:986]
    at spark.components::SkinnableContainer/createContentIfNeeded()[E:\dev\4.x\frameworks\projec ts\spark\src\spark\components\SkinnableContainer.as:1014]
    at spark.components::SkinnableContainer/createChildren()[E:\dev\4.x\frameworks\projects\spar k\src\spark\components\SkinnableContainer.as:827]
    at mx.core::UIComponent/initialize()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\UI Component.as:7349]
    at org.mydev.fnd.view::FndHeaderDM/initialize()
    at mx.managers.systemClasses::ChildManager/childAdded()[E:\dev\4.x\frameworks\projects\frame work\src\mx\managers\systemClasses\ChildManager.as:189]
    at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::rawChildren_addChildAt()[E:\dev\4.x\frameworks \projects\framework\src\mx\managers\SystemManager.as:1963]
    at mx.managers::SystemManager/addChildAt()[E:\dev\4.x\frameworks\projects\framework\src\mx\m anagers\SystemManager.as:1595]
    at mx.managers::SystemManager/addChild()[E:\dev\4.x\frameworks\projects\framework\src\mx\man agers\SystemManager.as:1578]
    at mx.managers::PopUpManagerImpl/addPopUp()[E:\dev\4.x\frameworks\projects\framework\src\mx\ managers\PopUpManagerImpl.as:346]
    at mx.managers::PopUpManager$/addPopUp()[E:\dev\4.x\frameworks\projects\framework\src\mx\man agers\PopUpManager.as:193]
    at org.mydev.fnd.view::FndLookupDM/btnAddHeader_clickHandler()[D:\eclipse-jee-galileo-SR1-wi n32\workspace\subapp\flex_src\org\mydev\fnd\view\FndLookupDM.mxml:88]
    at org.mydev.fnd.view::FndLookupDM/__btnAddHeader_click()[D:\eclipse-jee-galileo-SR1-win32\w orkspace\subapp\flex_src\org\mydev\fnd\view\FndLookupDM.mxml:264]
I hope you help me,I'm Flex new  develper. thanks!
My Email: [email protected].

Hi
I have a similar (but not exactly the same, see my post: http://forums.adobe.com/message/3943082#3943082). I tried your solution but I don't really understand what you mean by
2) The module is being linked into the main application.  There are plenty
of old discussions on this topic.
Can you be more specific ?
Thank you !!
Max

Similar Messages

  • Dear Apple I buy a refurbish iPhone 5s the IMEI ******* and ICCID ******** and i restored the device when i restored its locked to iCloud and i don't know the username and password i hope to help me about the problem asap.  Best regard

    Dear Apple
    I buy a refurbish iPhone 5s the IMEI ******** and ICCID ********** and i restored the device when i restored its locked to iCloud and i don't know the username and password i hope to help me about the problem asap.
    Best regard
    <Edited by Host>

    This is a user forum. You aren't talking to Apple here.
    Return your iPhone for a refund. There is no way to remove the Activation Lock. Apple won't get involved.
    <Edited by Host>

  • I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    Here's a good troubleshooting article about imessage "waiting for activation".
    http://support.apple.com/kb/TS4268

  • I am trying to buy mitril for hobbit kom but it always gives me error i have already added my card information to store but i cant buy it.Could u help me about it ,please?

    I am trying to buy mitril for hobbit kom but it always gives me error i have already added my card information to store but i cant buy it.Could u help me about it ,please?

    Wish I could help. My wife is having the same problem.  Same computer for 2 years and all of a suddent it thinks this is her first purchase.

  • Help me about Searching for a Substring within a String

    Hello everybody,
    I have a problem like this:
    Assume i type a sentence from keyboard: "I want to play football"
    And computer will look for the word "football" to see if this word is in that sentence.
    In this case, computer found it.
    That is it ! Could anybody help me about this ?
    Thank you very much in advance.
    still_learn

    Use the String.indexOf() method:
    String original = "I want to play football";
    int result = original.indexOf("football");
    if (result != -1)
    System.out.println("computer found it");
    If the word "football" is in the original String, the indexOf() method will return the index of the word. If it does not find the word "football", it will return a value of -1. The String API is full of useful methods.
    fitz

  • Please can anyone help with the continuing password rejection problem with email.Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    Please can anyone help with the continuing password rejection problem with email on my imac.My Ipad and other systems work fine but despite reloading my password on imac it bounces back.Apple store has been visited and I have tried everything they suggest.

    I use free Yahoo mail webMail access because folders I created in webmail access doesn't get set up in Apple Mail. While I was searching for post about password and keychain issues, I stumbled on several threads that complain about Mail folder issues, so I'm holding off on Apple Mail.
    On the password and keychain issue that your post is all about.  I've been using login keychain to save and automatical fill my login screens for a year or so successfully, with Safari and Chrome. Automatic form fill also works for Facebook login. Unfortunately, about 4 to 6 months ago, automatic password form fill stopped working with Yahoo webmail, while still worked for GMail (Safari and Chrome). I tried deleting the password entry for my two Yahoo email accounts to start fresh, but neither Safari not Chrome will even ask me if I want to save the password. I was so frustrated that I eventually installed the keypassX 0.43 (password manager) that is quite primitive sompare to OS X's keychain (when it works). Probably no surprise to you yet.
    The surprise, to me at least, is that, for whatever reason, password auto form-fill from keychain started working again for Yahoo webmail login on Safari about 5-7 days ago. Still doesn't work on Chrome!
    Two tips I can share, at least with webmail access:
    1. Password is save only for one of my yahoo mail accounts. When I login in with my other yahoo account, I get no prompt to save the password, and form fill doesn't work when I try to log in a second time with my other Yahoo mail account.
    2. On inspection of my login keychain, I see a webform password item saved for my Yahoo account that works with keychain. The name of the password is: login.yahoo.com(MyAccountName1#). When I open the password item and look in the Access Control tab, I see Safari and Chome are listed as allowed to access this password item..
         I also an "Internet password" item with a name of just login.yahoo.com. When I open the the password item, it looks just like the password item created for MyAccountName#1, but the MyAccountName#2 is listed in the Account field. Inside the Access Control tab, no apps are listed in access permission. I added Safari and Chrome to the lists of allowed app, saved the password item.
    Now when I bring up the Yahoo login page(by bookmark) on Safari, form fill fills in MyAccountname#1 for name and the proper password and I can login in. When I change the name to MyAccountName#2, the correct password is retrieved and I can log in! Alas, it still doesn't work on Chrome.
    BTW, I changed the password item type from "Internet password" to "Web Form password" and saw no difference! I also edited the name to be "login.yahoo.com (MyAccountName#2)" to look like the web form password item that works, but it has no effect either.
    From my experimentation, here's my observation:
    1. A Web Form password item is created for the first account name(MyAccountName#1) for login.yahoo.com and typed as Web Form password. When I log in using MyAccountName#2, an Internet Password is created, but no applications are listed as allowed to access the password item, even when the password item was created after just logged in and logged out to yahoo with the account name and password for MyAccountName#2.
    2. Manually adding Safari as an app that is allowed to use the password item works. Doesn't work with Chrome!
    The version of Safari I'm using is Version 5.1.7 (6534.57.2). My installed version of Chrome is Version 21.0.1180.79 beta.

  • When i am installing software and shows the sign of connect phone to i tunes when connect it shutdown and never again help me about this

    when i am installing software on my iphone 3g after sometime it shows the it shows the sign to connect iphone to itunes on my window when i am connect it shutdown and never on again ples help me about this problem i am worried.
                                     thanx

    Hello Aamir,
    It sounds like at this point your phone will not turn on. I would like to recommend the troubleshooting from this article named:
    iPhone: Hardware Troubleshooting
    http://support.apple.com/kb/ts2802
    Will not turn on, will not turn on unless connected to power, or unexpected power off
    Verify that the Sleep/Wake button functions. If it does not function, inspect it for signs of damage. If the button is damaged or is not functioning when pressed, seek service.
    Check if a Liquid Contact Indicator (LCI) is activated or there are signs of corrosion. Learn about LCIsand corrosion.
    Connect the iPhone to the iPhone's USB power adapter and let it charge for at least ten minutes.
    After at least 30 minutes, if:
    The home screen appears: The iPhone should be working. Update to the latest version of iOS if necessary. Continue charging it until it is completely charged and you see this battery icon in the upper-right corner of the screen . Then unplug the phone from power. If it immediately turns off, seek service.
    The low-battery image appears, even after the phone has charged for at least 20 minutes: See "iPhone displays the low-battery image and is unresponsive" symptom in this article.
    Something other than the Home screen or Low Battery image appears, continue with this article for further troubleshooting steps.
    If the iPhone did not turn on, reset it while connected to the iPhone USB power adapter.
    If the display turns on, go to step 4.
    If the display remains black, go to next step.
    Connect the iPhone to a computer and open iTunes. If iTunes recognizes the iPhone and indicates that it is in recovery mode, attempt to restore the iPhone. If the iPhone doesn't appear in iTunes or if you have difficulties in restoring the iPhone, see this article for further assistance.
    If restoring the iPhone resolved the issue, go to step 4. If restoring the iPhone did not solve the issue, seek service.
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Hello! Since the emergence of appstore, constantly worried about one very sereznaeya problem that is present on the iphone!

    Hello! Since the emergence of appstore, constantly worried about one very sereznaeya problem that is present on the iphone! When we are on top for free and paid apps, and that we search, choosing a specific application for viewing and after, not downloading the application, we find ourselves back to the top of the list and have to start looking (to scroll) back again!
    It's very uncomfortable!
    And as far as I know the company in the first place for the comfort of your users! Why for many years you have not solved this problem?
    However, I want to say - thank you for your work! Looking forward to September 12th!
    Sorry for the translation, it's google ...

    this is a user helping user forum apple don't read or write here if you want to complain or give apple advice use the feedback channel
    http://www.apple.com/feedback/iphone.html

  • When I try to enter codes for digital movie downloads it tells me "code redemption is temporarily unavailable. Try again later." Customer support has been no help. Anyone else have this problem?

    When I try to enter codes for digital movie downloads it tells me "code redemption is temporarily unavailable. Try again later." Customer support has been no help. Anyone else have this problem?
    Am sick of going back and forth with what has turned out to be worthless customer support. Have sent them so much info and pictures, no help. All they do is send me links for instructions on how to redeem the codes. I know how to redeem, I have redeemed at least 50 codes. To them I am obviously an idiot though. To me it seems to be a problem on their end, but can't get an answer from them on why it is telling me code redemption is unavailable. Please help! Anybody!

    Confirming my suspicions with every passing hour. Support on this forum is non-existent like the support from Apple support. But, you got my money now... why would you care?

  • When I print a photo to my epson printer, it comes out larger than the original photo - so the photo prints beyond the borders. Tried readjusting all sorts of things but nothing helps. I had this same problem with my Canon. any ideas?

    When I print a photo to my epson printer, it comes out larger than the original photo - so the photo prints beyond the borders. Tried readjusting all sorts of things but nothing helps. I had this same problem with my Canon. any ideas?

    Crop to the print size before pringing
    LN

  • Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Hello guys..!! I have got my new  iphone 4 2 days ago.The same day it got a problem of auto restart in every 1, to 2 minutes. I updated and restored it many times...but of no use... can any one help me how to solve this problem..!!

    Go to Settings/General/Reset - Erase all content and settings. the connecto to iTunes and restore as a New phone. Do not restore any backup. If the problem persists you have a hardware problem. Take it to Apple for exchange.
    This assumes that the phone is not hacked or jailbroken. If it is you will have to go elsewhere on the internet for help.

  • TS1702 help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    help, are you having the same problem? iPad 2 calendar, can't get the month of March, can get days in March, but not month view. Any suggestions, thank u.

    Hi melbernai - not sure if you've solved this problem yet. I had the exact same problem recently with my 2nd Gen iPod Nano. I solved it yesterday by simply updating iTunes to the most recent version, after which I could get rid of the register screen. The only other thing I needed to do to add my custom playlists was select "Manually manage music" on the screen for my iPod, since it had been in an automatic synching mode since the problem occurred.

  • Will apple next update to help fix the location following data problems will the ipod touch 2g be included ?

    will apple next update to help fix the location following data problems will the ipod touch 2g be included ?

    Chances are the 2g itouch will not be included in the update. Also no one yet knows if it will be fixed in the next firmware but apple has said they know of this bug.

  • TS1717 I got this message every time i connect my iphone to itunes.. said 'iTunes was unable to load provider data from Sync Services. Reconnect or try again later.' so please help me to solve out this problem..

    I got this message every time i connect my iphone to itunes.. said 'iTunes was unable to load provider data from Sync Services. Reconnect or try again later.' so please help me to solve out this problem..

    In the course of your troubleshooting to date, have you also worked through the following document?
    iTunes for Windows: "Unable to load data class" or "Unable to load provider data" sync services alert

  • I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    Nope
    One needs to press the home and sleep / wake keys together for the phone to reset
    The other thing I could recommend
    Let the battery run out and the phone completely "die"
    It may take a day or two with it not being used
    Then plug it in to charge and see if there is any change in behavior
    If you cannot get this to work - you may need to bring it to an Apple store

Maybe you are looking for

  • Error in renaming the table from SYS user

    Hi I am in Schema by name jc and I have a table by name tab1 now i logged as sys user then I give a command rename jc.tab1 to tab2 ; getting the following error rename jc.tab1 to tab2 ERROR at line 1: ORA-01765: specifying table's owner name is not a

  • Sender SFTP Adapter channel is not polling for files

    Hello All, Couple of SFTP sender adapter channel was failing in Developent system with u201Cdirectory listingu201D error.All SFTP sender channels stopped polling for the files in Developent system  . We were unable to find the reason for adapter fail

  • Nokia N8 email line break problem

    So, I've only found one other post on here about this problem, with no solution. The problem being that when you reply to an email in a hotmail inbox on the N8. Any line breaks (created by pressing return) are ignored and the whole email is sent as o

  • Photoshop CC Crop tool moves paths

    Yet another issue I've found with Photoshop CC: When using the crop tool, it moves paths after confirming the crop. (crop from the left, paths are moved to the right). I'm on OSX 10.7, PS 14.0 x64 See images for further explanation.

  • AP1240 with AIR-ANT2566P4W-R antenna

    Hi guys, Would you use AIR-ANT2566P4W-R antenna with AP 1240? This AP supports 802.11a/g and has 4 external antenna ports (2ports for 2.4GHz and 2 for 5GHz band). Ant2566 is for dual-band AP... For me it looks like not the best practice, but to buy t