CUE 8.6.1 AA scripts - xfer to voicemail

Hi All,
Under the new version of CUE the xfer to voicemail subflow has changed a little and for the life ofme i cant make it work.
What are the Input Mappings and Ottput Mappings Sources and Subflow Destinations.
Can someone give me a working example of the variables and how they should work?
The old documentation hasnt helped and ive tried to find the answer in the community forums to no avail.
The idea is that after hours calls are directed to the the Reception Voicemail mailbox which is attached to extn 950.
Your help is appreciated.
If required, i can attach the script.

Hi Steve,
Life is great! Hope it is for you as well buddy
That is interesting (and helpful) news for sure +5. They still show
this link in the Doc Wiki, but I'm sure whatever helps Darren is all we
care about here.
http://docwiki.cisco.com/wiki/Cisco_Unity_Express_--_Custom_Script_Editor_FAQs
Cheers!
Rob

Similar Messages

  • Create navigation cue points in a FLV file using Media Encoder CC

    When I export a FLV file with Navigation cue points created in Media Encoder CC (by loading a cue points XML file), upon examining the file I see that the cue points are recorded as Event type cue points in the metadata at the top of the file.
    When I load the FLV file in Flash, I can receive cue point notifications using action script while the video is played, but cannot use seekToNavCuePoint to move the play head to one of the cue points, which accords them being Events rather than Navigation points.
    I am wondering if there are any other export settings which need to be particular values in order for navigation cue points to be created properly in the exported file?

    Lestyn, thanks for the verification.  Took me a frantic 4 hours to arrive at the same conclusion.  Do these people test their software???
    Maddening.

  • Using CUE as SMTP relay

    Hello world...
    I hope someone has an answer to this - i have gone through the CUE CLI documentation looking to config it up as an SMTP relay, and this idea does not seem like it will work.
    System is UC540 on 8.6.5
    I have a PRI with a DID block for the client - they want individual fax numbers for each person.  That part is easy enough.  They do NOT want to store it in their vociemail box.  They just want it sent to their email inbox.  They do not want to use the "listen" mode where fax and voice comes in on the same DID because the delay for the customer calling in is too great in their opinion.  This is fine.  I get it.
    However I am having a dickens of a time using the CUE to send the emails based upon the DID to the user mailbox.  I am talking about configuring a separate ephone-dn and an account on the CUE for the fax email user.  when i go this route, The sending fax machine just hangs and never successfully transmits.
    IF, however, I set the "mta send server" to my test-bench smtp relay by IP address, it all works.  Fax as email attachment comes through like greased lightning.
    I try to do it via the extension and have CUE submit it out, things just hang.
    IS THERE A WAY to configure the CUE to act as a simple SMTP relay for all things internal?
    This is the config that works for me:
    mta send server 192.168.110.25 port 25 <IP addess of my bench smtp server>
    mta send server 10.10.10.1 port 25
    mta send with-subject both
    mta send mail-from hostname LAB-UC540.lab.org
    mta send mail-from username $s$
    mta receive aliases 10.10.10.2
    mta receive maximum-recipients 7
    For the MMOIP, I have:
    dial-peer voice 3020 pots
    translation-profile incoming Lab_Fax_T37_Called_26
    service onramp
    incoming called-number 4627
    direct-inward-dial
    port 0/2/0:23
    dial-peer voice 1801 mmoip
    service fax_on_vfc_onramp_app out-bound
    destination-pattern 4627
    information-type fax
    session target mailto:[email protected]
    The above works remarkably well
    This (generic CCA config) is broken:
    dial-peer voice 3020 pots
    translation-profile incoming Lab_Fax_T37_Called_26
    service onramp
    incoming called-number 4627
    direct-inward-dial
    port 0/2/0:23
    dial-peer voice 1800 mmoip
    description ** fax onramp for outbound faxmail to CUE **
    service fax_on_vfc_onramp_app out-bound
    destination-pattern ^....$
    information-type fax
    session target mailto:[email protected]
    fax receive called-subscriber $d$
    fax interface-type fax-mail
    mta send server 10.10.10.1 port 25
    mta send with-subject both
    mta send mail-from hostname 10.10.10.2
    mta send mail-from username $s$
    mta receive aliases 10.10.10.2
    mta receive maximum-recipients 7
    Any suggestions?  Or do I build a small internal LAN smtp relay server?

    Hello,
    The CUE is used with the script for t37 - there are two approaches with fax to email.
    One is using the CUE and the other is not using CUE just to add the right information.
    For more information:
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/unity_exp/rel3_1/administration/guide/voicemail/fxgatewy.html
    https://supportforums.cisco.com/docs/DOC-9718
    HTH,
    Alex

  • Cue point question

    Hello all,
    I have a question abou cue points. I have a script, see below. In that script I define some cue points. Now I want to define a action for each cue point seperate.
    The script:
    // Requires an FLVPlayback instance called my_FLVPlybk on Stage
    import fl.video.*;
    import fl.video.MetadataEvent;
    my_FLVPlybk.source = "1.flv"
    var cuePt:Object = new Object(); //create cue point object
    cuePt.time = 2.02;
    cuePt.name = "ASpt1";
    cuePt.type = "actionscript";
    my_FLVPlybk.addASCuePoint(cuePt);//add AS cue point
    // add 2nd AS cue point using time and name parameters
    my_FLVPlybk.addASCuePoint(5, "ASpt2");
    my_FLVPlybk.addEventListener(MetadataEvent.CUE_POINT, cp_listener);
    function cp_listener(eventObject:MetadataEvent):void {
            var request:URLRequest = new URLRequest("dummy.swf");
            var loader:Loader = new Loader()
            loader.load(request);
            addChild(loader);
            new URLLoader()
            trace("Elapsed time in seconds: " + my_FLVPlybk.playheadTime);
            trace("Cue point name is: " + eventObject.info.name);
            trace("Cue point type is: " + eventObject.info.type);
    I manage to load a dummy movie at the cuepoint, but that is for all cuepoints. I want to set dummy.swf for ASpt1 and something.swf for ASpt2 and so on.
    Can someone help me?
    Thanks

    Ok starting to get the hang of this, in my actionscript are the following:
    btn_start.visible=false
    import fl.video.MetadataEvent;
    MainVid.addEventListener(MetadataEvent.CUE_POINT, Pause);
    function Pause(event:MetadataEvent):void
        trace(event.info.name);
        MainVid.stop();
    import fl.video.MetadataEvent;
    MainVid.addEventListener(MetadataEvent.CUE_POINT,BtnStart);
    function BtnStart(event:MetadataEvent):void
        btn_start.visible=true
    import fl.video.MetadataEvent;
    MainVid.addEventListener(MetadataEvent.CUE_POINT,btnVisible);
    function btnVisible(event:MetadataEvent):void
        btn_start.visible=true
    btn_start.addEventListener(MouseEvent.CLICK, Resume);
    function Resume(event:MouseEvent):void
        MainVid.play();
    MainVid.addEventListener(MetadataEvent.CUE_POINT, Pause2);
    function Pause2(event:MetadataEvent):void
        trace(event.info.name);
        MainVid.stop();
    btn_start.addEventListener(MouseEvent.CLICK, Resume2);
    function Resume2(event:MouseEvent):void
        MainVid.play();
    MainVid.addEventListener(MetadataEvent.CUE_POINT, Pause3);
    function Pause3(event:MetadataEvent):void
        trace(event.info.name);
        MainVid.stop();
    I wanted after the Resume to have the button hide again and can't seem to do it.
    Also, I had saved the file, then opened again to see that the CuePoints are not in the Properties anymore.
    Is this normal?

  • Integration missing between Bridge and Version Cue CS4?

    Hi there,
    I've installed Design Standard CS4, set-up Version Cue and successfully saved an image from Illustrator.
    But when I open bridge there is no sign of Version Cue on the left hand side, the help file suggests that I need to select some options for Version Cue in the Start-up Scripts, but they aren't there...
    Has anyone had the same experience?

    Adobe recommends that you do not follow the steps above to enable Version Cue CS4 in Bridge CS4.
    Please see this thread for more details:
    http://www.adobeforums.com/webx/.59b6d12f

  • CUE Bakcup failed from CLI and CCA

    Hello Guys...
    I have been trying to backup a UC560 from the CCA but in it failed when is trying to backup the CUE.
    Here it is the log of the backup
    Thanks for any help
    #Start Operation
    Category:      Data
    Backup Server: ftp://172.20.7.44/ftp/
    Operation:     Backup
    Backupid:      6
    Date:          Tue Nov 06 16:36:22 EST 2012
    Result:        Failure
    Reason:        Script execution failed: Voicemail Backup failed
    Version:       8.0.6
    #End Operation
    #Start Operation
    Category:      TimeCardView
    Backup Server: ftp://172.20.7.44/ftp/
    Operation:     Backup
    Backupid:      6
    Date:          Tue Nov 06 16:36:22 EST 2012
    Result:        Success
    Reason:
    Version:       8.0.6
    #End Operation
    #Start Operation
    Category:      Configuration
    Backup Server: ftp://172.20.7.44/ftp/
    Operation:     Backup
    Backupid:      6
    Date:          Tue Nov 06 16:36:24 EST 2012
    Result:        Success
    Reason:
    Version:       8.0.6
    #End Operation
    #Start Operation
    Category:      HistoricalData
    Backup Server: ftp://172.20.7.44/ftp/
    Operation:     Backup
    Backupid:      6
    Date:          Tue Nov 06 16:36:26 EST 2012
    Result:        Success
    Reason:
    Version:       8.0.6
    #End Operation

    Guys I just upgrade the CUE software to version 8.6.3 and i still have the same issue:
    #Start Operation
    Category:      Data
    Backup Server: ftp://172.20.7.45/cue/
    Operation:     Backup
    Backupid:      1
    Description:   backup02
    Date:          Fri Nov 16 11:46:42 EST 2012
    Result:        Failure
    Reason:        Script execution failed: Voicemail Backup failed
    Version:       8.6.3
    #End Operation
    What else i can try?

  • SubFlow Scripting - Ideas thoughts please.

    Hi all,
    Would like a little help if I may please.
    We have many scripts which all have routines in them that take voicemessages and forward the customer voice messages off to specified mail addresses.
    What I would like to know is if we could streamline this by creating one script for taking all messages, this would be called as a subflow from the main script.
    This way I could reference this one script from all main scripts to handle voicemail requests.
    My question really is how do I pass the specific different email addresses from the main scripts to the subflows?
    Also another quick question, we are now running CUCC express prem 7, what is the new additional "do" step for and how is it used.
    Thanks
    Rich

    Doug,
    Most of the items your list are included natively in UCCX.  Use the Get Reporting Statistic step to obtain the expected wait time, position in queue, and total queue time information. The current time-of-day can be had using a Time variable.  You'll need to do some work to convert the values into something you can play to the calling party as a prompt, a subflow is great for that, but you shouldn't need to reinvent the wheel.
    Take the time to draw out the call flow for each of the 16 contact centers on paper or in MS Visio. If your 16 call flows are very similar in the way they operate, consider a master script that just changes the prompts/menus based on the number dialed.  Leverage XML or a database (if you have premium licensing) to pull in the relevant information you need for each DNIS.  You may find you can streamline the entire system, or at least a good portion of it, without it becoming 16 unwieldy applications.
    Steven

  • Loader-Problem mit I.Explorer / FireFox ist OK

    Die Domain "http://woopi.net"
    enthält eine "site", die nur mit Flash generiert wurde.
    Teste ich diese "Site" mit Firefox, dann gibt es keine Probleme, alles OK.
    Teste ich mit dem Internet-Explorer, dann muß dieser erst lernen mit den LoaderKomponenten umzugehen,
    nach dem 2. oder 3. "rollOver" werden dann diese Elemente richtig angezeigt.
    Ziel-Beschreibung:
    beim Aufruf von "woopi.net"  wird auf dem Bildschirm die Bundesrepublik dargestellt.
    Ein Klick auf die BRD öffnet ein Navigationsfeld mit 7 Button.
    Der Klick auf den Button "Alle Banken in Deutschland" öffnet ein Navigationsfeld, in welchem bei einem RollOver
    unten links auf dem Bildschirm ein Bild angezeigt wird, in einer LoaderKomponente.
    Der InternetExplorer zeigt diese Bilder falsch an, erst nach dem 2., ev. nach dem 3. RollOver wird das Bild richtig angezeigt.
    Unten rechts auf dem Bildschirm gibt es den Zugang zu einem weiteren Navigationsfeld, "WebKatalog 2".
    Die Darstellung in diesem Navigationsfenster ist geradezu scheußlich.
    Hinweis:
    auch die Html-Seiten in denen die Flash-Seiten eingebettet sind,  wurden mit Flash-Cs4 generiert.
    Es wurden keine ProgrammErweiterungen verwendet.
    Wer kennt die Problemlösung?
    mfG, Jochen

    danke für die Information:
    "you have incomplete swf embedding code"
    Die Kompelation der html-Datei erfolgt unter Flash automatisch, ich habe leider
    "fast keine" html-Kenntnisse, kann also nur laborieren. Können Sie mir einen Hinweis geben ?
    cue.fla     "wurde kompelliert". Ergebnis:
    cue.swf
    cue.html
    Hier das, was ich vorfand:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue2.swf"></a>
    <a href="./cue/queue3.swf"></a>
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Es müßte vielleicht so aussehen:
    <body bgcolor="#e7e7e7">
    <!--Im Film verwendete URLs-->
    <a href="./cue/queue1.swf"></a>     //das Script in  cue.swf:   loadMovieNum("./cue/queue1.swf", 1);
    <a href="./cue/queue2.swf"></a>    //d.Script in queue1.swf:  on (release){loadMovieNum("./cue/queue2.swf",2);}
                                                        //d.Script in queue2.swf:   loadMovieNum("./cue/queue10.swf", 3);
    <a href="./cue/queue3.swf"></a>    //d.Script in queue1.swf:   on (release){loadMovieNum("./cue/queue3.swf",2);}
                                                       //d.Script in queue3.swf:    loadMovieNum("./cue/queue30.swf", 3);
    <a href="javascript: end("document.cue");"></a>
    <a href="http://www.basiszins.de"></a>
    <a href="http://www.onvista.de"></a>
    <!--Im Film verwendeter Text-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
        AC_FL_RunContent(
    Das "Loader-Problem" zeigt sich aber schon in der "queue1.swf" Datei, welche nach _level1 geladen wird.
    Es wird hier nur Actionscript 2 eingesetzt. Bemerkenswert ist, daß sich Firefox ohne Probleme sehr stabil verhält.
    Vielleicht können Sie hiermit etwas anfangen. Wenn ein SreenShoot eine bessere Analyse ermöglicht, schiebe ich ein Bild gerne nach.
    mfG. Jochen

  • First FC site created and Thoughts about FC

    Just completed my first site created using PScs4 and FC beta 2.
    bigimpressionsmobile.com
    Program does just what I want. No Coding!!! Took about 15 hours to create the site. Would have taking me a week to do it in flash. I know a little action script but do not wish to learn it in-depth. I am a designer.
    Please note: Background image may not match the background in flash. No wmode transparency support .
    The Bad first.
    Hate that there is not a timeline scrubber!!!!! Current preview system between states slows down my productivity. Would like to see live feedback in the final.
    Timeline panel is very confusing when you have a lot of animation. I am guessing this is do to this being beta. I hope the timeline will work like the layers panel. I would like to restructure the order.
    Deleting does not delete. I get why it just hides it, but I would still like a short cut option to do a complete delete in the final.
    No indesign support!  Please create Indesign Catalyst.
    When converting to buttons name changes. I am guessing this is a beta issue. Better be.
    That's really it b/c I know this is just a beta so I will not go crazy about my other issues!  Like no support for video alpha channels and cue points.
    The Good
    No Coding!!!
    Takes me half the time to create an interactive site using this program! No Coding! No headaches.
    Easy to use. Air deployment
    This program is a sure winner if the final has video alpha channels, cue point support, better timeline and animation functionality similar to flash, and wmode transparency support, third party plugin compatibility with slideshow plug-ins like slideshowpro.
    Final thoughts
    After creating my first fc site. I see myself only using this program for interactive headers, microsites with no more than 20 states, slideshow navigation, interactive web banners, custom preloader creation, Quick and simple online presentations a la powerpoint and keynote style.
    Would use it heavily for video interactivity if you guys put in video alpha channels, cue points support, and custom skinning functionality(same method as the scrollbar and sliders)! I do a lot of green screen shoots.
    State(Page) transitions(slide, page flip, dissolve, swf alpha transitions, etc.) as an option. Then being able to manually animate in the content would be a nice addition.
    If there were any kind of coding I would like to see, the coding method used to create menus in Encore from  Photoshop. I can handle that! I woulds speed up productivity. Maybe put that in CS5!!!
    Thanks Adobe.

    Thanks for the feedback!
    When I imported video with an alpha channel I got a black background. Is the preview going to be black in playback? I did not export the file to test though. I will try it again and see if it works. How should I set my alpha channel when I export from AE or PSCS4?
    The timeline panel is not that confusing. I think the main issue with the current version is that I cannot reorder them and when I add a new effect most of the time the effect goes to the bottom, but sometimes they pop up at the top or middle.
    If the object order in the timeline matches the layer order, that would be a big improvement. I still would like to have a preview scrubber in the timeline. It will speed up my productivity.
    Will there be another beta before the final release? Is it still  scheduled for Q1(before end of march?)
    New Issue (probably just beta issues)
    "edit original" is causing a lot of headaches!
    I have created the bigimpressionsmobile.com all in PSCS4.  When I choose "edit original" It only gives me an edit in Illustrator option. Not sure why, but it is causing major problems when I try to update a graphic.
    Everytime I update a graphic I loose all the effects and the name changes. That slows down productivity BIG TIME!
    Other things I would like to see...
    1. Would like to have edit original functionality for AE.
    2. A skew and reflect shape button.
    3. A simple built in form script.
    4. I know cue point support and action script is the best way to interact with video, but I would like to be able to trigger a state or nested state when I reach a certain point of the video. This maybe a little complicated and I guess I can create some type of workaround.
    This is my vision. I want to be able to have an actor appear on screen and say "Welcome to my site. Blah Blah Blah....Please choose from one of these options listed below." When the actor says, "listed below," I want to be able to go to the next state with the animation happening while the actor is still in the background moving or walking away.
    This could work if I can add 1 video to 2 states and have it stop at a particular time then start in the next state at a particular time. I know this could be done with just 2 different videos but I would have to export "TWO DIFFERENT VIDEOS."
    A good example of a solution is incorporate the "trim video" option found inside Keynote.
    Another option is doing something similar to Powerpoint's, on the mac, "Play across slides" for video option. I can delay the transition to anytime to go to the next slide while the video still plays. This functionality would be a GREAT solution if cue points are not an option!

  • Issues with aa.aef and aa_transfer.aef

    Hey,
    Has anybody seen this before:
    The autoattendant default script, aa.aef works great. However, I want to use the aa_transfer.aef. The CCA allows the configuration in the UI to be changed, extensions and all, but the router DOES NOT SAVE the settings. When I check the settings again, it goes back to aa.aef.
    I would like to:
    1. Create a customised welcome prompt
    2. Assign extensions to direct incoming calls "Press 1 for location ..."
    3. If no answer, return call to the operator or leave a message
    My understanding is that the aa.aef does not doe this. If I make the changes thru the CLI the results are the same??
    Any ideas, anyone?

    Hello,
    Please check the other scripts -  aa_sbcs_v03.aef and v04. For more info about AA please check the CCA 3.2.1 Admin guide p.415-419.
    Also when the call is transferred to the extension you may setup a voicemail for this extension and in the options for leaving voice mail you may press 0 and if you has operator set in the CUE the call will be transferred to the operator.
    You may check  if you have set voicemail operator number in WEBGUI of the CUE. The number should be set under Voicemail-> Call Handling->Voice Mail Operator Number:.
    HTH,
    Alex
    *Please rate helpful posts

  • What is the best practice for voicemail migration?

    Hello Tech Gurus,
    Am looking into a way to migrate our customer voicemail where their voicemail is on NME-CUE module. They want to migrate their voicemail's configurations, licenses and related (to SRE module) and I would like to know what is the best practice or guidelines that I can refer to.
    Thank you very much!
    Regards,
    Alex.

    Hi Alex,
    I was seeing the DOC  which says that 
    Cisco supports transfer of CUE licenses, with some restrictions. Transfer is supported for CUE devices that are of the same type, for an RMA or in cases in which a license was wrongly installed. This process is not intended for transferring licenses from one generation to another (for example, from NM-CUE to NME-CUE, or from NME-CUE to SRE devices). Transferring a license is accomplished using a process called rehosting. The rehosting process transfers a license from one UDI to another by revoking the license from the source device and installing in a new device
    http://www.cisco.com/c/en/us/td/docs/voice_ip_comm/unity_exp/rel7_1/Licensing/CUELicensing_book/csa_overview_CUE.html#wp1101175
    You can still speak to licensing team along with show license udi from SRE module along with old licenses details from NME-CUE fro rehosting.
    regds,
    aman

  • FLV cue point script

    Does anyone have a script that will make the movie go to and
    play another frame of the movie when a Flash video cue point is
    reached?

    SM6601,
    > Does anyone have a script that will make the movie go to
    > and play another frame of the movie when a Flash video
    > cue point is reached?
    See my answer in the ActionScript forum. ;)
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Scripting System Preferences/Adobe Version Cue Preferences

    I'm trying to disable the Adobe Version Cue CS2 status bar menu on a number of machines at the same time. I can't figure out how to reference the check box for it though.
    tell application "System Preferences"
    activate
    set current pane to pane "com.adobe.versioncueCS2.VCPrefPane"
    tell application "System Events"
    [click the box, darn you!]
    end tell
    end tell
    So far, I can successfully bring up the version cue preference pane. everything i try in the system events section of the script, i receive a "NSReceiverEvaluationScriptError: 4" From reading on various sites, I conclude that I'm just not references the check box correctly.
    I've found the following information about the checkbox from UI Element Inspector:
    <AXApplication: "System Preferences">
    <AXWindow: "Adobe Version Cue CS2">
    <AXTabGroup>
    <AXCheckBox: "Show Version Cue CS2 Status in menu bar">
    Attributes:
    AXRole: "AXCheckBox"
    AXRoleDescription: "check box"
    AXHelp: "(null)"
    AXValue: "1"
    AXEnabled: "1"
    AXFocused (W): "0"
    AXParent "<AXTabGroup>"
    AXWindow: "<AXWindow: "Adobe Version Cue CS2">
    AXPosition: "x=512 y=584"
    AXSize: "w=357 h=18"
    AXTitle: "Show Version Cue CS2 Status in menu bar"
    Actions:
    AXPress - press
    Can anyone provide some guidance?
    Powerbook G4   Mac OS X (10.4.4)  

    The code above contains multiple typographical errors.
    The code below should work.
    tell application "System Preferences"
    activate
    set current pane to pane "com.adobe.versioncueCS2.VCPrefPane"
    end tell
    tell application "System Events" to tell process "System Preferences" to click checkbox 1 of tab group 1 of window 1
      Mac OS X (10.4.4)

  • Missing startup script for version cue

    I'm having the problem where I don't seem to have the startup scripts for version cue in bridge.
    When I check the list of startup scripts in preferences, the other scripts all seem to be there like for contribute, fireworkds etc. However version cue is missing.
    I also checked the actual locations for the startup scripts.
    The scripts for version cue seem to be in the actual locations but for some reason they're not running or showing up in bridge or that's what I'm assuming anyway.
    I'm running bridge CS4 and version cue CS4.
    If anyone could help me that would be great!

    What then do they recommend?  The URL listed below is broken/no longer available.  The solution listed above does appear to work.  I installed Version Cue Server CS4 after having installed the rest of the suite on my workstation.  I used drive to link to the server(my machine which I am using for testing).  I had CS3 on this machine before uninstalling it and installing CS4.
    Re: Missing startup script for version cue
    Matthew Laun wrote:
     Adobe recommends that you do not follow the steps above to enable Version Cue CS4 in Bridge CS4.
    Please see this thread for more details:
    http://www.adobeforums.com/webx/.59b6d12f

  • Save to version cue by script

    Hi,
    I want to give it a try and save my documents via script in Version Cue. There are methods like "checkIn" but what is the path to my Version Cue project.
    My Version Cue address is something like "http://10.0.0.1:3703/"
    So my Script needs to use this address somehow, I guess. Has anyone done this before ?
    Thanks Stefan

    Jasker - Thanks you for trying to help, but it didn't work. I followed your directions. Then I attempted to restart the Version Cue server and a Safari browser opened and pointed to http://localhost:3703/ with the message "Safari cant connect to the server.
    Safari cant open the page http://localhost:3703/ because it could not connect to the server localhost."
    I just want it to start up again so I can properly retrieve all of our projects! Even if I can get it back up, I don't think I will use Version Cue the way we used to, now that I know how unreliable it can be.
    Can anyone at least offer advice on how to salvage shared projects (created and maintained by 2 different users) from the Version Cue server when it's offline?

Maybe you are looking for

  • Quick VPN Windows 7 unable to acess network shares or ping

    I have an RV042 using Quick VPN to connect to a remote network. I have port 1723 forwarded to a static IP address on a Windows 7 Pro 64 bit PC. I can establish the VPN and ping a printer but not the Win 7 PC. I can not acccess any shares on the pc vi

  • How to restore Lost App Tabs and Tab Groups

    I make a lot of use of App tabs and Tab Groups. Today at startup of FireFox it showed only 1 blank tab with the default FireFox startup page. As far as I know there wasn't anny update recently. I have lost session restore before but then FireFox star

  • Folders seem to be limited to just one page

    I tried to move an app (call it #1) into a folder and it wouldn't move.  When I checked the folder had a full page of apps in it.  I removed one of them (call it #2) and then was able to move #1 into the folder. This seems like a fairly serious desig

  • Failure to download free apps

    Why can't install free apps on my iPad Air yet I have the Apple ID?help me please

  • How can I write a array to other subvi when the program running?

    Hello I am working on a project with labVIEW, In the programme I made, there is an Case structure. And there  are several subvI, each subvi belongs to one case.My question is when I process the data I a certain subvI, how can I wrtie this file(an arr