skin windows are possible and ive seen skins with pop-out browsers etc..
But is it possible to call another skin, ie. ive built a remote skin with a load of custom buttons and i wanna be able to open it on the PC for editing the custom buttons
is there a syntax like window "filename..." or simila?
edit:I dont wanna have to load the other skin fully, just in a popup window
But is it possible to call another skin, ie. ive built a remote skin with a load of custom buttons and i wanna be able to open it on the PC for editing the custom buttons
is there a syntax like window "filename..." or simila?
edit:I dont wanna have to load the other skin fully, just in a popup window
Posté Mon 08 Aug 22 @ 8:24 pm
You must create a window tag in your main Skin.
The best postion is on the end before </skin>.
In the Window Tag you paste the Skin.XML from the second Skin without the <skin...> Tags
<skin tag is the first and the last thing in the XML.
for example:
to open/close the Window use the Comand: show_window 'skin2'
The best postion is on the end before </skin>.
In the Window Tag you paste the Skin.XML from the second Skin without the <skin...> Tags
<skin tag is the first and the last thing in the XML.
for example:
<Skin.....
Main Skin...after this but befor "</skin>"
<window name="skin2" width="1920" height="1080" posx="0" posy="0" image="" resize="false" shown="false">
all from the second Skin without <skin...> & </skin>
</window>
</skin>
to open/close the Window use the Comand: show_window 'skin2'
Posté Tue 09 Aug 22 @ 6:40 am