Vos commentaires

Patrick,

fusebox is available for download in the Apple iTunes Store. You will install it just like any other app.

https://itunes.apple.com/gb/app/fuseb...

Our Android version has not yet been made available to our Studio Users, but it will be widely available in the Google Play store very soon.

Thanks for your interest.
Because fusebox is a test environment it allows you to rotate no matter what, thought you must launch from fusebox in the appropriate orientation set.

When you build an Ad-Hoc it will honor your app settings.
Still waiting to hear back from the dev team. Thank you for your patience.
The only supported object properties for a text tag are: text, encodedtext and color. So at this time size is not assignable.
Here is a simple version of it. The theory is overlapping the panels and moving them around.

<wire>
<main>
<panel name="menu" alias="MENU" width="100%" height="100%" background="ff0000">
<panel name="sub-list1" alias="SUB-LIST1" width="100%" height="100%" alpha="1">
<panel name="subA" alias="A" width="100%" height="300" background="333333" onclickup="show-subB">
<text name="text1" width="100%" height="100" color="#000000" font="arial" size="12" alignment="left" text="Sub 1"></text>
<text name="text2" width="100%" height="100" bottomof="text1" color="#000000" font="arial" size="12" alignment="left" text="Sub 4" ></text>
<text name="text3" width="100%" height="100" bottomof="text2" color="#000000" font="arial" size="12" alignment="left" text="Sub 5" ></text>
</panel>
<panel name="subB" alias="B" width="100%" height="100" ypos="100" background="00ff00" >
<text name="text" alias="T1" width="100%" height="100" color="#000000" font="arial" size="12" alignment="left" text="Sub 2" ></text>
</panel>
<panel name="subC" alias="C" width="100%" height="100" ypos="200" background="ffffff">
<text name="text" width="100%" height="100%" color="#000000" font="arial" size="12" alignment="left" text="Sub 3"></text>
</panel>
<panel name="subD" alias="D" width="100%" ypos="300" height="724" background="ff0000"></panel>
</panel>
</panel>
</main>

<actions>
<action name="show-subB">
<translate ypos="300" time=".5" curve="linear" target="B" />
<translate ypos="400" time=".5" curve="linear" target="C" />
<translate ypos="500" time=".5" curve="linear" target="D" />
<set onclickup="hide-subB" target="A" />

</action>
<action name="hide-subB">
<translate ypos="100" time=".5" curve="linear" target="B" />
<translate ypos="200" time=".5" curve="linear" target="C" />
<translate ypos="300" time=".5" curve="linear" target="D" />
<set onclickup="show-subB" target="A" />
</action>
</actions>
</wire>
Tyler,

Adam pointed out that our Event Sample app has an accordion style design that might work for you. However, it runs horizontal and not vertical, so you would have to adjust it.

You can find it here: https://studio.rarewire.com/wordpress...
I am seeing the same issue you are seeing, but it seems isolated to your app ID. I am escalating this to the Dev Team and will keep you posted.

Thank you for your patience.
Would you be so kind as to add me as a collaborator to your portfolio? (icahill@rarewire.com)

I would like to try to replicate your issue in your wire as I am having no issues in my other apps here.

Have you tried to successfully snapshot in your other app?
Actually Jake, a [preferences:] tag will persist from one wire to another so you could use that to pass a different datasource address based on an if statement or something.
Jake,

Help me understand your use case here. Are you suggesting that the same class or list would need to pivot from one datasource to another based on certain criteria?