Post Reply 
emu48 question
01-17-2015, 03:50 AM
Post: #5
RE: emu48 question
(01-16-2015 05:49 PM)Christoph Giesselink Wrote:  
(01-16-2015 12:37 AM)ball Wrote:  Is there a way to remap the copy hotkey to windows-c?

Remap is not possible.

There're 3 (or 4) ways to execute "Edit/Copy Stack":

<Alt><E><C> access over menu
<Ctrl><C> windows standard for copy
<Ctrl><Ins> old windows standard for copy

There're 3 ways to execute "Edit/Paste Stack":

<Alt><E><P> access over menu
<Ctrl><V> windows standard for paste
<Shft><Ins> old windows standard for paste

In some Emu48 scripts the <Ctrl> key is used as single key, then the combinations <Ctrl><C> and so on aren't working any more.

Another method is to create an invisible button which is linked with the copy stack menu point. This button then can be called over KML Scancode definitions.

Example:
Code:

Button 200
    Type 0
    Size 0 0
    Offset 0 0
    NoHold
    OnUp
        MenuItem 19    # copy stack
    End
End

Scancode 91            # Window key
    Map 91 200
End

But when you try this example you will see that the windows key isn't a very good choice, the windows start menu is also called at button release.

For completeness, the fourth method is to pick up the Emu48 source and change the source code.

The windows key doesn't popup the start menu if there is no start menu (using WINE)
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
emu48 question - ball - 01-16-2015, 12:37 AM
RE: emu48 question - Dave Frederickson - 01-16-2015, 12:56 AM
RE: emu48 question - ball - 01-16-2015, 04:32 AM
RE: emu48 question - Christoph Giesselink - 01-16-2015, 05:49 PM
RE: emu48 question - ball - 01-17-2015 03:50 AM



User(s) browsing this thread: 1 Guest(s)