Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
160 user(s) are online (106 user(s) are browsing Forums)

Members: 1
Guests: 159

joerg, more...

Headlines

 
  Register To Post  

Mapping the AMIGA key
Home away from home
Home away from home


See User information
Probably that has been asked before, unfortunately i cannot find the information i'd need to solve my problem.

I recently got an USB cordless keyboard/mouse combo (Logitech WAVE) and apart form the missing Amiga keys it works a treat.

The left window key does act as a left Amiga key, but i don't have the right window key, there is only a "Fn" key, which does add some special functionality to other keys scattered over the keyboard.

I did set the right window key to menu in UBoot and it works (though with the rather annoying key combo - Fn-Menu to have a right Amiga key).

The key combos with this are working (i.e. close all drawers with one click, close the parent drawer when opening a sub drawer and such) except the copy&paste combination and i don't know why.

Neither Amiga+C, nor Amiga+V work and i REALLY miss those (ever copied stuff from the shell window?)

Now my question, how have others solved this kind of problem?
Are there any keymappers out there that could map the Amiga key to CTRL (which would in my eyes the best solution for those keyboard/mouse combos).

What else could i try?

Please help

Thanks a lot in advance

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: Mapping the AMIGA key
Not too shy to talk
Not too shy to talk


See User information
@Raziel

Quote:
Now my question, how have others solved this kind of problem?


Look at the keyboard layout *before* you buy it perhaps ?

I stumbled across a similar problem with a cheap Logitech keyboard, too: it does not have a Scroll key and thus cannot be used with KVM switches. No solution for that, had to stay with my old keyboard.

Bye,
Thomas

Go to top
Re: Mapping the AMIGA key
Just can't stay away
Just can't stay away


See User information
@thomas

I don't know if it is the same problem, but i was able to edit the layout of my keboard on amiga os 4.x to use a key that was present in the keyboard but not use on the amiga os.. but i don't know if it is the same..

Go to top
Re: Mapping the AMIGA key
Amigans Defender
Amigans Defender


See User information
@Raziel

Take a look at AllKeys.

Don't remap RAmiga to RCtrl - you'll lose ctrl completely, as the two ctrl keys are treated as the same thing within AmigaOS. RAlt might be a better bet.

Chris

Go to top
Re: Mapping the AMIGA key
Just can't stay away
Just can't stay away


See User information
@Raziel

Amigakeyremapper can be made to remap right amiga to the left alt key. To do this just modify the lines in main.c:
#if 1 /* remaps left amiga <-> right amiga */
new_qualifier event->ie_Qualifier & ~(IEQUALIFIER_LCOMMAND|IEQUALIFIER_RCOMMAND);
if (
event->ie_Qualifier IEQUALIFIER_LCOMMAND)
    
new_qualifier |= IEQUALIFIER_RCOMMAND;
if (
event->ie_Qualifier IEQUALIFIER_RCOMMAND)
    
new_qualifier |= IEQUALIFIER_LCOMMAND;
event->ie_Qualifier new_qualifier;
#endif

#if 0 /* remaps right amiga <-> left alt */
new_qualifier event->ie_Qualifier & ~(IEQUALIFIER_RCOMMAND|IEQUALIFIER_LALT);
if (
event->ie_Qualifier IEQUALIFIER_RCOMMAND)
    
new_qualifier |= IEQUALIFIER_LALT;
if (
event->ie_Qualifier IEQUALIFIER_LALT)
    
new_qualifier |= IEQUALIFIER_RCOMMAND;
event->ie_Qualifier new_qualifier;
#endif

to:
#if [b]0[/b] /* remaps left amiga <-> right amiga */
new_qualifier event->ie_Qualifier & ~(IEQUALIFIER_LCOMMAND|IEQUALIFIER_RCOMMAND);
if (
event->ie_Qualifier IEQUALIFIER_LCOMMAND)
    
new_qualifier |= IEQUALIFIER_RCOMMAND;
if (
event->ie_Qualifier IEQUALIFIER_RCOMMAND)
    
new_qualifier |= IEQUALIFIER_LCOMMAND;
event->ie_Qualifier new_qualifier;
#endif

#if [b]1[/b] /* remaps right amiga <-> left alt */
new_qualifier event->ie_Qualifier & ~(IEQUALIFIER_RCOMMAND|IEQUALIFIER_LALT);
if (
event->ie_Qualifier IEQUALIFIER_RCOMMAND)
    
new_qualifier |= IEQUALIFIER_LALT;
if (
event->ie_Qualifier IEQUALIFIER_LALT)
    
new_qualifier |= IEQUALIFIER_RCOMMAND;
event->ie_Qualifier new_qualifier;
#endif

and type "make" to compile (this requires that you have the SDK installed of course).

Go to top
Re: Mapping the AMIGA key
Home away from home
Home away from home


See User information
@Chris

Thanks for the CTRL hint, i wouldnt have known

Ill take a look at AllKeys aswell as i have it already installed, but doesnt seem to be able to find the right command/option

@salass00

Thank you for that program, i will try to install (make) it asap im back on my amiga again (That looks like exactly the thing i was searching for)

Cheers all

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: Mapping the AMIGA key
Just popping in
Just popping in


See User information
@Raziel

Uboot env var:

kbddev_norwin=yes

Go to top
Re: Mapping the AMIGA key
Just can't stay away
Just can't stay away


See User information
@Ami603

Raziel said:
Quote:
I did set the right window key to menu in UBoot and it works


Philippe 'Elwood' FERRUCCI
Sam460ex 1.10 Ghz
http://elwoodb.free.fr
Go to top

  Register To Post

 




Currently Active Users Viewing This Thread: 1 ( 0 members and 1 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project