Click Here
home features news forums classifieds faqs links search
6155 members 
Amiga Q&A /  Free for All /  Emulation /  Gaming / (Latest Posts)
Login

Nickname

Password

Lost Password?

Don't have an account yet?
Register now!

Support Amigaworld.net
Your support is needed and is appreciated as Amigaworld.net is primarily dependent upon the support of its users.
Donate

Menu
Main sections
» Home
» Features
» News
» Forums
» Classifieds
» Links
» Downloads
Extras
» OS4 Zone
» IRC Network
» AmigaWorld Radio
» Newsfeed
» Top Members
» Amiga Dealers
Information
» About Us
» FAQs
» Advertise
» Polls
» Terms of Service
» Search

IRC Channel
Server: irc.amigaworld.net
Ports: 1024,5555, 6665-6669
SSL port: 6697
Channel: #Amigaworld
Channel Policy and Guidelines

Who's Online
22 crawler(s) on-line.
 95 guest(s) on-line.
 0 member(s) on-line.



You are an anonymous user.
Register Now!

/  Forum Index
   /  Classic Amiga Software
      /  Alternative keyboard layouts for the AMIGA?
Register To Post

PosterThread
linuxlalala 
Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 5:51:29
#1 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

Is there a way to use an alternative keyboard layout (eg Greek or German) on the AMIGA?

 Status: Offline
Profile     Report this post  
Gebrochen 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 7:41:32
#2 ]
Super Member
Joined: 23-Nov-2008
Posts: 1441
From: Australia

@linuxlalala

You could buy the euro kybd from amikit, its usb though, so you would need to also buy a converter if it is for your classic.

Cheers

_________________
Courtesy of SAM440Flex & Amiga OS4.1 only
Flex is 800mhz
A1000 with Classic 520 Amiga OS3.2.1
AmiKit 12
MorphOS PowerBook G4 (which can play youtube vids)

https://blitterwolf.blogspot.com

 Status: Offline
Profile     Report this post  
linuxlalala 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 9:48:06
#3 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

@Gebrochen

If I wasn't clear enough, I would like to change keyboard layouts with software (Alt+Shift switching). For example, I would like to have English keyboard, and then change to Greek by pressing Alt+Shift or other key :).

 Status: Offline
Profile     Report this post  
Cass 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 11:41:34
#4 ]
Regular Member
Joined: 18-Nov-2003
Posts: 481
From: Athens, Greece

@linuxlalala

You may try ChangeKeymap, an ARexx script triggered by any key combination you like through FKey.

_________________
Ordell Robbie: Is she dead, yes or no?
Louis: Pretty much.

 Status: Offline
Profile     Report this post  
linuxlalala 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 12:11:31
#5 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

@Cass

It seems this is for AmigaOS 4.x . I need to do that on a classic AMIGA :).

 Status: Offline
Profile     Report this post  
pavlor 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 12:26:37
#6 ]
Elite Member
Joined: 10-Jul-2005
Posts: 9786
From: Unknown

@linuxlalala

Quote:
It seems this is for AmigaOS 4.x . I need to do that on a classic AMIGA :).


Arexx is the same also on OS4 (I think) and FKey is included in AmigaOS 3.x. Sure, this particular script probably will not work, maybe there are other (Aminet?).

Eg.:

http://aminet.net/package/util/cdity/HotMaps

However, I don´t know if that helps.

Last edited by pavlor on 01-May-2013 at 12:31 PM.
Last edited by pavlor on 01-May-2013 at 12:27 PM.

 Status: Offline
Profile     Report this post  
linuxlalala 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 13:05:41
#7 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

EDIT: Wrong info :)

Last edited by linuxlalala on 01-May-2013 at 01:13 PM.

 Status: Offline
Profile     Report this post  
Severin 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 14:47:14
#8 ]
Elite Member
Joined: 18-Aug-2003
Posts: 2740
From: Gloucestershire UK

@linuxlalala

All you need to do is change the env:sys/input.prefs file, a simple dos script called from fkey will do this.

If you just want to swap between two layouts:

Run input prefs and setup the alternative layout you want and use saveas from the menu and save it as "envarc:sys/input.prefs.off"

then use a dos script like:

env:sys/
rename input.prefs input.prefs.temp
rename input.prefs.off input.prefs
rename input.prefs.temp input.prefs.off

if you need more than two layouts I suggest you use requestchoice and have a prefs file saved for each layout in envarc:sys/ eg.

input.greek
input.german
input.english
input.american

Then use:

env:sys ;use envarc if you want the change to survive a reboot
set type `requestchoice "Select layout" "Choose your prefered layout" English|American|German|Greek`
if $type EQ 0
copy input.english input.prefs force
end
if $type EQ 1
copy input.american input.prefs force
end
if $type EQ 2
copy input.german input.prefs force
end
if $type EQ 3
copy input.greek input.prefs force
end
copy input.prefs env:sys force
unset type


Last edited by Severin on 01-May-2013 at 02:48 PM.

_________________
OS4 Rocks
X1000 beta tester, Sam440 Flex (733)

Visit the Official OS4 Support Site for more help.

It may be that your sole purpose is to serve as a warning to others.

 Status: Offline
Profile     Report this post  
Hypex 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 14:53:14
#9 ]
Elite Member
Joined: 6-May-2007
Posts: 11351
From: Greensborough, Australia

@linuxlalala

You could also take Severin's examples amd program it into FKey.

For another task I programmed FKey to bring up a string gadget with RequestString and pass it to another program inside a script. So certainly possible.

You should be able to program Input on the command line as well and specify the prefs file to use.

Last edited by Hypex on 01-May-2013 at 02:56 PM.

 Status: Offline
Profile     Report this post  
linuxlalala 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 1-May-2013 15:09:06
#10 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

I have found http://www.mfilos.com/2013/04/custom-greek-support-on-os39.html . I will try it and see...

 Status: Offline
Profile     Report this post  
linuxlalala 
Re: Alternative keyboard layouts for the AMIGA?
Posted on 8-May-2013 4:37:48
#11 ]
Member
Joined: 25-Mar-2013
Posts: 67
From: Unknown

ts, you can copy the ones found at the Greek locale pack at http://www.mfilos.com/2013/04/custom-greek-support-on-os39.html . I might make a video tutorial soon :).

 Status: Offline
Profile     Report this post  

[ home ][ about us ][ privacy ] [ forums ][ classifieds ] [ links ][ news archive ] [ link to us ][ user account ]
Copyright (C) 2000 - 2019 Amigaworld.net.
Amigaworld.net was originally founded by David Doyle