Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - jlnsrk

Pages: [1]
1
General Calculator Help / closing a file confirmation dialog
« on: June 03, 2014, 11:12:50 am »
is there any key combo that lets me close a dialog which is asking me whether i want to save the changes to the document i just made?

something like ctrl+n for no.

2
Ndless / Writing a Daemon/Task
« on: May 13, 2014, 10:34:55 am »
Hello everyboby,
I am new to this community and this question might have been asked elsewhere but I couldn't find any threads related to my problem.
So I would like to write a daemon that's active in the background and waits for certain key combinations to perform certain actions. The usage of the calculator should continue to work unimpaired. I was wondering if something like:

while(true)
{
      if(isKeyPressed(KEY_NSPIRE_R) && isKeyPressed(KEY_NSPIRE_E))
      {
            resetHandheld();
            break;
      }
      sleep(500);
}

is possible at all. If it is not, is there anyway to register a program to be launched on certain hotkey combos/shortcuts?

Pages: [1]