UCCX 10.5(1) Script Editor Refuses to launch

Greetings,
Last week it worked fine, this week when I click the Cisco Unified CCX Editor icon to launch the script editor I get a flash of the splash screen then nothing.  I have uninstalled/reinstalled.  Uninstalled and gone back to delete any directories, cleaned any reference to wfavvid out of the registry and reinstalled.  Reinstalled Java.  All to no avail.  I am trying to figure out if there were any windows up dates that were applied since the last time I had this working.  Something is definitely being unpleasant.
Windows 7 Professional x64
2GB RAM
Thanks!

Hello Ahochau
Have a look at the following post as its a possible solution:
https://supportforums.cisco.com/discussion/12285941/ccx-105-script-editor-not-working-win7-enterrpise-64-bit
Regards
Hoai

Similar Messages

  • 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

  • UCCX script editor on xenapp 6.5

    The instalaltion UCCX script editor on xenapp 6.5 base OS windows 2008 r2 has completed. But when i try to open it on client the screen freezes and remains like that. Any suggestion or checks which I am supposed to do.

    Try going to the properties of the startup shortcut, and setting it to compatibility mode = Windows XP, or run as Administrator.
    Aaron

  • UCCX Script editor crashing

    Has anyone experienced the script editor, v7, crashing on startup in standalone mode?
    I get the java message that connection to server isnt available, the status bar moves a bit, and then it shuts down.
    If i'm connected to the server i am fine.
    Any help would be appreciated.
    Mike

    That's great Mike, here's the bug. As you say the other workaround is to change the Windows style but I find easier to change the compatibility mode:
    CSCso68954    UCCX Editor throws java.lang.NullPointerException on Client PC
    Symptom:
    A large number of steps used in the script throw java.lang.NullPointerException when customizing their parameters by right clicking on them to access the Properties.
    This can also occur when attempting to do a Reactive Debug, adding a variable or editing a variable's properties.
    Conditions:
    Editor is installed on a remote XP client. And the system is set to use "Windows XP style" for Windows and Buttons when Editor is launched.
    Workaround:
    Complete one of the following:
    1. Right click on the Editor icon on the Desktop and select Properties. Go to the Compatibility tab. Check the box for 'Run this program in compatibility mode' and choose 'Windows 2000' from the drop down. Click Apply and Ok.
    2. Change the theme to "Windows Classic Style" - Right click on Desktop, select Properties. In the Appearance tab, select "Windows Classic Style" for Windows and Buttons. Click OK to change the setting.
    3. If you still wish to use "Windows XP Style", you could change the style to " Windows Classic", re-launch the Editor and then change the style back to "Windows XP".
    Cheers!
    Pablo

  • CCX 10.5 Script Editor Not Working Win7 Enterrpise 64 Bit

    Anybody else running into this?  Other colleagues stated that they have CCX 10.X editors working with Windows 7 32 bit.
    My issue is that the initial splash screen comes up for a quick sec and goes away.  I've tried Win XP compatibility and Run As Administrator.
    Found this post where I think the original person was referring to CCX 7.0 and people replying where referring to the issue that I'm running into with CCX 10.5
    https://supportforums.cisco.com/discussion/12149992/ccx-script-editor-hangs-win7-then-closes
    Thanks,
    Dan

    Hi Dan,
    We have seen such issues with UCCX 10.5 editor. For some reason on the other issue, the editor was not installed in the correct location (default).
    Solution:
    * Uninstall the editor.
    * Install the editor (Run as administrator) directly into Program files in the
    path : C:\Program Files (x86)\wfavvid_1051
    * Run the application by running it as Administrator.
    * While uninstalling and reinstalling, try to keep the anti-virus disabled.
    Let me know how it goes.
    Regards,
    Arundeep

  • Length of if statement in script editor is more than two lines

    dear friends
           when i am modifying the purchase order with new purchase organisations in script editor , i found that the line continued to both left and right pages, if i want to extend the line there is no 3 rd page. how can i extend the if statement.
    regards,
    k.srinivas.

    Hi,
    After complete of line , Please Enter Shift+F8.
    Regards
    jana

  • [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 Editor does not work. Panel blue and empty.

    Hi
    I installed Oracle Database XE yesterday on
    Acer TravelMate C300, Microsoft XP SP2 Tablet Edition
    and ..
    I cannot read SQL scripts
    I cannot access to the editing panel of Scripts Editor when I want to create a new script.
    I used System and HR login.
    The panel is blue and empty.
    Thank you for any information
    Best regards
    JRD120

    I cannot read SQL scriptsWhere you want to read SQL scripts?
    I cannot access to the editing panel of Scripts
    Editor when I want to create a new script.About which "Scripts Editor" you talking about? From TOAD?
    The panel is blue and empty.Panel??

  • How to define variables in toad sql script editor - newbie

    I have just pull out the script of a Function and want to run it on toad SQL editor.
    I am little bit confused how to define the VARIABLEs here in toad SQL editor to run my script.
    SELECT
    NVL(SUM(debit), 0) - NVL(SUM(credit), 0)
    INTO l_accountBalance
    FROM
    GLP_VoucherMaster vm
    INNER JOIN GLP_VoucherDetail vd ON vm.GLP_VoucherMaster_ID = vd.GLP_VoucherMaster_ID
    INNER JOIN GLP_ChartOFAccounts coa ON vd.GLP_ChartOfAccounts_ID = coa.GLP_ChartOfAccounts_ID
    WHERE
    vm.isActive = 'Y' AND vd.isActive = 'Y'
    -- *** how to define variables in toad sql script editor ***
    AND vm.voucherDate < p_cDate
    AND coa.AccountCode LIKE p_accountCode || '%';
    Thanks
    w\

    Just prefix with a colon (:)
    SELECT   NVL (SUM (Debit), 0) - NVL (SUM (Credit), 0)
      INTO   L_accountbalance
      FROM           Glp_vouchermaster Vm
                 INNER JOIN
                     Glp_voucherdetail Vd
                 ON Vm.Glp_vouchermaster_id = Vd.Glp_vouchermaster_id
             INNER JOIN
                 Glp_chartofaccounts Coa
             ON Vd.Glp_chartofaccounts_id = Coa.Glp_chartofaccounts_id
    WHERE       Vm.Isactive = 'Y'
             AND Vd.Isactive = 'Y'
             AND Vm.Voucherdate < :P_cdate
             AND Coa.Accountcode LIKE :P_accountcode || '%';
    /:p

  • Data access error while running  the script in fdm workbench script editor

    Hello Experts,
    I have been getting the error when i run the script in script editor of fdqm workbench client.this is the error
                              -2147467259 Data access error and it is navigating the error at line 30 about this script "Set rsAppend = DW.DataAccess.farsTable(strWorkTableName)"
    Please revert me asap where i should load the data from peoplesoft to one of my planning database through fdm.
    Thanks in advance...

    Hi,
    Thanks for your suggestion's here i am going to run the datapump script so while i am running in workbench it is throwing data access error.So as you guy's suggested i created one import format and added this script to that import format which is added to one of my location even it is throwing the same error.I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?So my question is Is there any difference while running data pump or integration script.Please let me know a detailed navigation steps to run this script's with out data access error to run these kind of scripts.
    Note:Again my target is to load the data to planning database through fdqm which i am doing through sql statement's.
    Suggest your valuable suggestion's
    Thanks in advance...
    I am getting the error at this sentence   "strWorkTableName" I want to know what is this where it reflect's?

  • 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

  • Links to launch Script Editor no longer work

    Links to launch Script Editor no longer work.

    I don't know, I just use a very simple Applescript to enclose the clipboard in tags that allow the user to launch Script Editor from the browser:
    set the clipboard to "<a href=applescript://com.apple.scripteditor?action=new>Click here to launch Script Editor</a>.
    <pre class=COMMAND>" & return & (the clipboard) & return & "</pre>"
    And it wraps the script on the clipboard on PRE tags so the structure is preserved. Neither of those work now.

  • A program which used to open in Classic now opens in Script Editor

    I am using an old web design program by Symantec called Visual Page 1.1.1. It has worked fine for several years, but yesterday I opened it and instead of opening in Classic, it tried to open in "Script Editor" in OSX. Classic never opened at all. I have tried reinstalling it but the same problem occured. I tried using "Open with" Classic on the Info page, but Classic is greyed out. Can anyone help? I am starting to import the pages into a new program (Freeway) but this will take forever. I would like to still be able to work with this program. Thanks for any assistance. (I called Symantec and the program is too old for them to help with.)

    And Get Info shows it as a Script Editor document ? rather than Classic Application ?
    I had this about a year ago, but for the life of me, I can't remember what I did to fix it. I may have posted here when I got desperate. A search in discussions for Script Editor and Classic may come up with something.
    Edit:
    ===
    http://discussions.apple.com/thread.jspa?messageID=4762745&#4762745

  • Create a counter for the rows in a table using script editor?

    Hi ,
    I want to add afield in a particular table  with first field is its serial number . How to use scripting editor to fill the serial number ?
    How to create a counter ?
    Edited by: Rajan.Dexter9 on Jan 30, 2012 9:40 PM

    Hello Rajan,
    Create a field in the table and name it as 'SERIAL'.  Create a variable called 'count' with default value as 0.  Now in script editor, for javascript language and calculate event, write the following script.
    var fields = xfa.layout.pageContent(xfa.layout.page(this)-1, "field", 0);
    for (var i=0; i <= fields.length-1; i++)
         if (fields.item(i).name == "SERIAL")
              count.value = count.value + 1;
                     this.rawValue = count.value;     

  • Can not open script editor in HDS

    Hi everybody,
    When we open Script Editor, we see the notice: "cannot connect to distributor, script editor will now exit"
    Can you help me to resovle it?
    We use ICM 7.1
    Thanks you so much!

    You might also see this message if the services are running, but you are using Windows Remote Desktop (RDP), and are not logged in with console mode.
    Try this:  mstsc aaa.bbb.ccc.ddd /admin
    where aaa.bbb.ccc.ddd is the IP address or hostname of your HDS.  The /admin switch gets you in with console mode. 
    Net-net, you should see the ICM process' console windows on the taskbar.  If you don't, then either the service isn't running, or you're not in /console mode.
    fyi - ICM 7.1 is long-since end-of-life.  You should seriously consider upgrading to a more recent, supported release.

Maybe you are looking for

  • How do you split the print job across multiple printers to shorten the prin

    i Can any one you provide some information on below questions. Check printing by XML template (XML Publisher). 1. When printing checks, how do you print the checks from one printer tray and the overflow remittance pages from another printer tray? 2.

  • MacBook Pro hard disk upgrade shows question mark folder

    I recently bought a 1TB hard disk for my teenaged daughter's MacBook Pro. I formatted it, used Carbon Copy Cloner to clone the existing drive. I even made sure to create the recovery partition. I restarted while holding the option key and chose the n

  • To Avoid purchasing for particular plant

    Hi, My Client wants to prevent purchase requisition, purchase order, production order for particular plant. How do we go about this? Possible things i think is 1. Restricting users to that particular plant though user roles. 2. Creating user exits to

  • How do I retrieve music I already downloaded

    I plugged my phone into my computer  to upload download some music from my phone to my computer and iTunes said I had an upgrade for my phone so while it was doing its thing for some reason it told me it couldn't complete the upgrade and that I had t

  • Peer-to-peer blocking / SGT / upstream behavior

    Is there a way to take a WLC 5508, enable peer-to-peer blocking functionality and send the traffic up stream to be ran through an ACL and then sent back down to the WLC 5508 back into the same WLAN?  A switch typically won't forward traffic out the p