Author Topic: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands  (Read 23283 times)

0 Members and 1 Guest are viewing this topic.

Wanilton

  • Moderator
  • Hero Member
  • *****
  • Posts: 559
  • Karma: 6
    • View Profile
    • XBMC Brazil Forum
Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« on: July 04, 2012, 09:25:22 AM »
Hello Friends,

In the last 6 months, I help MarcosQui to developer new skin aeon mq 4, in alpha stage, the skin still under development.  At this moment there’s no direct link to download the skin, only VIP users, donators and translators, are receiving the alpha version.  When the skin reaches the final stage of development it will be available to everyone.

More info about Skin Aeon MQ 4, here in XBMC Forum:
http://forum.xbmc.org/showthread.php?tid=135045

Clayton is a friend, member forum www.htforum.com/vb, he developers new commands for use with this specific skin, if you have access, here initial group of commands, available for download here,

https://dl.dropbox.com/u/25170804/Voxcommando/VcGrp_Aeon%20MQ4.xml

and have 3 payloads too (put in payloads folder), Download here in zip Format

https://dl.dropbox.com/u/25170804/Voxcommando/payloads/payloads.rar

Commands available:

- Change Color in main bar
- Change Color Titles
- Change Styles and Themes (Themes need extrapack for work) available via item in bottom menu skin.
- Change RSS bar Position
- Play Trailer in collection, only neet focus movie, and send the comand, very cool
- Change fullscreen x windowed mode in XBMC
- Access top menu
- Show Recents, Randon and In Progress


Thanks and enjoy.

Thanks to Clayton, for this new way to use Voxcommando with XBMC, this set of commands is specific for use with Skin Aeon MQ 4 only.

Images skin Aeon MQ 4:






Wanilton


 
« Last Edit: August 26, 2012, 03:35:36 PM by Wanilton »
www.xbmcbrasil.net
XBMC  Brazilian Community Forum - Admin
Windows 8.1 - XBMC Gotham Custom Plus - Aeon MQ 5
My Room Entertaiment´s
About me

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #1 on: July 04, 2012, 09:42:47 AM »
Thanks Wanilton for this beautiful post.

Now we have a lot of work to map all codes to control the Aeon MQ4. Its the best skin i have test so far.

Clayton
« Last Edit: July 04, 2012, 09:45:37 AM by Wanilton »

Kalle

  • $upporter
  • Hero Member
  • *****
  • Posts: 2319
  • Karma: 47
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #2 on: July 04, 2012, 10:14:13 AM »
Thanks Wanilton for this beautiful post.

Now we have a lot of work to map all codes to control the Aeon MQ4. Its the best skin i have test so far.

Clayton
BIG THANKS TO BOTH OF YOU   :clap

Kalle
***********  get excited and make things  **********

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #3 on: July 05, 2012, 04:34:14 PM »
Big thanks for the VoxJamesCommando, is hard to separate from one another :bonk.

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #4 on: July 05, 2012, 05:21:39 PM »
blush blush...

but on to the next challenge.  Could we use this as a way to say "yes" or "no" to XBMC pop-ups.  For example, when I ask XBMC to delete a file, it pops up a dialog asking me to confirm with a yes or no.  Normally, I have to move right and then select, but it would be better if I could say "yes" and have Vox automatically activate the correct control (the one corresponding to the yes button).

Maybe you can help?

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #5 on: July 05, 2012, 05:26:06 PM »
Hi James
I think this is possible, i will make some tests today.

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #6 on: July 05, 2012, 05:48:58 PM »
Yes James, it works.
I test with SendClick(10) and dont work, when i put this some of my files was hidden, i dont know what this comand make, because the button 10 represent the NO. So i use the SetFocus(10) and work without problem, but you have to put a Btn.KB with enter too, to confirmate the action. Thanks for the idea, i will use too... if you let me :biglaugh
the commands are
XBMC.Send     ExecBuiltin(SetFocus(11)) --- For YES.
XBMC.Send     ExecBuiltin(SetFocus(10)) --- For NO.

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #7 on: July 05, 2012, 06:57:48 PM »
beautiful, I will try it tonight!

I have a command that I use:  "delete that file".

it is not a command that is ever triggered by accident (I chose a long enough phrase), but what I will do is still set this a a "confirm" command in VoxCommando.  After VC gets a confirmation, it will

- press delete (using btn.kb)
- focus 11
- press enter (using btn.kb)

I have a small suggestion.  I notice that you are writing:
Code: [Select]
XBMC.Send     ExecBuiltin(SetFocus(11))
but it is a bit easier to write and read like this:
Code: [Select]
XBMC.ExecBuiltin     SetFocus(11)
less brackets () to deal with anyway!

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #8 on: July 05, 2012, 07:26:40 PM »
James
Sometimes when i try this XBMC.ExecBuiltin     SetFocus() directly, dont work., i dont know why.  I will test with the button 10 an 11.  Thanks.

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #9 on: July 05, 2012, 08:10:01 PM »
James
This is very strange.
I try to use several time this command :
Quote
XBMC.ExecBuiltin     SetFocus(11)
Every time fail. I test with a lot of buttons in AEON MQ4, faiil in every one.
Now i test again and work .
So, what can cause the test fail at the first time ? There is no logic here.
I'm using the new version of Frodo and installed  aeon again. I will test the rest of the commands and change them.
Thanks for the help.
Clayton

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #10 on: July 05, 2012, 08:17:15 PM »
I've never had any problems with it. Is it possible you left some extra brackets in there?

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #11 on: July 05, 2012, 08:29:45 PM »
Its is very possible, well, its work now and i am happy.
Clayton

claymic

  • $upporter
  • Sr. Member
  • *****
  • Posts: 152
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #12 on: July 31, 2012, 09:38:47 AM »
Some new commands, maybe some of this commands will work with others skins, but i am not sure.
To use the "script rating music"  you will need to install the addon script.vcrating (xbmc).
The sript rating music change the rating of your musics songs, you need to navigate over your songs and say the command, like "Rate five" or "Rate two", to change the rating.
The new commands are :
- Increase music rating : will increae the rating in 1,2,3,4 or 5 using the payload range (this dont use the script.vcrating)
- View Mode by Name : will change the view mode using a payload.
- TopMenu Movies panel info : when you are in view mode Wall, this will show or hide the Movie panel info.
- TopMenu Movies scrool plot : this will turn on or off the scrool of the plot in any view mode.
- Script Rating Music : i like this command, you can change the rating of your musics songs, you only need to say what is the rating you want, dont forget to install the addon in xbmc.
- Aeon Fullscreen x Windowed : this is not a new command, but its better now. Works very well for me.
Links :
https://dl.dropbox.com/u/89557567/VcGrp_Aeon%20MQ4.xml
https://dl.dropbox.com/u/89557567/AeonViewModeName.xml
https://dl.dropbox.com/u/89557567/script.vcrating.zip

war10ck

  • Jr. Member
  • **
  • Posts: 2
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #13 on: August 22, 2012, 10:31:03 AM »
....  When the skin reaches the final stage of development it will be available to everyone. ...

is there any new update about the term?

thx a lot

Wanilton

  • Moderator
  • Hero Member
  • *****
  • Posts: 559
  • Karma: 6
    • View Profile
    • XBMC Brazil Forum
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #14 on: August 22, 2012, 11:05:40 AM »
Public release skin in 09/15/2012 (15 september).

Wanilton
www.xbmcbrasil.net
XBMC  Brazilian Community Forum - Admin
Windows 8.1 - XBMC Gotham Custom Plus - Aeon MQ 5
My Room Entertaiment´s
About me

Forsaken_BA

  • Jr. Member
  • **
  • Posts: 2
  • Karma: 0
    • View Profile
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #15 on: August 23, 2013, 08:01:32 PM »
Wanilton, eu primeiro lugar gostaria de agradecer o apoio que vc dá tanto ao XBMC como ao Voxcommando, para que nós tenhamos mais acesso "aos brinquedos de gente grande" rsrs...

Eu acabei de pagar pela versão full do Voxcommando, mais pela colaboração a esse incrível software do que propriamente pelas funções, ja que o a free me atendia bem.

Gostaria de aproveitar e pedir uma ajuda. Existe algum tutorial por aqui que mostre a integração do Voxcommando com o Windows em si? Eu digo assim, eu quero chegar em casa e dar um comando para que abra o XBMC e me pergunte se eu quero ver um filme ou ouvir uma música.. enfim, interagir mais com o computador.

Grande abraço, se precisarem de minha ajuda, podem contar comigo, sou super fã dessa automação facilitada que esses softwares oferecem.

Ah, uma outra pergunta. Existe uma tabela onde tenham os comandos que eu tenho que falar e as ações que elas executam? uma espécie de help com os comandos. Pode ser em inglês mesmo, eu não tenho interesse em traduzir o meu software para portugues, eu ja acostumei a usar tudo em inglês pois uso ele no meu dia a dia.
« Last Edit: August 23, 2013, 08:04:58 PM by Forsaken_BA »

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #16 on: August 26, 2013, 10:40:28 AM »
There is a lot of information on the wiki, and there are many youtube videos that you can learn from, but it is all in english.

If you look at the wiki you have the option of using a translation tool in your browser.

Tutorials on youtube:


Wiki: http://voxcommando.com/mediawiki/index.php?title=Main_Page

jitterjames

  • Administrator
  • Hero Member
  • *****
  • Posts: 7715
  • Karma: 116
    • View Profile
    • VoxCommando
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #17 on: August 26, 2013, 10:41:40 AM »
Oh, and to see a list of commands you can click:

Help >> Generate Help Menu

from the main VoxCommando window.  :)

Wanilton

  • Moderator
  • Hero Member
  • *****
  • Posts: 559
  • Karma: 6
    • View Profile
    • XBMC Brazil Forum
Re: Skin Aeon MQ 4 for XBMC Eden or Frodo + New set commands
« Reply #18 on: August 26, 2013, 11:07:38 AM »
Oi Forsaken_BA, pois é estive ausente, manter o fórum XBMC Brasil, tem me tomado boa parte do meu tempo, mas feliz que tenha adquirido a licença full, isto incentiva o James a continuar com seu belo trabalho.

Temos uma área completa no fórum XBMC Brasil, destinado ao voxcommando, qualquer coisa podes perguntar aqui ou lá, que vou procurar lhe auxiliar.
www.xbmcbrasil.net
XBMC  Brazilian Community Forum - Admin
Windows 8.1 - XBMC Gotham Custom Plus - Aeon MQ 5
My Room Entertaiment´s
About me