Page 1 of 1
Appdeveloper: use a short key?
Posted: Mon Feb 16, 2026 2:06 pm
by stefan.erni
Hi Steve
Is it possible to have a shortcut key for an existing switch in Appdeveloper?
For example, “space” to start recording.

- 2026-02-16_15-01-59.PNG (4.46 KiB) Viewed 2498 times
Re: Appdeveloper: use a short key?
Posted: Mon Feb 16, 2026 2:57 pm
by BenR
Hi Stefan,
For PC developer you can use Key Mappings available from the Edit menu.
You can assign a calculation to a keypress, for example I have this to toggle a variable on and off when the S key is pressed.

- KeyMappings.jpg (7.54 KiB) Viewed 2488 times
You can monitor for this variable changing by having a decision in your main loop checking if the variable is equal to the old value.
It works fine for the PC developer source and for the export.
If you want this for web developer then let us know and we can see what's possible.
Re: Appdeveloper: use a short key?
Posted: Tue Feb 17, 2026 10:59 am
by stefan.erni
Hi Ben
Perfect!
I add key mapping and use the switch with call macro if click (OnButtonClick). This works very well.
Only the switch doesn't have such a good 3D effect.
short key and switch works nice together.

- 2026-02-17_11-44-56.PNG (35.01 KiB) Viewed 2428 times
switch and led:

- 2026-02-17_11-44-25.PNG (43.04 KiB) Viewed 2428 times
Re: Appdeveloper: use a short key?
Posted: Fri Jun 05, 2026 2:18 pm
by stefan.erni
Hi Ben
One more question:
Does the keymap only work in the main part from the APP?
It doesn't work in a macro.

- 2026-06-05_15-16-03.PNG (115.91 KiB) Viewed 557 times
Re: Appdeveloper: use a short key?
Posted: Fri Jun 05, 2026 4:35 pm
by Steve-Matrix
It looks like you need to have the Simulation Speed (in the Simulation Debugger window) set to "Fast (with updates)".
This is part of Flowcode that has not been looked at in a very long time, so I will add it to our list to investigate and see if we can have this working better.
Re: Appdeveloper: use a short key?
Posted: Fri Jun 05, 2026 5:20 pm
by stefan.erni
Hi Steve
Ok in the simulation it's working, if I set max speed and stepp in macros.
But in the exported APP, it's only working in the main and not in the macro.
The good thing is:
In the exported APP, the keys works in the main perfect!