Popup manager problem

Hi,
        I am  loading the module in my main application. If i press the button in the loaded module, the current module will be unloaded and the popup browser window will be opened. In which i am using  some other application to load the module which was recently unloaded  in the main application.
If i use the alert.show("") in the module opened in the popup browser window i am getting following errror
TypeError: Error #1034: Type Coercion failed: cannot convert mx.managers::PopUpManagerImpl@54769861 to mx.managers.IPopUpManager.
But the same alert.show in the  module is working while loading in the main application .
Regards,
Thiru

Try adding this to the main application:
<mx:Script>
<![CDATA[
     import mx.controls.Alert; Alert;
     import mx.managers.PopUpManager; PopUpManager;
]]>
</mx:Script>
Alex Harui
Flex SDK Developer
Adobe Systems Inc.
Blog: http://blogs.adobe.com/aharui

Similar Messages

  • PopUp Manager and Flex Forum PopUps

    I wanted make sure I understood what someone on the Forum told me about the PopUpManager and TitleWindow.
    My question was:  "How are the PopUps that appear when you hover over a person's image/profile on the left side of this Adobe Forum's page done?  Did you use Flex for this, or are they some type of Ajax thing?  If Flex was used was it done with the PopUp Manager based on the TitleWindow.  This is exactly the kind of PopUp I need, especially because it has a larger hit area than most PopUps which dissapear when the mouse exits the button or textarea acting as a button.
    Thanks and Sorry for the long version.
    Doug

    Hi,
    Same  thing is simple to acheive in flex.You can try the code below.Let me know if you have any issue with this.
    MainApplication.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical"
         verticalAlign="middle">
        <mx:Script>
            <![CDATA[
                import mx.managers.PopUpManager;
                private var bool : Boolean;
                private var myPopUp:MyPopup;
                private function onMouseOver():void
                    if(bool == false)
                        if(myPopUp != null)
                            PopUpManager.removePopUp(myPopUp);
                            myPopUp = null;
                        myPopUp = MyPopup(PopUpManager.createPopUp(this, MyPopup, false));
                        myPopUp.move(700,400);
                        var infoObject : Object = new Object();
                        infoObject.imagePath = 'assets/img1.png';
                        infoObject.name = "David";
                        infoObject.country = "United Kingdom";
                        infoObject.profession = "Software Developer"
                        infoObject.domain = "Banking";
                        myPopUp.info = infoObject;
                        bool = true;   
                private function onMouseOut():void
                    bool = false;
                    if(myPopUp != null)
                        PopUpManager.removePopUp(myPopUp);
            ]]>
        </mx:Script>
        <mx:Image source="assets/img1.png" mouseOver="onMouseOver()" mouseOut="onMouseOut()"/>
    </mx:Application>
    MyPopup.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:TitleWindow xmlns:mx="http://www.adobe.com/2006/mxml" width="250" height="300"
        title="Author Information">
    <mx:Script>
        <![CDATA[
            private var _info:Object;
            public function get info():Object
                return _info;
            public function set info(value:Object):void
                _info = value;
                if(value != null)
                    imgImage.source = info.imagePath;
                    nameLbl.text = info.name;
                    countryLbl.text = info.country;
                    professionLbl.text = info.profession;
                    domainLbl.text = info.domain;
        ]]>
    </mx:Script>
        <mx:VBox width="100%" height="100%" horizontalAlign="center" verticalAlign="middle">
            <mx:Image id="imgImage" buttonMode="true" useHandCursor="true"/>
            <mx:Label id="nameLbl"/>
            <mx:Label id="countryLbl"/>
            <mx:Label id="professionLbl"/>
            <mx:Label id="domainLbl"/>
        </mx:VBox>
    </mx:TitleWindow>
    with Regards,
    Shardul Singh Bartwal

  • Lightroom (ACR 4) color management problems

    Lightroom (or ACR 4) has some color management problems. When I develop a DNG into Photoshop (sRGB) everything looks great. Then I proof colors for the web (monitor RGB) the reds become oversaturated. I don't see this problem when I develop the same DNG using Bridge (ACR 3).
    Any picture that I develop using LR that looks great in Photoshop, becomes way too red when published on the web.
    Whats going on here?

    I have confirmed this finding using Photoshop CS3 beta - same problem in converting to the web - too red!

  • Flash Builder 4 Beta 2 ---- Data Management Problem

    Flash Builder 4 Beta 2 ---- Data Management Problem
    I have a simple datagrid, a PHP service and a MySQL database. When I run the code I get multiple(7) records returned to the datagrid.  Once I enable Data Management and run the exact same code, I only get 1  record returned.
    Is there a setting in Data Management that affects the number of records returned?
    Here is the MXML code I am testing. 
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                         xmlns:s="library://ns.adobe.com/flex/spark"
                         xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768" xmlns:carasgndataphp="services.carasgndataphp.*">
          <fx:Script>
                <![CDATA[
                      import mx.controls.Alert;
                      import mx.events.FlexEvent;
                      var inptdata:String = "1";
                      protected function dataGrid_creationCompleteHandler(event:FlexEvent):void
                            getAsgnDataResult.token = carAsgnDataPHP.getAsgnData(inptdata);
                ]]>
          </fx:Script>
          <fx:Declarations>
                <s:CallResponder id="getAsgnDataResult"/>
                <carasgndataphp:CarAsgnDataPHP id="carAsgnDataPHP" fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)" showBusyCursor="true"/>
                <!-- Place non-visual elements (e.g., services, value objects) here -->
          </fx:Declarations>
          <mx:DataGrid x="115" y="91" id="dataGrid" creationComplete="dataGrid_creationCompleteHandler(event)" dataProvider="{getAsgnDataResult.lastResult}" width="558" height="298">
                <mx:columns>
                      <mx:DataGridColumn headerText="A" dataField="numAsgn"/>
                      <mx:DataGridColumn headerText="T" dataField="numTopic"/>
                      <mx:DataGridColumn headerText="U" dataField="numUnit"/>
                      <mx:DataGridColumn headerText="P" dataField="numProblem"/>
                      <mx:DataGridColumn headerText="TP" dataField="PType"/>
                      <mx:DataGridColumn headerText="P" dataField="numSeqPresent"/>
                      <mx:DataGridColumn headerText="F" dataField="numSeqFeedback"/>
                      <mx:DataGridColumn headerText="D" dataField="numDelay"/>
                      <mx:DataGridColumn headerText="ID" dataField="idAsgnData"/>
                      <mx:DataGridColumn headerText="IDP" dataField="idProblem"/>
                </mx:columns>
          </mx:DataGrid>
    </s:Application>

    Hello,
    Data Mangement expects unique values for id property.This issue may occur when you select 'Identity' property in Data Mangement wizard which is not unique in the Table.For eg:, you have selected 'name' field as identity property. And your MySQL database table has multiple rows with identical values for 'name' column.
    Can you verify if you have similar setup?
    Thanks,
    Radhakrishna

  • Power management problems

    A couple of weeks ago I installed quite a few of the patches in the recommended list.
    Since then, I get the following message repeated continually in the console window:
    DPMSSet: Invalid argument
    Power management problems
    I'm runnig solaris 8 on a ultra 5. I looked in the power.config file and in the startup scripts, but couldn't find any reference to "DPMSSet." Any ideas on the cause and solution of the message?
    I never use the powerd daemon, so killing the process seems to eliminate the messages.
    Thanks,
    Gerhard Kuhn
    [email protected]

    Hi,
    Check whether all the supported patches are installed.
    Regards,
    Dharani
    SlashSupport
    A couple of weeks ago I installed quite a few of the
    patches in the recommended list.
    Since then, I get the following message repeated
    continually in the console window:
    DPMSSet: Invalid argument
    Power management problems
    I'm runnig solaris 8 on a ultra 5. I looked in the
    power.config file and in the startup scripts, but
    couldn't find any reference to "DPMSSet." Any ideas on
    the cause and solution of the message?
    I never use the powerd daemon, so killing the process
    seems to eliminate the messages.
    Thanks,
    Gerhard Kuhn
    [email protected]

  • Ora Apps Concurrent Manager problem

    Here Ora Apps 11i running on a NT server. For some reason Concurrent Manager Service ORAConcMgr terminated and it is
    not starting up even if i rebooted the machine. Now unable to get any reports etc. from the system. The error thrown while
    starting the service is :
    Could not start the ORAConcMgr Service
    Error 1058 : The service cannot be started , either be it is disabled or it has no enabled service.
    Can anyone tell anything useful about it.
    Thanks.

    Hi Regarding the concurrent manager problem.
    Could you please try to be specific on your error like 1st of all are you able to start the concurrent manager?
    If so what is the status?
    If not what is the status can you let me know the status so that i work out some thing to solve the problem.
    Thanks and Regards
    Riyas
    email:[email protected]

  • I have a color management problem.  I have OS X v 10.5, Adobe Photoshop Elements 6, and an Epson Stylus Photo R800.  I want to print images I have scanned on a Epson Perfection 1660 Photo and corrected in Photoshop and get the colors accurate.

    i have a color management problem.  I have OS X v 10.5, Adobe Photoshop Elements 6, and an Epson Stylus Photo R800.  I want to print images I have scanned on a Epson Perfection 1660 Photo and corrected in Photoshop and get the colors accurate.

    I used the ColorSync utility to verify, and it came back with this report:
    /Library/Printers/EPSON/InkjetPrinter/PrintingModule/SPR800_Core.plugin/Contents /Resources/ICCProfiles/SPR800 Standard.icc
       Tag 'dmnd': Tag size is not correct.
    /Library/Application Support/Adobe/Color/Profiles/Recommended/CoatedFOGRA27.icc
       Tag 'desc': Tag size is not correct.
    /Library/Printers/EPSON/InkjetPrinter/ICCProfiles/Standard.profiles/Contents/Res ources/Epson IJ Printer.icc
       Tag 'dmnd': Tag size is not correct.
    /Library/Printers/EPSON/InkjetPrinter/PrintingModule/SPR800_Core.plugin/Contents /Resources/
    I did not know what to do next.  At the bottom of the window it said to go to www.apple.com/colorsync to find a tutorial.  I got a message saying that link does not work.  Tried to find the tutorial by searching at apple.com, but could not seem to locate it.  Does anyone know what the report above means and what I should do about it?  
    Also, how to find that tutorial?
    Re Using RGB all the way through, When I print from Photoshop Elements, I select Adobe RGB, Photoshop Manages under "Color Handling", Relative Colometric  under "Intent" and "ColorSync" i the Epson printer box.  Do you mean to do something different in this sequence?

  • Tutorial for solving some media manager problems

    Hey gang,
    Hopefully me posting this isn't bad forum etiquette, but I recently published a tutorial that details some fixes and "best practices" for properly importing media and getting rid of some pesky media manager errors:
    http://library.creativecow.net/lyon_matt/fixing-fcp-assets/1
    Full disclosure: I get something like a $0.01 per page view, but I'm not expecting to get rich. I just wanted to spread the word because I know lots of people experience Media Manager problems.
    Feedback is definitely welcome!
    Matt Lyon
    Editor
    Toronto

    I think it's just a great article and is of more value than 1 cent I just offered by reading the article...
    Rienk

  • Print Color Management Problem ?

    I have a print color management problem I cannot solve. It reminds me of the print color management problem I had over a year ago when the compatibility conflict between LR and MAC Leopard produced horrible prints. I have Snow Leopard now and been out of the country for some months and yesterday when I tried to make some prints the same problem reemerged. So I downloaded current drivers (and ICCsfor Premium Luster) from Epson and LR 2.6 and spent a good part of the day with Martin Evening's book. I followed (I think) his instructions to make the basic print step by step but the prints still were terrible. My problem is with the color management pop up in the print settings dialog -- it says "color matching" not color management and I cannot check either "no color management " if I want LR to control the process (Kelby)  or check "color sync" if I want my Epson R800 take over. I have no idea where the "color management" pop up went. I'm clueless as usual and probably omitting a step because of frustration or brain numbness. Any help would be appreciated. WJS

    The settings in Lightroom are simple. and contain in the Print Job panel in the Print module. You either select manage in printer (and then select the profile in the printer drivers) or select the profile here and then turn of all colour management in the printer drivers. The second option will usually produce the best results. What you don't want is to have the profile selected in both LR and the printer drivers, so if the driver doesn't have an option to turn of colour management then you may be forced down the first route. However it would be an unusual decision for a printer manufacturer to make drivers that can't turn off colour management, so you may wish to ask how to do it to your printer manufacturer or check the printers handbook.

  • WL60 Management problems

    I am new to WebLogic and am charged with understanding how to make it work.
    I have figured out a great deal, however there are several problems I keep
    running into:
    1) When I change a .war file for a configured application, occasionally I
    start getting classNotFound exceptions when I try to execute the servlets.
    There aren't any new classes, just changes to existing ones. Once I restart
    the server all is well.
    2) Sometimes when I start my server I get 'Found no context for "GET /
    HTTP/1.1". This should not happen unless the default context failed to
    deploy'. This happens every time I try to access the server, even through
    the console. I am completely hosed and can't do anything.
    Any help would be greatly appreciated.
    Thanks,
    Maury

    Hi,
    Check whether all the supported patches are installed.
    Regards,
    Dharani
    SlashSupport
    A couple of weeks ago I installed quite a few of the
    patches in the recommended list.
    Since then, I get the following message repeated
    continually in the console window:
    DPMSSet: Invalid argument
    Power management problems
    I'm runnig solaris 8 on a ultra 5. I looked in the
    power.config file and in the startup scripts, but
    couldn't find any reference to "DPMSSet." Any ideas on
    the cause and solution of the message?
    I never use the powerd daemon, so killing the process
    seems to eliminate the messages.
    Thanks,
    Gerhard Kuhn
    [email protected]

  • When i open iPhoto and want to share my photo on face book its popup with problem occur and ask me to repair when i repair it appears back again?

    when i open iPhoto and want to share my photo on face book its popup with problem occur and ask me to repair when i repair it appears back again?

    The Firefox Page Zoom feature does a domain by domain level of saving the users preferred zoom level settings, there is no default Page Zoom level setting in Firefox.
    Try the Default FullZoom Level extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/6965
    Or the NoSquint extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/2592/

  • Popup Manager In AS3

    What's the code for creating a Popup Manager in AS3?

    Hi --
    I believe that this has been removed from AS 3, at least for
    the moment. I
    myself was looking for a way to create a simple pop up box
    and had to write
    one myself.
    Rich
    "bdq1772" <[email protected]> wrote in
    message
    news:fjbsvh$idi$[email protected]..
    > What's the code for creating a Popup Manager in AS3?

  • Autocomplete text popup location problem

    Hi,
    I encounter a autocomplete text popup location problem
    whereas the popup location is always located few cm below the textBox itself.
    Any idea how to solve this?
    Is there any property i need to set in order to prevent this?
    I am using BluePrints Ajax Component by the way.
    Thanks

    yea.
    i think that is the problem.
    i have a autocomplete textfield under groupPanel and this groupPanel is located under gridPanel
    and the resultiing popup list is located outside the panel itself.
    Thanks.
    Can u refer me to the bug URL?
    is there any workaround for this?
    Thanks

  • KT4 Ultra APCI power management problems

    After I boot I must go into Win98 power management propertys and apply to get any power management functions to work. And then all I can get is monitor blank and hardrive power down. Unit will not go into suspend.
    If I use the suspend feature in power down the unit will go into suspend (Susp to ram) but all the fans keep running. When I come out of suspend, the system becomes unstable and quirky.
    Can anyone help me get this running the way it should.
    Joel Gunn
    Kt4 Ultra V 1.0 Bios V 1.4 - AMD 2100 XP
    Win98 Se
    Nanya 256M - 333 Ram X2
    Ati Radeon 7500 AIW
    Enemax EG 365P -VE
    Two Maxtor 80Gig Ata 133, 7200 on a Promise TX2 Ultra 133 controller.
    Aopen Modem
    CD rom and CDR/RW

    Hi,
    Check whether all the supported patches are installed.
    Regards,
    Dharani
    SlashSupport
    A couple of weeks ago I installed quite a few of the
    patches in the recommended list.
    Since then, I get the following message repeated
    continually in the console window:
    DPMSSet: Invalid argument
    Power management problems
    I'm runnig solaris 8 on a ultra 5. I looked in the
    power.config file and in the startup scripts, but
    couldn't find any reference to "DPMSSet." Any ideas on
    the cause and solution of the message?
    I never use the powerd daemon, so killing the process
    seems to eliminate the messages.
    Thanks,
    Gerhard Kuhn
    [email protected]

  • Popup minimize problem in Firefox

    Hi everyone,
    I'm using JDeveloper 10.1.3.3.0.4157. I'm having problems when I try to minimize a popup window in Firefox. When I do, window minimizes and restores automatically, and it starts "bouncing" to and from the taskbar. To stop it, I must switch to another application by using alt + tab and returning, or open the Task Manager. I've read that window control events cannot be handled, nor can buttons be disabled or hidden.
    Thanks in advance.

    Hi Frank,
    I just created an empty project in JDeveloper, with the [JSF, ADF BC] template, with only the caller window and the dialog window. Plain windows, with just a link in the caller window and an outputText in the dialog window. When I run the program, I open the dialog window through the link (with has only the navigation rule as an action (dialog:helper), and the attribute UseWindow set to true). Then I minimize it, and it does, but then springs back up, then minimizes again, and so on. I tried it in Google Chrome, and it behaves just fine, when you minimize the dialog, it stays minimized.
    If I can't fix it, at least I need to provide a technical explanation for my client. The "bouncing" does not happen if I switch to another application, then back to the dialog, and minimize it. Focus goes to the other application and everything works fine. But when focus goes to the caller Firefox window, the dialog window is restored, and starts to minimize and restore indefinitely. By switching to another application it can be stopped, but I still need to explain this behaviour to my client.
    Thank you for answering, I hope I could make myself clear, as English is not my native language.
    Alejandro

Maybe you are looking for

  • Hp Photosmart 7520 e-all-in-o​ne-series (wireless)

    When I go to print documents, I get 10 in Queue.  The blue light indicates that wireless connection has been established and you can print.

  • Shortcut-Bug in Bridge CS6 for Mac / Bridge cant' copy and paste metadata

    The cmd-keys / shortcuts doesn't work in the file info panel btw. in the xmp / iptc fields (e.g. cmd+c, cmd+v, ...) of Adobe Bridge CS6 (Mac OS 10.6.8 and 10.7.3). You are not able to cut and paste info from one box to another like previous versions.

  • How to load flat files to BI

    Hi All, I am new to SAP BI. PLease tell me how to load excel files to BI.

  • Process does not perform an update.

    I have this PL/SQL process in my page: UPDATE tag_order SET order_date = SYSDATE WHERE order_number = :P16_Order_Number; COMMIT; Unfortunately, it does not perform the update. What could be wrong? FYI: In order to get to the page where this process i

  • Oracle8i Installation Help Page

    Just like the previous poster, I too have created my own page on installing 8i on linux, mainly focusing on redhat 6.0, but other details may apply to other distros. It aint complete yet, as I still have to finish the post-database creation page. htt