Cp4 AS2 - Allow learner to copy variable to clipboard

Is there a way to present the contents of a Cp variable to the learner in a way that allows them to copy its contents to the clipboard?
I thought about passing the variable contents to javascript and using prompt() with default text set to the variable contents, but prompt() is disabled by default on IE7 which some of my target audience use.
I can't use alert() as on some browsers you can't copy alert messages.
I need a solution that covers a range of browsers and security settings which are out of my control.
Thanks

I have the same problem.
Tried the plugin, didn't work, tried to edit user.js manually, didn't work (necessary entries have been there already from the plugin).
I am on Ubuntu, FF8, in case that matters.
Thx,
T

Similar Messages

  • Right clicking on a person's email address no longer allows me to "copy email address" a feature I used a ton. How can I do this now?

    Hello, We use a program called Zimbra for work which houses our email and calendar systems. I used to be able to hover over someone's email address, right click, and an option would pop up to allow me to "copy email address". This feature stopped a week or more ago and I called my business tech support and they said it is not a feature of Zimbra so perhaps it is a Firefox issue. Thought I would ask. I do a lot of copy and pasting of email addresses for our job listservs and this was a helpful feature.

    Thanks Barney.  Yes, duplicating the file is a work around and I will use it for now.  I was hoping that I could set a preference or something to have TextEdit save new files like it used to.  Not sure why a redesign would limit options for saving files.  That, to me, is crazy. Using the duplicating feature means more clicks to get it to do what I used to be able to do more easy.  I hate "improvements" like this to an app. 
    I have "Documents and Data" checked in my iCloud preferences and when I uncheck it warns me that unchecking means that if I turn it off then all documents stored in iCloud will be deleted from the Mac.  Not sure if I want to do that or nor.  I don't like using iCloud for storage, but I think my photos from my iphoneare on there and I am not sure I want to keep those deleted off of this Mac as I use some photos for work related items and this is a work related Mac.  What do you think?
    I would like to try a "save as" option, but that does not even come up when the "File" menu is selected.  Using the command key does not make it appear either. 
    And thanks for the advice about a hidden preference for iCloud.  I have not found it, but I amnot sure why they would hide such a preference either. 
    I switched to Mac a few years ago because they were so much better than PCs. Now, they seem to be creeping into PC **** with unnecessary changes to apps that do not make any sense to me. 

  • My ipod has 760 songs on it.  I had to reload my computer that contained itunes.  The new installation of itunes won't allow me to copy the songs into the library.  What can I do?

    My ipod has 760 songs on it.  I had to reload my computer that contained itunes.  The new installation of itunes won't allow me to copy the songs into the library.  What can I do?

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Copying Variables in BPEL using XPath Query

    Hi,
    I am new to BPEL and i want to know if it is possible to copy data from one variable to another using XPath Query in the <from> <to> tags, when the two variables are of different message types.
    I am trying to create a sample BPEL that would receive a String through the receive tag tied to one partner link (WSDl) and then invoke a different webservice using the <invoke> tag tied to another partner link (WSDL) by passing the received variable.
    I have pasted the BPEL File and the two WSDl files involved.
    My Issue is that when I send a soap request to the BPEL, it is passed as null to the webservice invoked.
    Probably because the copy tags don't work.
    Please help.
    BPEL File
    <!--
    ~ Licensed to the Apache Software Foundation (ASF) under one
    ~ or more contributor license agreements. See the NOTICE file
    ~ distributed with this work for additional information
    ~ regarding copyright ownership. The ASF licenses this file
    ~ to you under the Apache License, Version 2.0 (the
    ~ "License"); you may not use this file except in compliance
    ~ with the License. You may obtain a copy of the License at
    ~
    ~ http://www.apache.org/licenses/LICENSE-2.0
    ~
    ~ Unless required by applicable law or agreed to in writing,
    ~ software distributed under the License is distributed on an
    ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    ~ KIND, either express or implied. See the License for the
    ~ specific language governing permissions and limitations
    ~ under the License.
    -->
    <process name="HelloWorld2"
    targetNamespace="http://ode/bpel/unit-test"
    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
    xmlns:tns="http://ode/bpel/unit-test"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:test="http://ode/bpel/unit-test.wsdl"
    xmlns:ns0="http://poc.com"
    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
    <import location="HelloWorld2.wsdl"
    namespace="http://ode/bpel/unit-test.wsdl"
    importType="http://schemas.xmlsoap.org/wsdl/" />
    <import location="sayHello.wsdl"
    namespace="http://poc.com"
    importType="http://schemas.xmlsoap.org/wsdl/" />
    <partnerLinks>
    <partnerLink name="helloPartnerLink"
    partnerLinkType="test:HelloPartnerLinkType"
    myRole="me" />
    <partnerLink name="sayHelloBPELPL"
    partnerLinkType="ns0:sayHelloPLT"
    partnerRole="you" initializePartnerRole="yes" />
    </partnerLinks>
    <variables>
    <variable name="myVar" messageType="test:HelloMessage"/>
    <variable name="tmpVar" messageType="test:HelloMessage"/>
    <variable name="inVar" messageType="ns0:sayHelloRequest"/>
    <variable name="outVar" messageType="ns0:sayHelloResponse"/>
    </variables>
    <sequence>
    <receive
    name="start"
    partnerLink="helloPartnerLink"
    portType="test:HelloPortType"
    operation="hello"
    variable="myVar"
    createInstance="yes"/>
    <assign name="ass1">
    <copy>
    <from variable = "myVar" part = "TestPart"/>
    <to variable = "inVar"
    part = "parameters"
    query= "/sayHello/ns0:param0" />
    </copy>
    </assign>
    <invoke partnerLink = "sayHelloBPELPL"
    portType = "ns0:sayHelloPortType"
    inputVariable = "inVar"
    operation = "sayHello"
    outputVariable = "outVar">
    </invoke>
    <assign name="ass2">
    <copy>
    <from variable = "outVar"
    part = "parameters"
    query= "/sayHelloResponse/ns0:return" />
    <to variable = "tmpVar" part="TestPart"/>
    </copy>
    </assign>
    <reply name="end"
    partnerLink="helloPartnerLink"
    portType="test:HelloPortType"
    operation="hello"
    variable="tmpVar"/>
    </sequence>
    </process>
    WSDL File1
    <?xml version="1.0" encoding="utf-8" ?>
    <!--
    ~ Licensed to the Apache Software Foundation (ASF) under one
    ~ or more contributor license agreements. See the NOTICE file
    ~ distributed with this work for additional information
    ~ regarding copyright ownership. The ASF licenses this file
    ~ to you under the Apache License, Version 2.0 (the
    ~ "License"); you may not use this file except in compliance
    ~ with the License. You may obtain a copy of the License at
    ~
    ~ http://www.apache.org/licenses/LICENSE-2.0
    ~
    ~ Unless required by applicable law or agreed to in writing,
    ~ software distributed under the License is distributed on an
    ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    ~ KIND, either express or implied. See the License for the
    ~ specific language governing permissions and limitations
    ~ under the License.
    -->
    <wsdl:definitions
    targetNamespace="http://ode/bpel/unit-test.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://ode/bpel/unit-test.wsdl"
    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
    xmlns:ns0="http://poc.com">
    <wsdl:message name="HelloMessage">
    <wsdl:part name="TestPart" type="xsd:string"/>
    </wsdl:message>
    <wsdl:portType name="HelloPortType">
    <wsdl:operation name="hello">
    <wsdl:input message="tns:HelloMessage" name="TestIn"/>
    <wsdl:output message="tns:HelloMessage" name="TestOut"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="hello">
    <soap:operation soapAction="" style="rpc"/>
    <wsdl:input>
    <soap:body
    namespace="http://ode/bpel/unit-test.wsdl"
    use="literal"/>
    </wsdl:input>
    <wsdl:output>
    <soap:body
    namespace="http://ode/bpel/unit-test.wsdl"
    use="literal"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloService">
    <wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
    <soap:address location="http://localhost:8082/ode/processes/helloWorld"/>
    </wsdl:port>
    </wsdl:service>
    <plnk:partnerLinkType name="HelloPartnerLinkType">
    <plnk:role name="me" portType="tns:HelloPortType"/>
    <plnk:role name="you" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>
    </wsdl:definitions>
    WSDL File 2
    <?xml version="1.0" encoding="UTF-8" ?>
    <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:ns0="http://poc.com"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
    xmlns:ns1="http://org.apache.axis2/xsd"
    xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"
    targetNamespace="http://poc.com">
    <wsdl:types>
    <xs:schema xmlns:ns="http://poc.com" attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://poc.com">
    <xs:element name="sayHello">
    <xs:complexType>
    <xs:sequence>
    <xs:element minOccurs="0" name="param0" nillable="true" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="sayHelloResponse">
    <xs:complexType>
    <xs:sequence>
    <xs:element minOccurs="0" name="return" nillable="true" type="xs:string" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    </wsdl:types>
    <wsdl:message name="sayHelloRequest">
    <wsdl:part name="parameters" element="ns0:sayHello" />
    </wsdl:message>
    <wsdl:message name="sayHelloResponse">
    <wsdl:part name="parameters" element="ns0:sayHelloResponse" />
    </wsdl:message>
    <wsdl:portType name="sayHelloPortType">
    <wsdl:operation name="sayHello">
    <wsdl:input message="ns0:sayHelloRequest" wsaw:Action="urn:sayHello" />
    <wsdl:output message="ns0:sayHelloResponse" wsaw:Action="urn:sayHelloResponse" />
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="sayHelloSOAP11Binding" type="ns0:sayHelloPortType">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <soap:operation soapAction="urn:sayHello" style="document"/>
    <wsdl:input>
    <soap:body use="literal" />
    </wsdl:input>
    <wsdl:output>
    <soap:body use="literal" />
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="sayHello">
    <wsdl:port name="sayHelloPort" binding="ns0:sayHelloSOAP11Binding">
    <soap:address location="http://localhost:8082/ode/processes/sayHello" />
    </wsdl:port>
    </wsdl:service>
    <plnk:partnerLinkType name="sayHelloPLT">
    <plnk:role name="me" portType="ns0:sayHelloPortType"/>
    <plnk:role name="you" portType="ns0:sayHelloPortType"/>
    </plnk:partnerLinkType>
    </wsdl:definitions>

    Hi,
    Yes, it very much is possible.
    Xpath query provides a lot many data type conversion functions(string to int, string to date etc), which can be used in copying variables.
    thanks
    Saurabh

  • I want to move pic's in a folder from iPhoto to a flash drive. Everything I've tried allows me to "copy" the contents of the folder, but when I access the flash drive it does not allow me to "paste".  What do I do??

    I want to move pic's in a folder from iPhoto to a flash drive. Everything I've tried allows me to "copy" the folder but no "paste" to the flash drive.  What do I do?  What am I doing wrong??

    Welcome to Apple Support Communities
    Your USB drive is formatted in NTFS, and OS X can't write on disks with NTFS. To fix this:
    1. Use an app like Paragon NTFS.
    2. Format the USB drive in another filesystem like "Mac OS Extended (Journaled)", "MS-DOS (FAT)" or "exFAT" > http://pondini.org/OSX/DU1.html Make a backup of your files on the external disk.
    After doing that, you will be able to copy your photos to the external disk. Note that you can also use the Export feature in iPhoto to get more export options

  • After upgrade top 4.0 the program const asks me to allow it to copy files. I have reinstalled. no help

    For some reason after I installed 4.o it keeps asking me to allow it to copy and replace files. Since I started typing this it has opened three windows.

    Hello TwoTankAmin, the Java deployment Toolkit is for developers and used by Java applications to help manage getting the right version of Java for a user’s system. Are you sure the problem is there ?
    Do you have it '''Always Activate''', in Add-ons Manager tab and the Java TM platform SE 7 U67 also? [https://support.mozilla.org/en-US/kb/troubleshoot-issues-with-plugins-fix-problems#w_determining-if-a-plugin-is-the-problem Determining if a plugin is the problem].
    thank you

  • I want to copy fotos to a mass storage external HD, but my emac only allow me to copy from the HD to the mac and not from the mac to the HD, how can I do it? thanks in adavance for your help

    I want to copy fotos to a mass storage external HD, but my emac only allow me to copy from the HD to the mac and not from the mac to the HD, how can I do it? thanks in adavance for your help

    The external HD might be set to Read Only on your eMac.  Try this:
    If the external HD shows on your desktop, single click the HD to highlight it.  From the Finder Menu bar at the top of the screen, click on File, pull down and click on Get Info.  At the bottom of window that opens, under Sharing and Permissions, you might see something like:
    System:  Read & Write
    Admin:  Read & Write
    User X:  Read Only
    User X being your user account.
    Good luck.

  • Hello! I have a ipod nano 3rd generation. I have old music I would like to "copy" into my itunes without syncing. Is there a good software to allow me to copy and transfer the music into my my exsisting itunes?

    Hello!
    I have a ipod nano 3rd generation. I have music that I would like to "copy" into my exsiting itunes account without syncing. Does anyone know of a good software program that will allow me to copy/transfer the music without syncing it into my exsisting itunes account

    See this older post from another forum member Zevoneer covering the different methods and software available to assist you with the task of copying content from your iPod back to your PC and into iTunes.
    https://discussions.apple.com/thread/2452022?start=0&tstart=0
    B-rock

  • Why wont iTunes allow me to copy/sync a song from my iPod?

    Why wont iTunes allow me to copy/sync a song from my iPod? I have a song on my iPod that i want on my laptop to add to my iPhone, but i can't sync it. I did not purchase it via iTunes.

    The music sync is one way - computer to ipod.  The ONLY exception is itunes purchases.
    As the song came from your computer in the first place, it should still be there and be included in your regular backup of your computer.
    The ipod is not a storage/backup device.

  • Will not allow me to copy, paste ect....

    will not allow me to copy from one document and then paste to another document

    Click on the drive, choose Get Info from the File menu, and check the format.
    If it's formatted as NTFS, reformat it as MS-DOS, exFAT, or Mac OS Extended (Journaled) as desired, or install software such as Paragon NTFS on the computer.
    If it's formatted as FAT32 or exFAT, use the Disk Utility's Repair Disk command on it; this may also happen for a flash drive which is about to fail.
    If it's formatted as Mac OS Extended, click Authenticate and provide your administrator password, or change the permissions on that specific folder in its Get Info window.
    (115546)

  • Allowing printing and copying

    Please can somebody tell me how to go about 'allowing' printing and copying from pages of the ebooks I have bought for my studies. Is this an issue that I should address to the online seller here in South Africa or is this 'not allowed to print or copy' an Adobe issue?  Thank you, Ann Williams

    Can you post the file somewhere and link to it so we can see it? If you only checked those options, i should be fine.

  • Signed Applet JTextField copy to system clipboard

    Hi all,
    We have a signed and deployed our JAR file that contains our applet following the instructions listed at:
    http://java.sun.com/products/plugin/1.3/docs/rsa_signing.html
    We used Thwate as our CA. All seemed good.
    However any JTextFields that are in our applet cannot access the system clip board. Looking at the source for JTextComponent it should have access to the system clipboard if the securitymanager allows it.
    The strange thing is that if I call getToolkit().getSystemClipboard() from our applets I can access the clipboard and copy to the system clipboard. Even the code in JTextComponent that checks for system clipboard access (canAccessSystemClipboard) works fine when pasted into the applet.
    Why cant a JTextField copy to the clipboard? Has anyone else come across this?

    Juste an idea.... Is your JTextField belonging to the javax.swing.... packages ?
    Or did you compile using some com.ms , ibm.... sun... package ? This could lead to some different implementations.

  • More DataFlavors copied to the clipboard/used in D&D in one step

    Hallo,
    For my GUI app. I would like to enable different types of information to copied to the clipboard.
    e.g. object type 1 - Document ID ( actual row's document ID from JTable ) - to copy document type
    object type 2 - string representation ( columns texts from JTable ) - to copy to excel
    I would like to keep them general, with different possible combinations
    among them ( up to 10 different object types ), according to some specs.
    Has anybody idea, if it is possible ? ( prefarably with 1.4 D&D interface ).
    Data are packed in createTransferable() call, but it allows just 1 format (?) ...
    Maybe I can use some 'envelope' format holding all possible information,
    but that idea doesn't looks nice for me :(
    Thanks for any hint.
    Tibor

    Hi !
    Thanks for your help. For drag & drop it's fine. System will ask for 'best' format as I expect.
    How is it with clipboard ? I had idea to copy table columns as a "text" flavor
    ( for paste into excel ) and user created flavor "id" with documentId inside.
    On paste I would take 'what's better' ( e.g. as a document reference better would be better my "id" flavor,
    because that information doesn't need to be in table cells inside ).
    Maybe I will have to use 'own' clipboard for these reasons.
    Tibor

  • Copying to the clipboard is disabled. How can I fix this?

    WHen I am inside any application in Firefox (oe Google Apps, etc.) ANY application, I receive the following message when trying to use Edit, Copy
    Your browser does not allow access to your computer's clipboard.
    Instead, please use Ctrl-C for Copy, Ctrl-X for Cut and
    Ctrl-V for Paste, or use your browser's Edit menu.

    You are probably better off / much safer using copy and paste yourself
    But this is what is referred to
    * Security Policies - MozillaZine Knowledge Base <br>http://kb.mozillazine.org/Security_Policies
    * Granting JavaScript access to the clipboard - MozillaZine Knowledge Base<br> http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard

  • Safari copy wipes the clipboard

    Anyone else have this in Safari 4 for Windows?
    I use Safari at work, often copying and pasting text; in Safari 4 I have noticed an issue that when I have text in the clipboard and use the keyboard shortcut to paste the text into a text box on a web page.
    Here's what happens, I first have some text I copied into the clipboard, when I accidentally hit Ctrl-C instead of Ctrl-V the clipboard gets wiped out as Safari copies a null amount of text into the clipboard, thus if I realize my mistake and try to do a Ctrl-V my previously copied text has disappeared from the clipboard and nothing pastes.
    Yeah I know I should learn to type better, ha ha, but we all occasionally make mistakes and it's infuriating when this happens. I am sure this was not the behaviour Safari 3 and also this issue does not occur in FireFox and I think most other browsers out there.
    I clean installed Safari on a new install of Windows on a virtual machine and was able to recreate the issue.
    Any thoughts?
    Phil
    Message was edited by: sixfootphil

    I found byselft the solution. Here the step for those who have to do the same:
    Copy Premise to the clipboard (BDD)
      l_procobj-header = 'OBJH'.
      l_procobj-type   = 'SWO'.
    Create object Premises
      CALL FUNCTION 'SWO_CREATE'
           EXPORTING
                objtype = 'PREMISES'
                objkey  = l_key
           IMPORTING
                object  = l_procobj-handle
                return  = l_return.
      IF NOT l_return IS INITIAL.
        EXIT.
      ENDIF.
    Set Object ID
      CALL FUNCTION 'SWO_OBJECT_ID_SET'
           EXPORTING
                object    = l_procobj-handle
                objectkey = l_key
           IMPORTING
                return    = l_return
           EXCEPTIONS
                OTHERS    = 1.
      IF NOT l_return IS INITIAL.
        EXIT.
      ENDIF.
    Buffer Refresh
      CALL FUNCTION 'SWO_OBJECT_REFRESH'
           EXPORTING
                object       = l_procobj
           EXCEPTIONS
                error_create = 02.
      l_def-element      = '<MAINOBJ>'.
      l_def-editorder    = 2000 - 1.
      l_def-reftype      = 'O'.
      l_def-refobjtype   = 'PREMISES'.
    APPEND l_def TO li_def.
      CALL FUNCTION 'EWO_XTAINER_ELEMENT_SET'
           EXPORTING
                x_elemdef       = l_def
                x_value         = l_procobj
           CHANGING
                xy_xtainer      = l_desk_xtain
           EXCEPTIONS
                invalid_elemdef = 1
                internal_error  = 2
                OTHERS          = 3.
      CALL FUNCTION 'CIC_EVENT_RAISE'
           EXPORTING
                event  = 'ADD_XTAINER_TO_BDD'
                p1     = l_desk_xtain
           EXCEPTIONS
                OTHERS = 99.

Maybe you are looking for

  • Ipod 2G speaker doesn't work after iOS 4 update

    I've just posted a message with the music that "lags" with the new software update and on top of that I now found out the the build in speaker of the Ipod stopped working to! Please help! Message was edited by: Paulf88

  • Email ID and Swift code through Vendor Mass  MAintenance XK99

    Dear experts, is there a way to mass update Vendor email lD and swift code through XK99? I found all other fields, but not these two. What could be the work around if not possible through XK99? Thank you and Warm regards, Sumit.

  • Error when Installing Oracle XE on Suse Linux 10.0

    I am installing Oracle xe on Suse Linux 10.0. I get following error. gthomas@linux:~/oraclexe> rpm -ivh oracle-xe-10.2.0.1-0.1.i386.rpm error: cannot get exclusive lock on /var/lib/rpm/Packages error: cannot open Packages index using db3 - Operation

  • Email attachment from fop

    i am creating a pdf by using fop. the issue is that i want to attach the pdf file to an email. but i am wondering if there is any way to attach file to an email without generating an actual file. i am looking for info that i can use stream or object

  • How to open lumix ra2 files in pse 12

    How do I open Lumix ra2 files in Elements 12?