Appdeveloper: use a short key?

Post here to discuss any new features, components, chips, etc, that you would like to see in Flowcode.
Post Reply
stefan.erni
Valued Contributor
Posts: 1247
http://meble-kuchenne.info.pl
Joined: Wed Dec 02, 2020 10:53 am
Has thanked: 230 times
Been thanked: 247 times

Appdeveloper: use a short key?

Post 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
2026-02-16_15-01-59.PNG (4.46 KiB) Viewed 2488 times

BenR
Matrix Staff
Posts: 2223
Joined: Mon Dec 07, 2020 10:06 am
Has thanked: 613 times
Been thanked: 806 times

Re: Appdeveloper: use a short key?

Post 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
KeyMappings.jpg (7.54 KiB) Viewed 2478 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.
KeyMappingsDemo.fcpcd
(9.85 KiB) Downloaded 150 times
If you want this for web developer then let us know and we can see what's possible.

stefan.erni
Valued Contributor
Posts: 1247
Joined: Wed Dec 02, 2020 10:53 am
Has thanked: 230 times
Been thanked: 247 times

Re: Appdeveloper: use a short key?

Post 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
2026-02-17_11-44-56.PNG (35.01 KiB) Viewed 2418 times
switch and led:
2026-02-17_11-44-25.PNG
2026-02-17_11-44-25.PNG (43.04 KiB) Viewed 2418 times
KeyMappingsDemo3.fcpcd
(14.47 KiB) Downloaded 166 times

stefan.erni
Valued Contributor
Posts: 1247
Joined: Wed Dec 02, 2020 10:53 am
Has thanked: 230 times
Been thanked: 247 times

Re: Appdeveloper: use a short key?

Post 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.
keymap_app.fcpcd
(10.09 KiB) Downloaded 29 times
2026-06-05_15-16-03.PNG
2026-06-05_15-16-03.PNG (115.91 KiB) Viewed 547 times

Steve-Matrix
Matrix Staff
Posts: 1931
Joined: Sat Dec 05, 2020 10:32 am
Has thanked: 286 times
Been thanked: 450 times

Re: Appdeveloper: use a short key?

Post 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.

stefan.erni
Valued Contributor
Posts: 1247
Joined: Wed Dec 02, 2020 10:53 am
Has thanked: 230 times
Been thanked: 247 times

Re: Appdeveloper: use a short key?

Post 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!

Post Reply