Multiquickbutton dissapeared on BH Server?

twin

Vu+ Newbie

Attachments

  • MultiQuickButton-from-backup.rar
    25.8 KB · Views: 114
  • MultiQuickButton-2.rar
    10.6 KB · Views: 120

AlexWilMac

Moderator
It's possible with QuickButton, too. Unless the LOOOONG pressing it's too much work for you.
 

Attachments

  • EPG-Single-1.jpg
    EPG-Single-1.jpg
    352.1 KB · Views: 104
  • EPG-Single.jpg
    EPG-Single.jpg
    283.5 KB · Views: 105

twin

Vu+ Newbie
@Alexwilmac
I've solved my problem, but not sure it helps others who want to use colored buttons for something other than original.
If other users try to delete and add to the different buttons, it will soon be a crash. Certainly, therefore, the plugin is removed.
I'm using it now only to get single epg on the EPG button.
If you need other things, I can also recommend "setup quickbutton
 

nunigaia

Moderator
@Alexwilmac
I've solved my problem, but not sure it helps others who want to use colored buttons for something other than original.
If other users try to delete and add to the different buttons, it will soon be a crash. Certainly, therefore, the plugin is removed.
I'm using it now only to get single epg on the EPG button.
If you need other things, I can also recommend "setup quickbutton

Let´s see how it looks ... this is a test, can you do it, and reply?

Crash? It crashs when you try to delete a simple entry. If you want to change an entry, you must previously, add a new one, before the entry you don´t want.


best regards
nunigaia
 

Attachments

  • enigma2-plugin-extensions-multiquickbutton_Bh-2.8.1-r0_all.ipk
    32.8 KB · Views: 207
Last edited:

twin

Vu+ Newbie
Perfect.....
Works for my needs.

This is what has been taken away for blackhole in /usr/lib/enigma2/python/Plugins/Extensions/MultiQuickButton/keymap.xml:

<key id="KEY_RED" mapto="red" flags="b" />
<key id="KEY_RED" mapto="red_long" flags="l" />
<key id="KEY_GREEN" mapto="green" flags="b" />
<key id="KEY_GREEN" mapto="green_long" flags="l" />
<key id="KEY_BLUE" mapto="blue" flags="b" />
<key id="KEY_BLUE" mapto="blue_long" flags="l" />

If you do this in the final version, it will work in the same way.(enigma2-plugin-extensions-multiquickbutton-vu_2.7.13-r5_all.ipk)
And my conclusion is if you change buttons, this will not work anyway in blackhole and should use the "setup Quickbutton" if you want more.
 

nunigaia

Moderator
Perfect.....
Works for my needs.

This is what has been taken away for blackhole in /usr/lib/enigma2/python/Plugins/Extensions/MultiQuickButton/keymap.xml:

<key id="KEY_RED" mapto="red" flags="b" />
<key id="KEY_RED" mapto="red_long" flags="l" />
<key id="KEY_GREEN" mapto="green" flags="b" />
<key id="KEY_GREEN" mapto="green_long" flags="l" />
<key id="KEY_BLUE" mapto="blue" flags="b" />
<key id="KEY_BLUE" mapto="blue_long" flags="l" />

If you do this in the final version, it will work in the same way.(enigma2-plugin-extensions-multiquickbutton-vu_2.7.13-r5_all.ipk)
And my conclusion is if you change buttons, this will not work anyway in blackhole and should use the "setup Quickbutton" if you want more.


So you need this, right?

Code:
<keymap>
<map context="QuickButtonActions">
   <key id="KEY_YELLOW" mapto="yellow" flags="b" />
   <key id="KEY_YELLOW" mapto="yellow_long" flags="l" />
   <key id="KEY_RED" mapto="red" flags="b" />
   <key id="KEY_RED" mapto="red_long" flags="l" />
   <key id="KEY_GREEN" mapto="green" flags="b" />
   <key id="KEY_GREEN" mapto="green_long" flags="l" />
   <key id="KEY_BLUE" mapto="blue" flags="b" />
   <key id="KEY_BLUE" mapto="blue_long" flags="l" />
   <key id="KEY_PVR" mapto="pvr" flags="b" />
   <key id="KEY_PVR" mapto="pvr_long" flags="l" />
   <key id="KEY_RADIO" mapto="radio" flags="b" />
   <key id="KEY_RADIO" mapto="radio_long" flags="l" />
   <key id="KEY_VIDEO" mapto="pvr" flags="b" />
   <key id="KEY_VIDEO" mapto="pvr_long" flags="l" />
   <key id="KEY_TEXT" mapto="text" flags="b" />
   <key id="KEY_TEXT" mapto="text_long" flags="l" />
   <key id="KEY_HELP" mapto="help_long" flags="l" />
   <key id="KEY_INFO" mapto="info" flags="b" />
   <key id="KEY_INFO" mapto="info_long" flags="l" />
   <key id="KEY_END" mapto="end" flags="b" />
   <key id="KEY_END" mapto="end_long" flags="l" />
   <key id="KEY_HOME" mapto="home" flags="b" />
   <key id="KEY_HOME" mapto="home_long" flags="l" />
   <key id="KEY_LEFT" mapto="cross_left" flags="mr" />
   <key id="KEY_RIGHT" mapto="cross_right" flags="mr" />
   <key id="KEY_UP" mapto="cross_up" flags="mr" />
   <key id="KEY_DOWN" mapto="cross_down" flags="mr" />
   <key id="KEY_CHANNELUP" mapto="channelup" flags="mr" />
   <key id="KEY_CHANNELDOWN" mapto="channeldown" flags="mr" />
   <key id="KEY_NEXT" mapto="next" flags="mr" />
   <key id="KEY_PREVIOUS" mapto="previous" flags="mr" />
   <key id="KEY_AUDIO" mapto="audio" flags="m" />
</map>
</keymap>
 
Top