Flex 4.5 - Cairngorm Module Support error with creationComplete

Hi
As a starting point I've already posted a thread (see link below)
http://forums.adobe.com/thread/970855?start=0&tstart=0
but I've had no luck in solving this.
I have an mx:Application which loads a module defined in ShellContext(see below) using a ParsleyModuleDescriptor and is loaded using Cairngorn's ModuleViewLoader with BasicLoadPolicy.
The module loads fine, however the module's children/components are not initialized correctly.
The module is called DashboardModule. Its creationComplete handler is invoked last.
The DashboardModule contains DashboardView and DashboardView's creationComplete also gets invoked second to last,
however DashboardView's children's creationComplete never get invoked.
So in particular, in DashboardView, the mx:ApplicationControlBar, the mx:Button, and the presentation:DashboardSearchView, presentation:DashboardMyApproval etc etc, are all initialized ( i can see the traces that are added there) but their creationComplete handlers never get invoked.
I have tried adding creationPolicy="all", at application level, at module level and at component level with no luck.
I have spent 2 whole days on this and I still haven't been able to figure out the problem.
We've used cairngorm modules before with Parsley and Flex 4.5.1 and we've never had such a problem.
To be more precise, I have the following configuration:
---ShellContext
<fx:Object>
        <commonPresentation:NavigationHandlerPM id="navigationPM"/>
        <module:ParsleyModuleDescriptor objectId="dashboard"
            url="DashboardModule-1.0-SNAPSHOT.swf"
            applicationDomain="{ ClassInfo.currentDomain }"/>
</fx:Object>
--DashboardModule.mxml
<mx:Module
    width="100%" height="100%"
    backgroundColor="white"
    horizontalAlign="left"
    verticalAlign="top"
    layout="vertical" verticalScrollPolicy="off" horizontalScrollPolicy="off"
          creationComplete="creationComplete();"
    xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:spicefactory="http://www.spicefactory.org/parsley"
    xmlns:cairngorm="com.adobe.cairngorm.*"
    xmlns:presentation="com.test.presentation.*">
    <fx:Declarations>
        <spicefactory:ContextBuilder id="spiceFactoryContextBuilder">
                              <cairngorm:CairngormModuleSupport/>
                              <cairngorm:CairngormIntegrationSupport/>
                              <cairngorm:CairngormNavigationSupport/>
                              <spicefactory:FlexConfig type="{DashboardContext}"/>
                              <spicefactory:ViewSettings autowireComponents="true"/>
        </spicefactory:ContextBuilder>
        <spicefactory:FastInject  property="model" type="{DashboardPM}"/>
        <spicefactory:Configure/>
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            [Bindable]
            [Inject(id="dashboardPM")]
            public var model:DashboardPM;
            private function creationComplete():void
                trace('i should be called last god damn it');
                model.startLoading();
        ]]>
    </fx:Script>
    <mx:VBox
        width="100%" height="100%"
        verticalScrollPolicy="off" horizontalScrollPolicy="off">
        <presentation:DashboardView
            width="{this.width}" height="{this.height}"
            verticalScrollPolicy="on" horizontalScrollPolicy="on"
            userProfile="{shell.userProfile}"/>
    </mx:VBox>
</mx:Module>
----DashboardView.mxml
<mx:VBox
    width="100%" height="100%"
    creationComplete="createComplete()"
          xmlns:mx="library://ns.adobe.com/flex/mx"
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:spicefactory="http://www.spicefactory.org/parsley"
    xmlns:presentation="com.db.paragon.common.module.dashboard.presentation.*">
    <fx:Declarations>
        <spicefactory:Configure/>
    </fx:Declarations>
   <fx:Script>
        <![CDATA[
        import mx.core.FlexGlobals;
        import mx.utils.StringUtil;
        [Bindable]
        [Inject]
        public var searchModel:DashboardSearchPM;
        [Bindable]
        private var _userprofile:UserProfile;
        public function get userProfile():UserProfile {
            return this._userprofile;
        public function set userProfile(userPr:UserProfile):void {
            this._userprofile = userPr;
            setUserWelcomeString();
        public function createComplete():void {
              trace('i should be called second to last');
        ]]>
    </fx:Script>
    <mx:ApplicationControlBar
            initialize="trace('initialise control bar');" creationComplete="trace('controlbar complete');"
        width="100%"
        horizontalAlign="right"
        verticalAlign="middle">
        <mx:Text
            width="97%"
            left="10"
            fontSize="14"
            fontThickness="12"
            fontWeight="bold"
            textAlign="left"
            selectable="false" text="{userWelcomeString}"/>
        <mx:LinkButton id="help"
            width="60"
            color="gray"
            textAlign="right"
            label="Help"
            click='navigateToURL(new URLRequest(urlToHelp));'/>
    </mx:ApplicationControlBar>
    <mx:Button initialize="trace('initialise button')" creationComplete="trace('button complete');"/>
    <presentation:DashboardSearchView initialize="trace('initializesearchview');" creationComplete="trace('searchviewcomplete');" creationPolicy="all"/>
    <presentation:DashboardMyApproval initialize="trace('initializeapproval');" creationComplete="trace('approvalcomplete');" creationPolicy="all"/>
    <presentation:DashboardPendingApproval initialize="trace('pendingapproval');" creationComplete="trace('pendingapprovalcomplete');" creationPolicy="all"/>
    <presentation:DashboardReviewsDue initialize="trace('reviewsdue');" creationComplete="trace('reviewsdue');" creationPolicy="all"/>
    <presentation:DashboardHistCreditApplications initialize="trace('histcreditapps');" creationComplete="trace('histcredcomplete');" creationPolicy="all"/>
    <presentation:DashboardRatingWriteups initialize="trace('ratingwriteups');" creationComplete="trace('ratingwriteupslcomplete');" creationPolicy="all"/>
    <presentation:DashboardNotifications initialize="trace('notifications');" creationComplete="trace('notificationscomplete');" creationPolicy="all"/>
</mx:VBox>
Any help is greatly appreciated.

Yes, there are all kinds of problems when you remove something from the screen that had focus (for instance, at that point you can't capture keyboard events either).
My code is sprinkled with so many things to make sure something is in focus, I tend to forget that I've done it.
In your code that changes the currentState, add
this.setFocus()
HTH;
Amy

Similar Messages

  • E3000 shows "USB is not supported" error with External Harddrive

    I have the E3000 router and recently purchased a USB WD (Western Digital) 2TB External Harddrive.  I plug the Harddrive into the router, open the router homepage (http://192.168.1.1/) then click on Storage > Disk and I get a "The attached USB is not supported" error - any suggestions on how to fix this?
    Thanks for any help!
    Solved!
    Go to Solution.

    Likely Final Update:  WD Support sent me a link to download / install SmartWare and solve the problem I was having with the SmartWare software ("Drive Settings" was greyed out).  Once I got SmartWare back up and running I was able to change the "Drive Settings" within SmartWare.  As the last update suggested, I modified the sleep timer settings and security (password settings) and tested to get the following results:
    Sleep Timer on / Password protection on:  E3000 shows "USB not supported"
    Sleep Timer off / Password protection on:  E3000 shows "USB not supported"
    Sleep Timer on / Password protection off:  WD Hard Drive seen and seems to function properly when connected to E3000
    Sleep Timer off / Password protection off:  WD Hard Drive seen and seems to function properly when connected to E3000
    So (other than maybe some inital problems with the WD SmartWare) it appears the "USB is not supported" error is due to the Password protection being turned on for the External Hard Drive.  This point should be highlighted in the Western Hard Drive materials but I don't see it anywhere on the box or in the manual (maybe its fine print in the manual).  Cisco and / or Western Digital are screwing us by not allowing password protection (or making this point known) on at this least model of Hard Drive!
    Thanks again to everyone that helped with troubleshooting this!  

  • Files not supported error with Sorenson Squeeze 4

    I'm trying to create flv. files for a video art site on the web. I have tried importing Sorenson 3 mov files, mpeg4 and mpeg2 files and simple QT files, thye all say "files not supported" after the compression says complete, and they won't play. What am I doing wrong? How shoudl I export my final cut pro movies so Squeeze will compress them? Secondly, there are a huge number of choices under flash, which should I be selecting?

    I'm trying to create flv. files for a video art site
    on the web. I have tried importing Sorenson 3 mov
    files, mpeg4 and mpeg2 files and simple QT files,
    thye all say "files not supported" after the
    compression says complete, and they won't play. What
    Huh? Who are they? You mean, Final Cut Pro? Is Quick Time Player selected in 'External Editors' under Final Cut Pro's 'System Settings'?
    am I doing wrong? How shoudl I export my final cut
    pro movies so Squeeze will compress them? Secondly,
    You mean, Sorenson Squeeze 4?
    there are a huge number of choices under flash, which
    should I be selecting?
    Sorry to say, but if you are familar with video compression, those settings are pretty much basic, and I don't know exactly what to explain to you.
    iMac G5 2GHz   Mac OS X (10.4.3)   1,536 MB RAM
    iMac G5 2GHz   Mac OS X (10.4.3)   1,536 MB RAM
    iMac G5 2GHz   Mac OS X (10.4.3)   1,536 MB RAM

  • Cairngorm Modules Library and Flex 3

    Are there any plans for the Cairngorm Modules Library to support Flex3 Projects. There's no Flex 3 SWC for the latest version (0.9) available.
    Patrick

    We use conditional compilation and Maven in order to generate the a Flex 3 and Flex 4 version of all libraries. The module library was trickier to setup but I think we're almost there. But you can build it yourself from trunk with using the Flex3 conditional compilation flag and with removing the classes that don't compile (that's i.e. what we want Maven to do for us).

  • Does Cairngorm MVC support Flex 4.5?

    The latest Cairngorm MVC is version 3. Does it support Flex 4.5? Can it work with Spark components?

    From what I have learned, Cairngorm 3 isn't an MVC, it's a collection of utility libraries, and I believe it does work with current versions of Flex.
    Cairngorm 2 on the other hand is an MVC, and does not seem to be supported in Flex 4.*  If anyone can offer additional info or insight into this, please do.

  • Oracleasm lib failed to load with "Invalid module format" error

    Hi,
    I'm tring to install the oracleasm lib onto our hardened Redhat EL5 server
    I've download the oracleasm rpm from this page http://www.oracle.com/technology/software/tech/linux/asmlib/rhel5.html.
    We're using Redhat 5 U 2
    [root@PG673 modules]# uname -rm
    2.6.18-92.el5 x86_64
    [root@PG673 modules]#
    The package I downloaded is an exact match with our kernel version
    [root@PG673 modules]# rpm -qa | grep asm
    oracleasm-2.6.18-92.el5-2.0.5-1.el5
    oracleasm-support-2.1.3-1.el5
    oracleasm-support-2.1.3-1.el5
    oracleasm-2.6.18-92.el5-2.0.5-1.el5
    oracleasmlib-2.0.4-1.el5
    oracleasmlib-2.0.4-1.el5
    [root@PG673 modules]#
    RPM installation went well, but when we run the /etc/init.d/oracleasm configure command, we hit the following error
    [root@PG673 other]# /etc/init.d/oracleasm configure
    /etc/init.d/oracleasm: line 207: /usr/sbin/oracleasm: cannot execute binary file
    Later we found out that the oracleasm module haven't been loaded, so we try to load it manually, but we hit the "Invalid module format" error.
    [root@PG673 modules]# modprobe -l | grep asm
    /lib/modules/2.6.18-92.el5/kernel/drivers/addon/oracleasm/oracleasm.ko
    [root@PG673 modules]# modprobe oracleasm
    FATAL: Error inserting oracleasm (/lib/modules/2.6.18-92.el5/kernel/drivers/addon/oracleasm/oracleasm.ko): Invalid module format
    [root@PG673 modules]#
    As I know this error could happen if the driver version is not match with the system kernel version.
    The problem is we're already using an exact match version of driver with our system, I can't think of what to do next in order to proceed the installation.
    Really appreciate if someone could point me a direction.
    Thanks
    Mike

    Hi Mike,
    something looks a bit strange for me. On my OEL 5.4 x64 system i have just the following 3 packages:
    $ rpm -qa | grep asm
    oracleasm-2.6.18-164.el5-2.0.5-1.el5
    oracleasm-support-2.1.3-1.el5
    oracleasmlib-2.0.4-1.el5 Your packages should be I think the following:
    http://oss.oracle.com/projects/oracleasm-support/dist/files/RPMS/rhel5/amd64/2.1.3/oracleasm-support-2.1.3-1.el5.x86_64.rpm
    http://otn.oracle.com/software/tech/linux/asmlib/files/RPMS/rhel5/amd64/2.0.4/oracleasmlib-2.0.4-1.el5.x86_64.rpm
    http://oss.oracle.com/projects/oracleasm/dist/files/RPMS/rhel5/amd64/2.0.5/2.6.18-92.el5/oracleasm-2.6.18-92.el5-2.0.5-1.el5.x86_64.rpm
    Uninstall all asm packages and retry with just those three.
    Good luck!
    Cheers,
    David
    OCP 9i / 10g
    http://www.oratoolkit.ch/knowledge/howto/installation/otn.php

  • I get an error message when trying to sign into the support community with another Apple id. On the pick a username screen I get "an account utilizing this address already exists...." despite trying a few usernames. Anyone know how I can resolve this?

    I get an error message when trying to sign into the support community with another Apple id. On the <pick a username> screen I get "an account utilizing this address already exists.Only one account per email address is allowed on the Apple Support Communities" despite trying a few usernames. Anyone know how I can resolve this?

    This problem has been driving me demented. The instructions that Ivan gives have partially worked for me. By following his link
    "How to find out if you have multiple Apple IDs" I was able to identify that yes I did have two apple accounts using the same e mail address. One was very old that I used to use for the forum boards and one is my much more recent ID that I use for everything these days. So I changed the e mail address for the old account which is associated with these discussion boards and that's the account that I am now posting this from. However even though the two accounts now have different e mail addresses when I try to log onto the boards with my more recent main apple ID I still get all the same errors as described at the start of this thread by rodgers_j. And of course that's the one I want to use so that I only have one itunes account for everything.
    So if anyone has any more hints I'd be very grateful.

  • Error with data transfer in functional module

    Hi all,
    I need to upload file to the employee through BDS. (oaor transcation).  i am using functional module
    function zin_bds_dms_upload.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(P_CLASS) TYPE  BDN_CON-CLASSNAME
    *"     VALUE(P_OBJCT) TYPE  BDN_CON-OBJKEY
    *"     VALUE(P_DESCR) TYPE  BDN_CON-DESCRIPT
    *"     REFERENCE(P_PATH) TYPE  SAPB-SAPFILES
      data: begin of i_bds_conn occurs 10, " ITAB for the actual
             bdn_tab_i type  num08,
            client type mandt,
            classname type      seoclsname,
            classtype     type bds_clstyp,
            objkey  type  bds_typeid,
            log_system    type swo_typeid,
            loio_id   type char42,
            doc_ver_no    type num08,
            doc_var_id    type num08,
            doc_var_tg    type bds_var_tg,
            descript    type sdok_descr,
            langu   type spras,
            comp_id   type bds_compid,
            mimetype  type  bds_mimetp,
            crea_user   type sdok_crusr,
            crea_time   type sdok_crtst,
            chng_user   type sdok_chusr,
            chng_time   type sdok_chtst,
            contrep   type bds_conrep,
            docuclass   type sdok_prv_m,
            doc_type    type sdok_prv_s,
            expirytime    type sdok_prv_m,
            bds_docid   type sdok_prv_l,
            loio_id_to    type sdok_loid,
            rela_id     type      bds_relaid,
            state   type sdok_phsta,
            bds_status    type bds_state,
            stor_tab  type saearstat,
            bdn_tab_d     type bar_keep,
            note_type     type bds_state,
            objecttext type toasp-objecttext,
            objecttext2 type toasd-objecttext,
            objecttext3 type toasr-objecttext,
            ntext type tojtt-ntext,
    end of i_bds_conn.
      data: begin of bds_doctype_list occurs 10,
      mandt type mandt,
      classname type bapibds01-classname,
      contrep type bapibds01-contrep,
      docuclass type bapibds01-doc_class,
      docuclass_text type toasd-objecttext,
      doc_type type bapibds01-doc_type,
      doc_type_text type toasp-objecttext,
      appl_type type toadd-appl_type,
      appl_type_text(50) type c,
      standard type toadv-standard,
      check_box type toadv-standard,
      end of bds_doctype_list.
      data: file_extension type toadd-doc_type, " file-extension
      i_files type bapifiles occurs 1 with header line,
      i_signature type bapisignat occurs 1 with header line,
      logical_system type bds_conn00-log_system.
      data: classname_select type bdn_con-classname,
      classtype_select type bdn_con-classtype,
      objkey_select type bdn_con-objkey,
      mask(20) type c,
      answer type c,
      mimetype type toadd-mimetype,
      i_toadd type toadd,
      file_path type sapb-sapfiles,
      filename_all type sapb-sapfiles,
      file_path_memory(250) type c, " path für SAP memory
      file_path_length type i, " length of the file_path
      file_name type sapb-sapfiles.
      classname_select = p_class.
      classtype_select = 'BO'.
      objkey_select = p_objct.
      filename_all = p_path.
      get parameter id 'OAP' field file_path.
      if sy-subrc <> 0. " no file_path found.
        file_path = space.
      endif.
      concatenate ',.' '' ',.' '' '.' into mask.
    -- split filename -- *
      perform split_path(oaall) using filename_all file_path file_name.
    -- set new file_path to SAP memory -- *
      file_path_length = strlen( file_path ).
      if file_path <> space and file_path_length < 250.
        file_path_memory = file_path.
        set parameter id 'OAP' field file_path_memory.
      else.
        file_path_memory = space.
        set parameter id 'OAP' field file_path_memory.
      endif.
    -- check documentclass -- *
      perform get_file_extension using file_name
      file_extension.
    -- check file extension -- *
      if file_extension = space.
    -> if no docuclass is found from the document
    -> default docuclass from the doctype!
        file_extension = bds_doctype_list-docuclass.
      endif.
    -- get the mimetype of the docuclass -- *
      perform mimetype_get(oaall) using file_extension
      changing i_toadd.
      move i_toadd-mimetype to mimetype.
    -- fill file and signature structure -- *
      clear: i_files, i_signature.
      refresh : i_files, i_signature.
      i_files-doc_count = 1.
      i_files-directory = file_path.
      i_files-filename = file_name.
      i_files-mimetype = mimetype.
      append i_files.
      i_signature-doc_count = 1.
      i_signature-prop_name = 'BDS_DOCUMENTCLASS'.
      i_signature-prop_value = file_extension.
      append i_signature.
      i_signature-prop_name = 'BDS_CONTREP'.
      if bds_doctype_list-contrep = space.
        i_signature-prop_value = ' '.                           "#EC NOTEXT
      else.
        i_signature-prop_value = bds_doctype_list-contrep.
      endif.
      append i_signature.
      i_signature-prop_name = 'BDS_DOCUMENTTYPE'.
      i_signature-prop_value = bds_doctype_list-doc_type.
      append i_signature.
      i_signature-prop_name = 'DESCRIPTION'.
      i_signature-prop_value = p_descr.
      append i_signature.
      i_signature-prop_name = 'LANGUAGE'.
      i_signature-prop_value = sy-langu.
      append i_signature.
    -- create new document via KPro -- *
      call function 'BDS_BUSINESSDOCUMENT_CREATEF'
        exporting
          logical_system = logical_system
          classname      = classname_select
          classtype      = classtype_select
          client         = sy-mandt
          object_key     = objkey_select
        tables
          files          = i_files
          signature      = i_signature
        exceptions
          internal_error = 1
          others         = 2.
    endfunction.
    *& Form GET_FILE_EXTENSION
    try to get the extension of the uploaded file
    form get_file_extension using file_name file_extension.
    -- data declaration ------------------------------------------------ *
      data: length type i,
      single_c type c.
      data: begin of bds_doctype_list occurs 10,
      mandt type mandt,
      classname type bapibds01-classname,
      contrep type bapibds01-contrep,
      docuclass type bapibds01-doc_class,
      docuclass_text type toasd-objecttext,
      doc_type type bapibds01-doc_type,
      doc_type_text type toasp-objecttext,
      appl_type type toadd-appl_type,
      appl_type_text(50) type c,
      standard type toadv-standard,
      check_box type toadv-standard,
      end of bds_doctype_list.
      clear: single_c.
      length = strlen( file_name ).
      if length > 0.
        while length > 0.
          single_c = file_name+length(1).
          if single_c co '.'.
            length = length + 1.
            exit.
          else.
            length = length - 1.
          endif.
        endwhile.
        if length > 0.
          file_extension = file_name+length.
        else.
          file_extension = space.
        endif.
      else.
        file_extension = space.
      endif.
      if file_extension <> space.
        set locale language sy-langu.
        translate file_extension to upper case.              "#EC TRANSLANG
        set locale language space.
      endif.
    endform.                    "get_file_extension
    example  : class = PREL
    object = pernr_no
    desc =  'leav application'
    p_path = file_path
    I used this in abap program then it is uploading fine but when used in the web dynpro file is not uploading. On debugging it is showing error in function module SDOK_PHIOS_CHECKIN
    error key 5 ie error in transfer.
    So please suggest how to upload in web dynpro abap.
    Edited by: Bhavya belagal on Dec 22, 2010 11:55 AM
    Edited by: Bhavya belagal on Dec 22, 2010 12:09 PM

    Hallo Bhavya,
    Please do not post like this as it is not readable . Mostly when you describe it in a simple manner you would get more response.
    See this thread for answers from Thomas Jung [Re: Approach content repository other way then URL approach|Re: Approach content repository other way then URL approach]
    Wiki [http://wiki.sdn.sap.com/wiki/display/WDABAP/File%2bUpload%2busing%2bcl_fitv_gos%2bclass|http://wiki.sdn.sap.com/wiki/display/WDABAP/File%2bUpload%2busing%2bcl_fitv_gos%2bclass]
    Edited by: Baskaran Senthivel on Dec 22, 2010 2:42 PM

  • Syntax Error with Table Parameter (type: ANY) when Creating Function Module

    Hello experts,
    I want to create a function module with a table parameter and table type is ANY. But when I check (Ctrl+F7) this function module, syntax error occurs - "In this statement, the internal table "MSG_TABLE_ITEM" must have the type "STANDARD TABLE"."
    Could anyone tell me what the wrong is? And how can I fix it?
    Thanks,
    Shelwin

    Hi,
    For table parameters, you can only pass
    MSG_TABLE_ITM   TYPE STANDARD TABLE
    or
    MSG_TABLE_ITM  ( don't fill other columns TYPING ASSOCIATED TYPE  ).
    For reference check FM 'GUI_UPLOAD' - Table parameters
    Regards,
    DPM

  • Does Flex HttpService support https with client authentication

    Hi,
    We have a set of backend services available over https with client auth (cert based). We need to use mxml HttpService to access these backend services. Does HttpService support ssl with client auth?
    Another question is, for Https does flex share the browser keystore and certstore or uses its own?
    Thanks,
    Debashis

    Yes , a flex HTTPService can access services on https://.  But if I remember correctly , to use an https:// service , the swf has to be served on an https.  Example ,
    Served from https:// ... --> Can access https:// ...
    Served from https:// ... --> Can acess https:// ...
    Served from https:// ... --> CANNOT access https:// ...
    Served from https:// ... --> CANNOT access https:// ...
    Since Flex has the browser do the connecting , the browser handles the keystore stuff , not Flex. I think.

  • Scheduling agreements with time-independent cond are not supported - Error

    Hi All
    Processing IDOC IDOC_INPUT_PURSAG_CREATE  for schedule agreements.
    the BAPI BAPI_SAG_CREATE  is being called internally  to create schdule agreements.
    I am using this BADI  ME_PROCESS_OUT_CUS to update the field EKKO-STAKO for time dependent condition.
    I need to update the value EKKO-STAKO = 'X'  inorder to get IDOC posted.
    The value 'X' which I update in this class is not getting populated in the subsequent include LMEOUTP07.
    I am using this class IF_EX_ME_PROCESS_OUT_CUST~OPEN to update the field EKKO-STAKO. This is the class which is getting triggered  before the below mentioned error code.
    Pgm Code:
        IF l_context->header_new->header-stako IS INITIAL.
      system supports documents with master conditions only!
          mmpur_message_forced 'E' 'MEOUT' '019'
                          l_context->header_new->header-bsart '' '' ''.
          re_valid = mmpur_rule_invalid.
        ENDIF.
      It wld be helpful if anyone suggest to update this field.
    Thanks in Advance

    That's interesting. I bet that helps other Safari users! 

  • I downloaded the Windows 64-bit version of iTunes, but the application won't run. It comes up with Apple Application Support - Error 2.  How can I fix this?

    I downloaded the Windows 64-bit version of iTunes, but the application won't run. It comes up with Apple Application Support - Error 2.  How can I fix this? I have uninstalled and reinstalled it several times and it still doesn't work.

    What computer do you have?  is it 32 or 64 bit operating system?

  • HT5022 10.8.4 is throwing an error with this software: "Airport Utility cannot be installed on this disk. The version of Mac OS X on this volume is not supported"

    10.8.4 is throwing an error with this software: "Airport Utility cannot be installed on this disk. The version of Mac OS X on this volume is not supported"

    You are trying to install a version of Airport Utility earlier than 6.0, correct? If so see the following: Installing the Old AirPort Utility (Version 5.6) on Mountain Lion | frank.is.

  • CS2 Scanning Problem - error with acquisition module interface

    Hi there,
    I have an Epson Perfection 4180 scanner which has worked for years. I moved, plug everything back in, the scanner works one time, and from then on, I get this error: "Could not complete the Import command because of an error with acquisition module interface."
    I've searched around, and seen others with this problem, but, no real solution. From what I've read, it's a Photoshop issue. I've downloaded the TWAIN drivers and re-installed the scanner, and deleted Photoshop's preferences file. The scanner does work through the Windows Scanner Wizard. I've turned off the Windows Image Acquisition thing in the control panel, and then turned it back on.
    ARGH, I am really pulling my hair out. Please help!
    Thanks so much!

    I'd try to avoid the hassle of messing with the PS installation if possible.
    One other thing I have seen is to temporarily disable the Twain plug-in, with a ~ in front of the name, in
    C:\Program Files\Adobe\Adobe Photoshop CS3\Plug-Ins\Import-Export

  • I use CS5 and all of a sudden I am getting a notification that says there is an error with my icons. It's telling me to contact support or reinstall. The problem is I don't know where my disks are to re-install. Any suggestions?

    I use CS5 and all of a sudden I am getting a notification that says there is an error with my icons. It's telling me to contact support or reinstall. The problem is I don't know where my disks are to re-install. Any suggestions?

    doodlebug,
    Am I just out of luck until I find those?
    You may try Adobe Support (phone),
    http://helpx.adobe.com/adobe-connect/adobe-connect-phone-numbers.html
    and talk to them about your registration, but I am unsure whether they can help you with anything pre CC (There was a Customer Care option with chat which seems to have stopped working).
    If you are still out of luck, please report back, and I will try to ask someone to find the right someone to help you.

Maybe you are looking for

  • Firefox 3.6.11 does not respond on mouse, only Tab key and space bar

    HW: Lenovo R61i. OS: MS Win-XP PRO, ver 20002, SP3 Internet Explorer is diabled in: Contol Panal|add/remove programs|add/remove windows components All other programs responds om USB mouse or the little joy-stick between G, H and B-keys. Removed FF, b

  • Selecting and Moving Groups in iPhoto 6

    This problem only started happening after upgrading to iPhoto 6 and the new iLife suite. In prior versions, I never encountered this problem regardless of the version of the system software (Panther or Tiger). When I go to the iPhoto Library on my G5

  • Operating system  comand to copy files in Unix through ODI

    HI All, I am using ODI 11 and Oracle 11 g. I need to copy some files and put in another folder using the OS command as "cp /dean/sc/ready_file_*.dat /dean/sc/lony" But when i execute the OS command in ODI it gives error as ODI-1226: Step OS Command 1

  • Why different values in Illustrator/InDesign/PS when converting Pantone to RGB & CMYK?

    I'm starting off with a pantone color in InDesign and trying to determine a close and consistent approximation of RGB, CMYK, and Hex. When I do this conversion in InDesign, I get different results than if I do it in Photoshop or Illustrator. I have a

  • ABAP query to be modified

    Hi, I have one ABAP query which is already created by someone. I want to ADD one field in where condition.. How do I do itu2026Need to add it in where condition in select query. I want to know the steps to be followed.. Thanks RB