Why not simply update the image......?
HOTKEY - problems / suggestions
Re: HOTKEY - problems / suggestions #501
Re: HOTKEY - problems / suggestions #502
Posted 29 July 2017 - 12:48
Hi,
I have an ET9000 and cannot find a way to assign EXIT to whichever key I want.
The EXIT key on my remote is rather worn out and I need a backup key for the same function.
Could you please make it possible to assign EXIT key?
ET9000, OpenPLi 4.0, 13E, 19E
HD51, OpenPLi 6.2, 75E - 30W
Re: HOTKEY - problems / suggestions #503
Posted 29 July 2017 - 12:57
I don't think that is possible.
Most key handling in Enigma is hardcoded on key-code, so for this to work, you need to be able to assign a different keycode to a key. You might have to change all keymap XML's to make your replacement key send the exit keycode.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Re: HOTKEY - problems / suggestions #504
Posted 29 July 2017 - 13:14
Maybe I don't understand but if a hex code for EXIT is known (is it?), why couldn't it be additionally assigned to any key? In this way we could have 2 keys for the same function.
Now, I can see that there are already 2 keys for the same function of opening recordings. I can use either FILELIST or VKEY. They send the same code, I understand.
Could somebody please make sure it is indeed impossible? That would be a pity.
ET9000, OpenPLi 4.0, 13E, 19E
HD51, OpenPLi 6.2, 75E - 30W
Re: HOTKEY - problems / suggestions #505
Re: HOTKEY - problems / suggestions #506
Re: HOTKEY - problems / suggestions #507
Posted 29 July 2017 - 15:06
WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W
Re: HOTKEY - problems / suggestions #508
Posted 29 July 2017 - 16:55
The exit key is a mandatory key for the user interface.. it can't be reassigned to something else...
That is not what he is asking, he wants to map ANOTHER key to the EXIT key.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Re: HOTKEY - problems / suggestions #509
Re: HOTKEY - problems / suggestions #510
Posted 29 July 2017 - 17:47
Nope, that was the initial idea of the TS, but since EXIT is not a python method, it can't be called like that.
The only option I think is to modify the keymap.xml's, and map the new "SPARE" key to the same function as the EXIT key in those keymaps.
Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)
Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.
Many answers to your question can be found in our new and improved wiki.
Re: HOTKEY - problems / suggestions #511
Posted 29 July 2017 - 20:34
The exit key is a mandatory key for the user interface.. it can't be reassigned to something else...
As WanWizard pointed out, my question was about something else. I would like to "copy" EXIT to another key so that 2 keys act the same.
But probably it is not possible to achieve in Hotkey itself.
ET9000, OpenPLi 4.0, 13E, 19E
HD51, OpenPLi 6.2, 75E - 30W
Re: HOTKEY - problems / suggestions #512
Posted 29 July 2017 - 20:36
Edited by littlesat, 29 July 2017 - 20:37.
WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W
Re: HOTKEY - problems / suggestions #513
Re: HOTKEY - problems / suggestions #514
Re: HOTKEY - problems / suggestions #515
Re: HOTKEY - problems / suggestions #516
Posted 6 November 2017 - 19:59
How can I execute *sh files from HotKey?
I put my *.sh file in usr/bin but I don't know how to navigate there from HotKey and assign a key.
I only see the following:
EPG
InfoBar
Plugins
Power
Scanning
Setup
Where can I navigate through directories and select my *.sh file?
Thanks.
ET9000, OpenPLi 4.0, 13E, 19E
HD51, OpenPLi 6.2, 75E - 30W
Re: HOTKEY - problems / suggestions #517
Posted 6 November 2017 - 20:09
@Robinson
scripts you must put in directory /usr/script if the directory doesn't exists then make it with telnet and command;
mkdir /usr/script
then you can use hotkey for scripts - you only need to define a button for it.
regards
Biki3
Edited by Biki3, 6 November 2017 - 20:10.
Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K
Image: OpenPLI-8.3
Re: HOTKEY - problems / suggestions #518
Re: HOTKEY - problems / suggestions #519
Posted 6 November 2017 - 22:26
for exit you need exit in your script that's all, exit or exit 0 at the end of the script if the script was successful
as example;
#!/bin/sh TMP=/tmp READFILE=$TMP/mounts.txt DEVICES=/dev/sd* SD_CARD=/dev/mmcblk1p1 rm -f $READFILE grep "^device /dev/" /proc/self/mountstats >> $READFILE && MEDIUM="$(cat $READFILE | grep "$DEVICES" | awk '{print $2," -> ",$5," -> ",$8}')" SD_MEDIUM="$(cat $READFILE | grep "$SD_CARD" | awk '{print $2," -> ",$5," -> ",$8}')" echo -e "GERAET MOUNTP. DATEISYS.\n" echo "$MEDIUM" | while read i do echo "$i" done echo "$SD_MEDIUM" | while read j do echo "$j" done echo "" exit
you can see exit on the end of the script
did i understand your question right ?
regards
Biki3
Receiver: VU Ultimo 4K, Octagon SF8008 4K, Gigablue Quad 4K
Image: OpenPLI-8.3
Re: HOTKEY - problems / suggestions #520
Posted 6 November 2017 - 23:08
I think you understood me correctly.
Please have a read here. https://forums.openp...ith-downmix-on/
Such a script will be very useful for ET (XTrend) users in the era of OpenPLi 6.
ET9000, OpenPLi 4.0, 13E, 19E
HD51, OpenPLi 6.2, 75E - 30W
6 user(s) are reading this topic
0 members, 6 guests, 0 anonymous users