• We have updated our Community Code of Conduct. Please read through the new rules for the forum that are an integral part of Paradox Interactive’s User Agreement.

Ekrenor

Knight of Callypigian Venus
49 Badges
Aug 22, 2006
202
0
  • Europa Universalis III: Collection
  • Majesty 2 Collection
  • Europa Universalis III Complete
  • Semper Fi
  • Sengoku
  • Ship Simulator Extremes
  • Teleglitch: Die More Edition
  • Victoria 2
  • Victoria 2: A House Divided
  • Victoria 2: Heart of Darkness
  • War of the Roses
  • 500k Club
  • Crusader Kings II: Holy Knight (pre-order)
  • Magicka
  • Crusader Kings II: Way of Life
  • Pillars of Eternity
  • Humble Paradox Bundle
  • Magicka 2
  • Crusader Kings II: Horse Lords
  • Crusader Kings II: Conclave
  • Stellaris
  • Crusader Kings II: Reapers Due
  • Crusader Kings II: Monks and Mystics
  • Crusader Kings II: Jade Dragon
  • Crusader Kings II: Holy Fury
  • Europa Universalis III Complete
  • Crusader Kings II
  • Crusader Kings II: Charlemagne
  • Crusader Kings II: Legacy of Rome
  • Crusader Kings II: The Old Gods
  • Crusader Kings II: Rajas of India
  • Crusader Kings II: The Republic
  • Crusader Kings II: Sons of Abraham
  • Crusader Kings II: Sunset Invasion
  • Crusader Kings II: Sword of Islam
  • Deus Vult
  • Europa Universalis III
  • Cities in Motion 2
  • Divine Wind
  • Europa Universalis IV
  • Europa Universalis IV: Conquest of Paradise
  • For the Motherland
  • Hearts of Iron III
  • Hearts of Iron III: Their Finest Hour
  • Hearts of Iron III Collection
  • Heir to the Throne
  • Impire
  • Europa Universalis III Complete
  • Knights of Pen and Paper +1 Edition
Hello everybody,
I just got a new Dell Studio laptop and... it turns out that there is no PAUSE key! :confused:
Fact is that the pause key is quite fundamental when playing CK: is there any way I can remap it?
Btw, does anybody know why did Paradox choose the pause key rather than the spacebar (which AFAIK is now not associated with any operation of interest)?

Thank you.

E.
 
does anybody know why did Paradox choose the pause key rather than the spacebar (which AFAIK is now not associated with any operation of interest)?

Hrm... that is a rather puzzling question... Why would a company map the Pause function to the Pause key? :confused:

As far as I know, there's no easy way (and possibly no way at all) to remap the keys in CK. You can always just click in the top-right corner to pause, though.

Cheers.
 
Hrm... that is a rather puzzling question... Why would a company map the Pause function to the Pause key? :confused:

Irony aside, actually many games adopt the spacebar for the pause function, if this is meant to be frequently used (as I believe is the case also in CK).
It is well visible and much better placed than the (obscure) pause key, which btw is disappearing from laptop keyboards (e.g. the MacBook does not have it either).

In any case, it would have been very convenient to allow for customization in the button.txt file.

Cheers.
 
Hello everybody,
I just got a new Dell Studio laptop and... it turns out that there is no PAUSE key! :confused:
Fact is that the pause key is quite fundamental when playing CK: is there any way I can remap it?

I have the same misfortune :(

If I were less lazy, I'd imagine there's something you could do with external software, but maybe not. They really should've allowed remapping though: hovering over the pause button on-screen can cause freezes and CTDs, especially between months or during autosaves.
 
It is well visible and much better placed than the (obscure) pause key, which btw is disappearing from laptop keyboards (e.g. the MacBook does not have it either).
AFAIK Apple has never produced a computer with a pause key. When I say never I mean never. Apples I-III, Lisas, and Macs all shipped without Pause keys. On full Apple Keyboards there are usually a couple extra function keys in place of Pause, Print Screen, and Scroll Lock.

So in the Mac version / pauses the game.

It sucks that you can't remap / to pause in CK. Johan should fix that when he gets around to making the DV beta official.

Nick
 
It sucks that you can't remap / to pause in CK. Johan should fix that when he gets around to making the DV beta official.

It is possible, however, that Mr. Andersson might be unaware of this issue.
After all, when the game was released a few years ago, the pause/break key was still standard on all laptop keyboards.
I am considering about contacting the customer service about this.

Btw, when is the DV beta expected to become official? Is it like in a few months, in a year, or... er... never? :rolleyes:

E.
 
I have mine remapped with a programme called autohotkey. You may find it easy or hard to do depending on your level of scripting skills (I managed ok but it wasn't a walkover) Its free, try googling it. If you get it and want to see my script pm me. :)
 
Btw, when is the DV beta expected to become official? Is it like in a few months, in a year, or... er... never? :rolleyes:
The CK 1.04 beta went through a similar dev cycle. Johan et al. did a lot of work on it for months, then something big came up (EU3 IIRC) and sucked up all the coding time. After the big project was released and patched a time or two, they finished it.

So don't expect anything until HoI3 is at v 1.01.

Nick
 
I have mine remapped with a programme called autohotkey. You may find it easy or hard to do depending on your level of scripting skills (I managed ok but it wasn't a walkover) Its free, try googling it. If you get it and want to see my script pm me. :)

I am not good at scripting, so of course I would be glad if you could pass me your script! :)
Thanks a lot!
 
I am not good at scripting, so of course I would be glad if you could pass me your script! :)
Thanks a lot!

OK download from here http://www.autohotkey.com/download/
It should come with a full help file.
Familiarise yourself with the basics of creating a simple script and running it. (just remap the x key to the y key or some other nonsense so you can see how it works).
Once you have that sussed here is the section I use regarding CK

simple version
Code:
#IfWinActive ahk_class StubDirectDrawWndClass
space::Send {PAUSE}

With mousewheel zooming
Code:
#IfWinActive ahk_class StubDirectDrawWndClass
wheelup::send {-}{wheelup}
wheeldown::send {+}{wheeldown}
space::Send {PAUSE}

The first line ensures that the key is only remapped while certain types of programme are active ie. CK and vicki and I assume other games with the same engine. Not EU3 which is a good thing:)

Always make sure when you edit a script you go to the icon in the tray and reload it.
Make sure the brackets are the right type { not (

NEVER remap the left mouse button I did it once and it took me half an hour to work out how to disable it without using a mouse.:rofl:

I have this in my startup folder cos I use this programme for tons of stuff, from using my mousewheel to turn my volume up and down to being able to input my email address with just 3 keypresses, check out the documentation its pretty cool stuff.