FExecuteCustomScriptAsync doens't work

Hello community!
I am novice in FDM, and i would be very greatful, if you assist me with my problem in FDM scripting.
FDM version is 11.1.2.1.00
I wrote 2 custom scripts - General and Web scripts
General script:
1) General script execute SQL-query that gets data from database.
2) Then data is saved to an Array.
3) Then script open existing XLS file, that is used as a document template (it has columns headers for date, business unit, data and so on).
4) Data is loaded to XLS file.
5) XLS file is SAVED AS in catalog "Archive" with the name "BU_<date>"
WebScript - just execute genereal script with this code:
Sub webwebSAP2FDM()
'Asynchronous Script Processing
'Declare Local Variables
Dim strScriptToRun
Dim strLoadBalanceServerName
strScriptToRun = "SAP_2_HYP_COPY_XLS" 'Name of the script to execute (Type Custom General Only)
strLoadBalanceServerName = "HYP-APP1T" 'Load balance server for Asynchronous process to use
If API.DataWindow.Utilities.fExecuteCustomScriptAsync(CStr(strScriptToRun), CStr(strLoadBalanceServerName)) = True Then
MsgBox "OK"
Else
MsgBox "Failed"
End If
End Sub
General script work just fine - all data is loaded from DB to array and then to file, and file with data is saved in "Archive" folder.
The problem is with web script - there is no errors, but it refuses to execute general script ("Failed" MsgBox appears).
Best regards,
Mike
Edited by: 904661 on 27.12.2011 23:58

For now my goal is just to save data in XLS file by clicking task button in FDM. Task button is assigned to web script in which I try to execute Custom script. The problem is with API.DataWindow.Utilities.fExecuteCustomScriptAsync - it doesn't execute custom script.

Similar Messages

  • Event double -click doens't work

    Dear All,
    Pls help event double -click doens't work.
    What can the reason be for it ?
    Regards
    Ilhan
    data tree1 type ref to cl_gui_alv_tree.
    data mr_toolbar type ref to cl_gui_toolbar.
    include <icon>.
    data: gt_sflight      type ZQMCOMP occurs 0,      "Output-Table
          gt_fieldcatalog type lvc_t_fcat, "Fieldcatalog
          ok_code like sy-ucomm.           "OK-Code
    *  TREE_EVENT_RECEIVER                                                 *
    class tree_event_receiver definition.
      public section.
        methods on_doubleclick
         for event link_click of cl_gui_alv_tree
          importing node_key fieldname.
    ENDCLASS.                    "lcl_handler DEFINITION
    *       CLASS tree_event_receiver IMPLEMENTATION
    class tree_event_receiver implementation.
      METHOD on_doubleclick.
        MESSAGE I000(38) WITH fieldname.
      ENDMETHOD.                    "on_doubleclick
    endclass.
    start-of-selection.
    end-of-selection.
    call screen 100.
    *&      Module  PBO  OUTPUT
    *       process before output
    module pbo output.
      set pf-status 'MAIN100'.
      if tree1 is initial.
        perform init_tree.
      endif.
      call method cl_gui_cfw=>flush.
    endmodule.                             " PBO  OUTPUT
    *&      Module  PAI  INPUT
    *       process after input
    module pai input.
      case ok_code.
        when 'EXIT' or 'BACK' or 'CANC'.
          perform exit_program.
        when others.
          call method cl_gui_cfw=>dispatch.
      endcase.
      clear ok_code.
      call method cl_gui_cfw=>flush.
    endmodule.                             " PAI  INPUT
    *&      Form  build_fieldcatalog
    *       build fieldcatalog for structure sflight
    form build_fieldcatalog.
      data: ls_fieldcatalog type lvc_s_fcat.
      ls_fieldcatalog-fieldname = 'DUNS'.
      ls_fieldcatalog-col_pos  = 7.
      ls_fieldcatalog-coltext  = 'Duns'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'MONAT'.
      ls_fieldcatalog-col_pos  = 8.
      ls_fieldcatalog-coltext  = 'Monat'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'ZE'.
      ls_fieldcatalog-col_pos  = 13.
      ls_fieldcatalog-coltext  = 'Ze'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'MATKOSTEN'.
      ls_fieldcatalog-col_pos  = 14.
      ls_fieldcatalog-coltext  = 'Mat.Kosten'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'ANTEIL'.
      ls_fieldcatalog-col_pos  = 15.
      ls_fieldcatalog-coltext  = 'Anteil'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'GESMAT'.
      ls_fieldcatalog-col_pos  = 16.
      ls_fieldcatalog-coltext  = 'Ges.Mat'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'GESLOH'.
      ls_fieldcatalog-col_pos  = 17.
      ls_fieldcatalog-coltext  = 'Ges.Lohn'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      clear ls_fieldcatalog.
      ls_fieldcatalog-fieldname = 'GESAMT'.
      ls_fieldcatalog-col_pos  = 19.
      ls_fieldcatalog-coltext  = 'Gesamt'.
      APPEND ls_fieldcatalog TO gt_fieldcatalog.
      call function 'LVC_FIELDCATALOG_MERGE'
           EXPORTING
                i_structure_name = 'ZQMCOMP'
           CHANGING
                ct_fieldcat      = gt_fieldcatalog.
    endform.                               " build_fieldcatalog
    *&      Form  build_hierarchy_header
    *       build hierarchy-header-information
    *      -->P_L_HIERARCHY_HEADER  strucxture for hierarchy-header
    form build_hierarchy_header changing
                                   p_hierarchy_header type treev_hhdr.
      p_hierarchy_header-heading = 'Hierarchy-Kopf'.            "#EC NOTEXT
      p_hierarchy_header-tooltip =
                             'Hierarchy-Kopf !'.
      p_hierarchy_header-width = 30.
      p_hierarchy_header-width_pix = ''.
    endform.                               " build_hierarchy_header
    *&      Form  exit_program
    *       free object and leave program
    form exit_program.
      call method tree1->free.
      leave program.
    endform.                               " exit_program
    *&      Form  build_header
    *       build table for html_header
    *  -->  p1        text
    *  <--  p2        text
    form build_comment using
          pt_list_commentary type slis_t_listheader
          p_logo             type sdydo_value.
      data: ls_line type slis_listheader.
      clear ls_line.
      ls_line-typ  = 'H'.
      ls_line-info = 'LIBOLO '.
      append ls_line to pt_list_commentary.
      clear ls_line.
      clear ls_line.
      ls_line-typ  = 'A'.
      ls_line-info = 'Liste'.
      append ls_line to pt_list_commentary.
    *  p_logo = 'ENJOYSAP_LOGO'.
    endform.
    *       FORM create_hierarchy                                         *
    FORM create_hierarchy.
      data: ls_sflight type ZQMCOMP,
            lt_sflight type ZQMCOMP occurs 0.
    * get data
      select * from ZQMCOMP into table lt_sflight.
    *  sort lt_sflight by carrid connid fldate.
    * add data to tree
      data: l_carrid_key type lvc_nkey,
            l_connid_key type lvc_nkey,
            l_last_key type lvc_nkey.
      loop at lt_sflight into ls_sflight.
        on change of ls_sflight-KUNDE.
          perform add_carrid_line using    ls_sflight
                                  changing l_carrid_key.
        endon.
        on change of ls_sflight-MONAT.
          perform add_connid_line using    ls_sflight
                                           l_carrid_key
                                  changing l_connid_key.
        endon.
        perform add_complete_line using  ls_sflight
                                         l_connid_key
                                changing l_last_key.
      endloop.
    * calculate totals
      call method tree1->update_calculations.
    * this method must be called to send the data to the frontend
      call method tree1->frontend_update.
    endform.                               " create_hierarchy
    *&      Form  add_carrid_line
    *       add hierarchy-level 1 to tree
    *      -->P_LS_SFLIGHT  sflight
    *      -->P_RELEATKEY   relatkey
    *     <-->p_node_key    new node-key
    form add_carrid_line using     ps_sflight type ZQMCOMP
                 p_relat_key type lvc_nkey
                         changing  p_node_key type lvc_nkey.
      data: l_node_text type lvc_value,
            ls_sflight type ZQMCOMP.
    * set item-layout
      data: lt_item_layout type lvc_t_layi,
            ls_item_layout type lvc_s_layi.
      ls_item_layout-t_image = '@3P@'.
      ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
      ls_item_layout-style   =
                            cl_gui_column_tree=>style_intensifd_critical.
      append ls_item_layout to lt_item_layout.
    * add node
      l_node_text =  ps_sflight-KUNDE.
      call method tree1->add_node
        exporting
              i_relat_node_key = p_relat_key
              i_relationship   = cl_gui_column_tree=>relat_last_child
              i_node_text      = l_node_text
              is_outtab_line   = ls_sflight
              it_item_layout   = lt_item_layout
           importing
              e_new_node_key = p_node_key.
    endform.                               " add_carrid_line
    *&      Form  add_connid_line
    *       add hierarchy-level 2 to tree
    *      -->P_LS_SFLIGHT  sflight
    *      -->P_RELEATKEY   relatkey
    *     <-->p_node_key    new node-key
    form add_connid_line using     ps_sflight type ZQMCOMP
                                   p_relat_key type lvc_nkey
                         changing  p_node_key type lvc_nkey.
      data: l_node_text type lvc_value,
            ls_sflight type sflight.
    * set item-layout
      data: lt_item_layout type lvc_t_layi,
            ls_item_layout type lvc_s_layi.
      ls_item_layout-t_image = '@3Y@'.
      ls_item_layout-style   =
                            cl_gui_column_tree=>style_intensified.
      ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
      append ls_item_layout to lt_item_layout.
    * add node
      l_node_text =  ps_sflight-MONAT.
      call method tree1->add_node
        exporting
              i_relat_node_key = p_relat_key
              i_relationship   = cl_gui_column_tree=>relat_last_child
              i_node_text      = l_node_text
              is_outtab_line   = ls_sflight
              it_item_layout   = lt_item_layout
           importing
              e_new_node_key = p_node_key.
    endform.                               " add_connid_line
    *&      Form  add_cmplete_line
    *       add hierarchy-level 3 to tree
    *      -->P_LS_SFLIGHT  sflight
    *      -->P_RELEATKEY   relatkey
    *     <-->p_node_key    new node-key
    form add_complete_line using   ps_sflight type ZQMCOMP
                                   p_relat_key type lvc_nkey
                         changing  p_node_key type lvc_nkey.
      data: l_node_text type lvc_value.
      data: lt_item_layout type lvc_t_layi,
            ls_item_layout type lvc_s_layi.
      ls_item_layout-fieldname = tree1->c_hierarchy_column_name.
      append ls_item_layout to lt_item_layout.
      l_node_text =  ps_sflight-QMART.
      call method tree1->add_node
        exporting
              i_relat_node_key = p_relat_key
              i_relationship   = cl_gui_column_tree=>relat_last_child
              is_outtab_line   = ps_sflight
              i_node_text      = l_node_text
              it_item_layout   = lt_item_layout
           importing
              e_new_node_key = p_node_key.
    endform.                               " add_complete_line
    *&      Form  register_events
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form register_events.
      data: lt_events type cntl_simple_events,
            l_event type cntl_simple_event.
      l_event-eventid = cl_gui_column_tree=>eventid_expand_no_children.
      append l_event to lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_header_context_men_req.
      append l_event to lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_node_context_menu_req.
      append l_event to lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_item_context_menu_req.
      append l_event to lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_header_click.
      append L_EVENT to lt_events.
      l_event-eventid = cl_gui_column_tree=>eventid_item_keypress.
      append L_EVENT to lt_events.
    * set Handler
      data: l_event_receiver type ref to tree_event_receiver.
      create object l_event_receiver.
      set handler l_event_receiver->on_doubleclick for tree1.
      call method tree1->set_registered_events
          exporting
            events = lt_events
          exceptions
            cntl_error                = 1
            cntl_system_error         = 2
            illegal_event_combination = 3.
      if sy-subrc <> 0.
        message x208(00) with 'ERROR'.                          "#EC NOTEXT
      endif.
    endform.                               " register_events
    *&      Form  change_toolbar
    *       text
    *  -->  p1        text
    *  <--  p2        text
    form change_toolbar.
    * get toolbar control
      call method tree1->get_toolbar_object
              importing
                  er_toolbar = mr_toolbar.
      check not mr_toolbar is initial.
    * add seperator to toolbar
      call method mr_toolbar->add_button
              exporting
                  fcode     = ''
                  icon      = ''
                  butn_type = cntb_btype_sep
                  text      = ''
                  quickinfo = 'This is a Seperator'.            "#EC NOTEXT
    * add Standard Button to toolbar (for Delete Subtree)
      call method mr_toolbar->add_button
              exporting
                  fcode     = 'DELETE'
                  icon      = '@18@'
                  butn_type = cntb_btype_button
                  text      = ''
                  quickinfo = 'Delete subtree'.                 "#EC NOTEXT
    * add Dropdown Button to toolbar (for Insert Line)
      call method mr_toolbar->add_button
              exporting
                  fcode     = 'INSERT_LC'
                  icon      = '@17@'
                  butn_type = cntb_btype_dropdown
                  text      = ''
                  quickinfo = 'Insert Line'.                    "#EC NOTEXT
    endform.                               " change_toolbar
    *&      Form  init_tree
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM init_tree.
    * create fieldcatalog for structure sflight
      perform build_fieldcatalog.
    * create container for alv-tree
      data: l_tree_container_name(30) type c,
            l_custom_container type ref to cl_gui_custom_container.
      l_tree_container_name = 'TREE1'.
      if sy-batch is initial.
        create object l_custom_container
          exporting
                container_name = l_tree_container_name
          exceptions
                cntl_error                  = 1
                cntl_system_error           = 2
                create_error                = 3
                lifetime_error              = 4
                lifetime_dynpro_dynpro_link = 5.
        if sy-subrc <> 0.
          message x208(00) with 'ERROR'.                        "#EC NOTEXT
        endif.
      endif.
    * create tree control
      create object tree1
        exporting
            parent              = l_custom_container
            node_selection_mode = cl_gui_column_tree=>node_sel_mode_single
            item_selection      = 'X'
            no_html_header      = ''
            no_toolbar          = ''
        exceptions
            cntl_error                   = 1
            cntl_system_error            = 2
            create_error                 = 3
            lifetime_error               = 4
            illegal_node_selection_mode  = 5
            failed                       = 6
            illegal_column_name          = 7.
      if sy-subrc <> 0.
        message x208(00) with 'ERROR'.                          "#EC NOTEXT
      endif.
    * create Hierarchy-header
      data l_hierarchy_header type treev_hhdr.
      perform build_hierarchy_header changing l_hierarchy_header.
    * create info-table for html-header
      data: lt_list_commentary type slis_t_listheader,
            l_logo             type sdydo_value.
      perform build_comment using
                     lt_list_commentary
                     l_logo.
    * repid for saving variants
      data: ls_variant type disvariant.
      ls_variant-report = sy-repid.
    * create emty tree-control
      call method tree1->set_table_for_first_display
         exporting
                   I_STRUCTURE_NAME     = 'ZQMCOMP'
                   is_hierarchy_header  = l_hierarchy_header
                   it_list_commentary   = lt_list_commentary
    *               i_logo               = l_logo
                   i_background_id      = 'ALV_BACKGROUND'
                   i_save               = 'A'
                   is_variant            = ls_variant
         changing
                   it_outtab            = gt_sflight "table must be emty !!
                  it_fieldcatalog      = gt_fieldcatalog.
    * create hierarchy
      perform create_hierarchy.
    * add own functioncodes to the toolbar
      perform change_toolbar.
    * register events
      perform register_events.
    * adjust column_width
      call method tree1->COLUMN_OPTIMIZE.
    ENDFORM.                    " init_tree

    Hi,
    to do so, you need to declare those fields in the form CREATE_HIERARCHY.
    For example, to add FLDATE node, you should do:
        ON CHANGE OF LS_SFLIGHT-CARRID.
          PERFORM ADD_CARRID_LINE USING    LS_SFLIGHT
                                  CHANGING L_CARRID_KEY.
        ENDON.
        ON CHANGE OF LS_SFLIGHT-CONNID.
          PERFORM ADD_CONNID_LINE USING    LS_SFLIGHT
                                           L_CARRID_KEY
                                  CHANGING L_CONNID_KEY.
        ENDON.
        ON CHANGE OF LS_SFLIGHT-FLDATE.
          PERFORM ADD_FLDATE_LINE USING    LS_SFLIGHT
                                           L_CONNID_KEY
                                  CHANGING L_FLDATE_KEY.
        ENDON.
        ON CHANGE OF LS_SFLIGHT-PRICE.
          PERFORM ADD_PRICE_LINE USING     LS_SFLIGHT
                                           L_FLDATE_KEY
                                  CHANGING L_PRICE_KEY.
        ENDON.
    and then create the new FORMS PERFORM ADD_PRICE_LINE and
    PERFORM ADD_FLDATE_LINE  by copy of the existent
    PERFORM ADD_CONNID_LINE and change the  L_NODE_TEXT in the form.
    I suposed you are new to ALV's, so i have a sugestion for you.
    Instead of  CL_GUI_ALV_TREE try to use some examples of CL_GUI_ALV_TREE_SIMPLE. It's much more simple to understand and to work with. For example Report BCALV_TREE_SIMPLE_DEMO.
    In this case, to add more nodes to the the you just need to add 3 lines of code in
    perform build_sort_table.
    Regards,

  • My Ipod just stopped working, the screen got black and now I can't open it. I have tried to charge it but it doens't work.

    My Ipod touch 5 just stopped working. The screen got black and now I can't use it or start it.
    I have tried to charge it but it doens't start and when I tried to connect it with my computer it didn't work either.
    I saw that you could hold down the "home" button and the "power" button at the same time but my home button doens't work so I can't do that.
    Is there any other way I can fix it or do I have to go to an apple store? 

    Try:
    Turn on without Home/Power Button

  • TS1702 My 3G iphone only loads few apps since I updated and the camera doen't work anymore, what now. Tried to reset to original settings and now it won't load apps, even old ones.

    My 3G iphone only loads few apps since I updated and the camera doen't work anymore, what now. Tried to reset to original settings and now it won't load apps, even old ones.

    What model iPod do you have? If yo have a 2G iPod. many developers when they updated their apps to support iOS 5 and 6 dropped compatibility for iOS 4.2.1 and earlier.

  • SKY go app but doens't work. There is a problem with iOs 6. What I can do

    I have an iPad I tried to use SKY go app but doens't work. There is a problem with iOs 6. What I can do

    The App says that there is not internet connection, even if I'm connected.

  • WiFi ON/OFF button Doen't Work, the IPod doesn't show the on/off button in the Settings- General - WiFi

    After My IPod Touch 4th Geneartion was broken I had to fix the screen, which cost me a lot, after a perfect restore through the ITunes I went to connect to my IPod to the WiFi network then the WiFi ON/OFF button Doen't Work, the IPod doesn't show the on/off button in the Settings-> General -> WiFi.
    And another problem I encountered during this operation was that the Games I downloaded through the ITunes doesn't work, when I click on the icon ( Game Icon) it starts an then closes in a few seconds

    See:
    iOS: Wi-Fi or Bluetooth settings grayed out or dim
    One user reported that placing the iPod in the freezer fixed the problem. A trick that works frequently with iPhones:
    Settings > AirPlane Mode ON, Do Not Disturb ON
    Power down and wait 5-10 minutes
    Power up
    Settings > AirPlane Mode OFF, Do Not Disturb OFF
    If not successful, an appointment at the Genius Bar of an Apple store is usually in order.
    Apple Retail Store - Genius Bar
    Apple wil not help since yo took the iPod apart
    Try taking  it apart and look for a disconnected antenna.
    Installing iPod Touch 4th Generation Wi-Fi Antenna - iFixit

  • My keyboard doens't work correctly when I push numbers it appears symbols and all the letters are not good

    My keyboard doens't work correctly when I push numbers it appears symbols and all the letters are not good

    I suspect someone or something in your house may have changed a keyboard preference. Try System Preferences - Keyboard - Keyboard tab  - uncheck Use all F1......

  • PROCEDURE DOENS'T WORK

    Hello there, i'm new on pls/sql, so i wanted to do a procedure which execute a grant select on all tables from a specific schema, the name of the schema is TESO, and i'm creating that procedure in ASILVA schema.
    The problem is when i try to execute the procedure, it doens't work it show me a message like
    Informe de error:
    ORA-00942: la tabla o vista no existe
    ORA-06512: en "ASILVA.GRANT_SELECT_ON_TABLE_SCHEMA", línea 6
    ORA-06512: en línea 1
    00942. 00000 - "table or view does not exist"
    *Cause:   
    *Action:
    that is when i execute: execute GRANT_SELECT_ON_TABLE_SCHEMA
    This is my procedure, and i didn't have any problem when i created it:
    CREATE OR REPLACE PROCEDURE GRANT_SELECT_ON_TABLE_SCHEMA
    AS
    BEGIN
    FOR x IN (select * from dba_tables where owner ='TESO')
    LOOP
    EXECUTE IMMEDIATE 'GRANT SELECT ON TESO.'|| x.table_name ||' TO fswbd';
    END LOOP;
    END GRANT_SELECT_ON_TABLE_SCHEMA;
    Please if anyone can help my, i would be gratefull.
    Edited by: Ng! on 21-dic-2011 14:39
    Edited by: Ng! on 21-dic-2011 14:39
    Edited by: Ng! on 21-dic-2011 14:40

    That the user can select from the tables is irrelevant to whether they have permission to access them via PL/SQL.
    SQL respects privileges granted via roles ... PL/SQL requires explicit grants.

  • GPS doen't work (Nokia 5230)

    I bought this phone mainly because it's big screen and GPS.
    But it just doen't work. At all.
    I left only GPS connection (A-GPS, Network etc. - are off).
    In Satellites-Status is finds sometimes up to 5 satellites with gray bars. (as I understand it means weak signal) and then nothing happens.
    Last night I went to railway station, which is high. The sky was absolutely clear with stars.
    No high buildings around. I holded the phone in the center (not to cover the antenne).
    And nothing happened. Only 4-5 gray bars maximum. Even after 10 minutes.
    I'm thinking about sending it back.
    Another problem - is one of the most stupidest programs I've ever seen - OVI-Suit.
    Absolutely illogical, insanely slow and fulled with mistakes.
    (The only program which is worse is Corel Draw Painter).
    And please, tell me someone, why the Options for GPS are in the Menu-> Applications-> My Position-> Options,
    but the Maps themselfs are in Menu-> Maps?
    I've heard just yesterday, that Nokia looses its market share very fast.
    And somehow I understand why.

    Hi DexterStJock
    If you are not going to utilize the Assisted GPS feature and rely solely on Integrated GPS you can expect initial positional fix to take a considerable time to acquire but subsequent lock-on will be much more rapid. If you haven't yet got a satellite lock-on don't expect a new location to be better as you could be anywhere in the world as far as it is concerned. Unfortunately GPS antenna size within a mobile device has to be compromised due to space limitations and unfair to compare with car sat nav unit.
    You are correct that "Positioning methods" are found in Menu > Applications > Location but this is independent of OVI Maps as other applications can utilize it's features.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • CTRL + F for folders doen't work in CS5

    Hi,
    When I used my CS 3 Dreamweaver, I could click in the folder list on a folder an pressd CTRL + F so I could search a word in this folder and all subfolder.
    But since I upgraded to CS 5 it doen's work anymore.
    I alway have to set the folder manually.
    Thanks for help
    pw

    It's a known issue. Hopefully, it will be fixed in an updater (if there is one) or the next version.

  • TS3871 I've tried this but it doen't work.

    I've tried this but it doen't work. I can't open the domain file. When i try iWeb opens but with no content! Please help. [email protected]

    Even with your detailed description of what "this" is we're only guessing at what your problem is.  Therefore try this guess fix:
    In Lion and Mountain Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or Mountain Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Keyboard doens't work, what to do?

    hey guys! I know, this is kinda stupid, but milk got on my MacBook. I whiped it off and it worked well for like 2-3 hours, but right now I figured, that the letter "a" doens't respond. What shoul I do?? I need held asap cuz I need my MacBook for school so bad. :O
    Thx Corlijn.

    Just for first aid you can show the keyboard on the screen and use the trackpad.
    Go to system preferences and select Language and Text and show keyboard on screen.
    Later you could use a BT keyboard and try to clean the original KB. Probably it will be necessary to change it.

  • Ipod doen't work anymore

    This morning when i woke up my ipod touch didn't work anymore.
    nothing work restore,home and sleep button itunes doen't reconize it anymore
    please help....
    sorry for my bad english

    If your iPod is still under warranty Apple will replace it.
    If you've got an Apple store near you make an appointment at the genius bar and bring it in.
    If you don't you'll have to google for the support address for your part of the world and email them.
    They'll email you back with instructions.

  • How can I upload my photos from an sd card to my Macbook Pro? I have done everything I know to do, and yet it still doens't work, I am frustrated and ready to sell this thing.

    I am so frustated with this computer, I cannot get it to do anything. I have read all the forums about moving photos from an sd card to this computer and nothing is working..Can anyone please help me before I sell this thing?

    put the card in the card reader, open the card (it should appear on your desktop) select the photos you want to copy and drag them to where ever you want to store them, or copy and paste them.  it is exceedingly simple.
    alternately open image capture and select the card from the list of devices and import them from there.  again very easy.

  • Tried everything, still doens't work

    So I had a original silver shuffle which was stolen. I loved it, so I bought another one. This one is green.
    My original original memory stick style iPod Shuffle never had a single issue beyond moisture... these new iPod Shuffle are just pieces of junk? Or is it just me?
    My original Silver Shuffle took me hours to setup and get it to function correctly. I posted for help on the boards here, and got a little. Finally found a post about shutting down iPod service, using the Reset tool, and then a sneaky Enable Disk Use fix. After 3 tries that finally worked for the Silver iPod.
    My new Green iPod does not work at all. I've tried all the tricks I can find here on Apple's website and nothing helps.
    My Green iPod is recognized by both iTunes and Windows when I plug it in. A window opens up to show me disk contents, which is empty. This is strange as the iPod has NOT been set for Disk use yet, and my iPod Service is running. iTunes sees the iPod and lists it in the sidebar. Any attempt to update, load songs to, change settings on the iPod results in an almost total lockup of iTunes. It freezes for 1 to 2 minutes, and then comes back and reports all is well.
    When I then try to copy songs, it tells me the disk can't be found. At this point the iPod is gone from My Computer, but the USB safe eject still shows the device as needing to be ejected, and iTunes still shows the iPod attached.
    Anyone out there with a suggestion on how to get this working? I've tried it on a Macbook also... still no luck. I was able to get one song on it once... the song played and all seemed well but further transfer of tunes to the Shuffle crashed it out again.
    Help!

    I tried the iTunes reset, tried the stand alone reset as well... Neither worked. I did SOMEthing later on and got it to work, wish I could have figured out exactly what it was! The silver one was stolen, so sad. Love my greenie though!

Maybe you are looking for

  • Help! HP Laserjet 3050, AEX and Vista Home Basic on a Dell Dimension

    Hey All, I have been through this forum several times and found a few nuggets here and there. Unfortunately none of them have worked. I have my MacBook Pro printing flawlessly to the HP 3050, which is connected to the AEX USB port. I am able to gain

  • Current date background color

    In 10.9.1 Calendar, how do you change the "current date background color"? The default is pink.

  • Help viewing video clips in iphoto 08.

    I recently downloaded both photos and video clips taken from my iphone 5 and downloaded to my mac OSX 10.6.8 computer (as I have many times before.) I quickly discovered that I can no longer view video clips in the iphoto 08 program as I have always

  • Missing toolbar icons

    Hi, there, When I open my helpset from my Java applet (which is put on a server), the toolbar buttons (back, forward, print,..) are displayed without the original icons. They still function correctly, but the images are not shown. The buttons are in

  • ACR & PSE 10

    What is the latest versio of ACR for Mac and PSE 10?