Solved How to return to Home from a certain window by pressing backspace?
#1
From Home I go to my Artist window by
Code:
<onclick>ActivateWindow(MusicLibrary,Artists)</onclick>
How would I go back to Home from there without using onclick?
Currently pressing Backspace takes me to my MusicLibrary window, and I'd like it to take me back to Home

edit: Created a workaround for this by setting up the MusicLibrary,Artists in favorites and placing that on Home in stead of the build in Music.
Then attaching the sub menu Items from Music to the Favorites short cut by editing in Includes.xml
Code:
<visible>Container(300).HasFocus(*)</visible> <!-- * = fav ID -->
Reply
#2
Try with return

<onclick>ActivateWindow(MusicLibrary,Artists,return)</onclick>

for me it works.
Reply
#3
But onclick needs some thing to function as button doesn't it? Onclick doesn't work when not attached to something?
Or can you define a key in onclick?

In Home I have ActivateWindow(MusicLibrary,Artists) on a controller labeled Music, this takes me to the list of artists.
Then I want to return back to Home with a single press of the Backspace key, and currently pressing Backspace takes me to the MusicLibrary list.
Reply
#4
<onback> ?
Reply
#5
Change
Code:
ActivateWindow(MusicLibrary,Artists)
to
Code:
ActivateWindow(MusicLibrary,Artists,return)
Reply

Logout Mark Read Team Forum Stats Members Help
How to return to Home from a certain window by pressing backspace?0