Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2005
    Posts
    572

    how i prass ctrl + v (Paste) whit a button?

    the code key for ctrl is 17 a the cot for V is 86 how i prass ctrl + V for Paste a copy data whit a button (if user prass the button then the button run the Paste).
    i ned to know if samwan copy whit rhit click on the mouse and the click copy if i can know and the make a paste in my program
    Last edited by lnd; 05-26-2006 at 09:54 AM.

  2. #2
    Join Date
    Oct 2005
    Posts
    572

    somting like this

    if e_Key == 13 then
    -- Load the address that was input by the user:
    Web.LoadURL("Web1", Input.GetText("Input1"));
    end

    bat i need a code 17 and 86 how i put 2 numbers?
    and how i gut the mouse click?

  3. #3
    Join Date
    Jun 2002
    Location
    Israel
    Posts
    1,843
    You have to use both the e_Key value (number) and the e_Modifiers value (table):

    if e_Key == 86 and e_Modifiers.ctrl ==true then
    -- Load the address that was input by the user:
    Web.LoadURL("Web1", Input.GetText("Input1"));
    end


    Hope that helps

    Yossi

  4. #4
    Join Date
    Mar 2005
    Posts
    222
    well you need to go to plugins (Project --> plugins) and select clippboard one.

    then use the Clipboard.GetText(); and Clipboard.CopyText("My Text") commands to associate this action to anything on AMS

Similar Threads

  1. Example: Creating an on/off button to toggle background audio
    By Jonas DK in forum AutoPlay Media Studio 5.0 Examples
    Replies: 0
    Last Post: 07-10-2004, 02:54 PM
  2. Dynamic Return Button
    By Octaine in forum AutoPlay Media Studio 5.0
    Replies: 3
    Last Post: 06-29-2004, 01:43 PM
  3. Button Hiding Blues
    By Tezcatlipoca in forum AutoPlay Media Studio 4.0
    Replies: 5
    Last Post: 04-11-2003, 04:57 PM
  4. INFO: The Explore Button on the Distribution Folder Dialog
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-11-2002, 12:06 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts