Is it possible to use macros in button actions in an iPhone skin?
Posté Wed 15 Jun 11 @ 10:00 pm
You may have any VDJ Script action assigned to a button.
What do you mean by macro? An example?
What do you mean by macro? An example?
Posté Thu 16 Jun 11 @ 9:28 am
I wanted one button to issue two commands by linking them with an & eg
<button action="browser_window 'songs' & browser_scroll -1">
to make sure that pressing that button always selected the previous song even if I had previously selected folders
but this stopped the skin loading
<button action="browser_window 'songs' & browser_scroll -1">
to make sure that pressing that button always selected the previous song even if I had previously selected folders
but this stopped the skin loading
Posté Thu 16 Jun 11 @ 10:59 am
I think I have solved this for myself: because it's in a XML file, the ampersand has to be replaced by & and then it works as expected.
eg
<button action="browser_window 'songs' & browser_scroll -1">
eg
<button action="browser_window 'songs' & browser_scroll -1">
Posté Fri 17 Jun 11 @ 3:27 am