Copying objects in the script editor

Hello,
I need to add a new user to my call center script.  This user will have the same objects as another user on the script the only difference will be the name of the skill group on those three objects.   Can I just copy those objects from the other user and rename them or do I have to add new objects for that user and if so how do I do that?
Thank You.

I'm sorry, but Anthony Holloway is not available.  Please leave your message at the tone.  Beep.
PS: That's Enterprise, and differs quite a bit from Express.  You should state that in your thread topic, so that it grabs the attention of the right people.  Plus, giving accurate and full descriptions is just plain helpful.

Similar Messages

  • Where is the Script editor panel in Photoshop CS6?

    I don't find the Script Editor panel in Photoshop CS6.

    Are you talking about the program for writing scripts for photoshop, which is Extendscript Toolkit (ESTK)?  It should be located where you normally find programs with your operating system.  You can do a search for extendscript to find the program.

  • Why can't I type in the script editor

    I want to add code to a button. I have the button selected. I choose Events with Scripts from the "Show" drop down menu. However, I am unable to click into the script editor box and type the code. The box is grey'd out.
    Please help.

    I figured it out!

  • Where is the Script Editor?

    I have looked everywhere for the script editor and i can not find it anywhere. I am sure it is in an obvious spot and i just am missing it. Is there a step I am missing or is it named something else? Please someone help me out.

    Hi,
    I think that you may need a different Adobe forum. This forum relates to LiveCycle Designer, which is a form development program. It's not strictly part of the CS4 suite of programs (albeit that it does come bundled with Acrobat Professional).
    If you do have LiveCycle Designer open, then you can access the Script Editor from the Windows menu.
    Good luck,
    Niall

  • Lauching the SCRIPT editor

    Hi All,
    Can you suggest me if there is any function module which is going to open SCRIPT editor. On passing the THEAD the contents for that object should be displayed in the editor. The user should be able to edit it and SAVE it.
    Thanks & Regards,
    Rahul.

    Hi,
    You can use EDIT_TEXT fm. Do a where-used list on the fm to understand how it can be called.
    Also take a look at the following sample code,
      DATA: ls_thead LIKE thead,
            lt_lines LIKE TABLE OF tline.
          ls_thead-tdname = 'ZTESTTEXT'.
          ls_thead-tdobject = 'TEXT'.
          ls_thead-tdid = 'ST'.
          ls_thead-tdspras = sy-langu.
          CALL FUNCTION 'READ_TEXT'
            EXPORTING
            CLIENT                        = SY-MANDT
              id                            = ls_thead-tdid
              language                      = sy-langu
              name                          = ls_thead-tdname
              object                        = ls_thead-tdobject
            ARCHIVE_HANDLE                = 0
            LOCAL_CAT                     = ' '
           IMPORTING
             header                         = ls_thead
            TABLES
              lines                         = lt_lines
           EXCEPTIONS
             id                            = 1
             language                      = 2
             name                          = 3
             not_found                     = 4
             object                        = 5
             reference_check               = 6
             wrong_access_to_archive       = 7
             OTHERS                        = 8.
          IF sy-subrc NE 0.
    ****Create New Text
    ****Initialize Text - Get TTXOB settings like line size
            CALL FUNCTION 'INIT_TEXT'
                 EXPORTING
                      id       = ls_thead-tdid
                      language = sy-langu
                      name     = ls_thead-tdname
                      object   = ls_thead-tdobject
                 IMPORTING
                      header   = ls_thead
                 TABLES
                      lines    = lt_lines
                 EXCEPTIONS
                      id       = 1
                      language = 2
                      name     = 3
                      object   = 4
                      OTHERS   = 5.
          ENDIF.
          CALL FUNCTION 'EDIT_TEXT'
            EXPORTING
              display             = space
            EDITOR_TITLE        = ' '
              header              = ls_thead
            PAGE                = ' '
              window              = ' '
              save                = 'X'
            LINE_EDITOR         = ' '
            CONTROL             = ' '
            PROGRAM             = ' '
            LOCAL_CAT           = ' '
           IMPORTING
            FUNCTION            =
             newheader           = ls_thead
            RESULT              =
            TABLES
              lines               = lt_lines
           EXCEPTIONS
             id                  = 1
             language            = 2
             linesize            = 3
             name                = 4
             object              = 5
             textformat          = 6
             communication       = 7
             OTHERS              = 8.
          IF sy-subrc <> 0.
           MESSAGE ID sy-msgid TYPE 'I' NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
           EXIT.
          ENDIF.
    Hope this helps..
    Sri
    Message was edited by: Srikanth Pinnamaneni

  • Missing objects from the report editor...

    When some users try to create webi reports, they select their objects for the result and conditions, then they click Edit Reports under the Data tab, Documents - sometimes the objects don't show up?   Is that a problem on the Client side or Server side?
    Business Objects XI R2.

    No, they have not tried that - but one of the users cleared their cookies and files under Internet Options - and now they see the objects?

  • Translate the harcoded text written inside Script Editor in Adobe forms

    Hi Experts,
    In Adobe form, I have hardcoded a text inside the Script Editor.
    Now i need to maintain translation for it in another language.  Is it possible?
    I have checked option Goto -> Translation. But that text is not available there.
    Kindly give me some suggestions!

    I know what you are trying to do and that is NOT the way to handle it. haha This is EXACTLY why I never put texts to display within my script (Javascript). The better way to do it is this.....have a hidden text element on your form. Then show/hide it using your script. Since it is PART of the actual form, you can then translate it like you do anything else on the form. Works great!
    If you absolutely HAVE to do the text as a pop-up or something "off form", then there are ways to do it very similarly but takes a little more thought/work (ie. have your script read the text element's text and use that in your pop-up...again, since the text element is ON the form, you will get the correct translation.)
    Hope this helps!

  • Context object not visible in the Expression Editor

    Hi ,
        I have created a context object and assigned it to the sender interface ( outbound interface) but i couldn't see the created object in the Expression editor.
    Can anyone tell me why it is like this? It shows only the technical context objects .
    with Regards
    VasS

    Hi Vasagam,
    Please try out the following and see if it works:
    - Did you set the "Adapter-Specific Message Properties" in the Sender File Communication Channel.You have to select this check box and also select the "File Name" check box(this will be visible once the initially mentioned check box is selected)
    - Is the interface to which the context object is assigned an outbound Interface(Sender Interface) in receiver determination? Only then the context object will be visible.
    Regards,
    abhy

  • With clause query issue in oracle cloud script editor

    When I am running this query in SQL Workshop > SQL Commands window then its working fine
    with cte as (select * from emp)
    select * from cte
    where deptno = (select deptno from dept where loc = 'DALLAS')
    but its give me error in SQL Workshop > Script Editor window
    When I did copy & paste query from Script Editor window to notepad,
    then I realize that its automatically adding hidden "?" question mark (as per below query)
    how can I resolve this issue?
    please guide me.
    I have confirm that there is no any white space after 'DALLAS')
    & another simple queries working fine in both windows.
    with cte as (select * from emp)
    select * from cte
    where deptno = (select deptno from dept where loc = 'DALLAS')?
    Edited by: Sanjay on 28 Mar, 2013 6:46 PM

    Hi Sanjay,
    You have mentioned "+but its give me error in SQL Workshop > Script Editor window+" - are you referring to the SQL Workshop > SQL Scripts > Script Editor option, while editing a SQL script? If so, then I have been unable to reproduce the behaviour you have reported, and have not received any errors using your test query.
    To assist in identifying the cause of your problem, could you please outline the exact steps that you followed, leading up to the step where you receive an error?
    Regards,
    Hilary

  • Photoshop Elements 2.0 launches Script Editor

    When launching Photoshop Elements 2.0 today, the icon in the dock changed to a blank file icon and the Script Editor launched. The icon in the application folder did the same.
    I trashed the Elements application folder and reinstalled with the same result, three times.
    I repaired Permissions and restarted before and after installing.
    I have launched every other application on the machine without incident, so it seems confined to Photoshop.
    The same thing happened to the backup copy of Elements on the external drive connected to this machine.
    The only change since last using Elements successfully is the installation of Machacha, which splits and joins video files. I also trashed it as part of my recovery effort, to no avail.
    Any insight will be greatly appreciated.

    Sometimes out of the blue, for no evident reason, Finder/LaunchServices stops recognizing programs that end with a dot and a number as programs. I suppose one could try to discover why, and fix it, or you can just use GetInfo to change the application name from "Photoshop Elements 2.0" to "Photoshop Elements2.app"--which is easy to do and so far has always worked.
    Francine
    Francine
    Schwieder

  • Resize script editor window

    Hello,
    Is it possible to resize Hyperion script editor window? Or is it possible to use another script editor.
    In my documents, the scripts are 300 lines long and the script editor displays only 11 lines!
    Thanks

    Interactive reporting? in the script editor... bottom right corner of object browser ...

  • CVP call variables not found in script editor

    Hi,
    I installed the Packaged CCE and I am trying to configure a basic CVP routing script. I want to use the Run Ext. Script ICM node but before that I have to set some variables - user.microapp.xyz.
    The problem I am facing is that the Set Variable step in ICM doesn't give me the option to specify these call variables as they just do not exist in the list.
    I think that the Packaged CCE base configuration script is supposed to create these variables (as per the link below):
    (http://www.cisco.com/en/US/docs/voice_ip_comm/cust_contact/contact_center/pcce/pcce_901/installation/guide/PCCE_BK_IBC40C6F_00_installing-and-configuring-pcce_chapter_01000.html)
    Create configuration objects to support CVP:
    A type 10 Network VRU for CVP along with Network VRU Labels to send calls to CVP
    CVP ECC Variables
    VXML_Server Network VRU Script - GS,V microapp
    Any thoughts why these variables are missing on the "Set Variable" step in ICM? I don't see any user.microapp.* options in the list.
    Thanks.

    Hi,
    Yes, I am new to CCE. This was the issue. After enabling those variables from the CCE web interface they appeared in the script editor.
    Thanks

  • [newbie qn] script runs under Script Editor but not as application

    I have a simple script that runs successfully under the Script Editor. The script is:
    tell application "Safari"
    activate
    tell (make new document) to set URL to "http://www.google.com"
    end tell
    However, when I tried to run it as an application, I encountered the error 'Can't set document "Untitled" of application "Safari" to "http://www.google.com".'
    How should I rewrite the script so that it would run as an application? Thanks!

    Hi PointZero01
    Your script compiles and works fine saved as an application and tested under 10.5.6.
    slightly different but does exactly the same
    tell application "Safari"
    activate
    make new document
    set URL of document 1 to "http://www.google.com"
    end tell
    Budgie

  • Script works in Script Editor, when saved as app, no longer works

    I've been playing around with AppleScript trying to learn a little. I wrote an app to fullscreen the current application. First I wrote one to full screen a specific app:
    tell application "Safari"
    set the bounds of the first window to {0, 0, 1440, 894}
    activate
    end tell
    This worked without any problems and I set a keyboard shortcut to activate it.
    Then I decided to make it work for the current app:
    tell current application
    set the bounds of the first window to {0, 0, 1440, 894}
    end tell
    When I ran it in Script Editor, it worked fine and set the bounds of the Script Editor window to what I asked. When I save it as an application the same way I did the first app, it doesn't work. I get the error message "Can't set the bounds of window 1 to {0, 0, 1440, 894}." I tried it on the same Script Editor window it worked on when I simply clicked run, but I keep getting the error message.

    try something like this saved as an app
    tell application "AppleScript Editor"
    activate
    make new document
    set the bounds of the first window to {0, 0, 1440, 894}
    make new paragraph at beginning of document 1 with data "hello world"
    end tell
    tell application "TextEdit"
    activate
    make new document
    set the bounds of the first window to {0, 0, 1440, 894}
    make new paragraph at beginning of document 1 with data "hello world"
    end tell
    Budgie

  • UCCX 9.0 - Issue Retrieving Dialer fields in script editor

    Hi Experts,
    In IVR campaign I am trying to retrieve BAAccount number field in the script editor but no success. I tried the below options in the UCCX script editor but it didn't work. Once contact is uploaded, dialer fields are sent to IVR application by default or is there any settings we need to do in UCCX admin? Thanks in advance for your help!
    1) Tried through ECC variables in Get Enterprise Call Info element
    2) Getting as session data through Get session element
    Thanks
    Rajasekar

    Adding Anirudh Ramachandran  and Abhiram Kramadhati

Maybe you are looking for