Teie kommentaarid

This should move your strip panel from a ypos of 100% to a valign bottom.
What object have you set to a ypos of 100%?

Another to this is making sure you have this translate on the "show-actions" action: <translate valign="bottom" time=".5"/> as well as a clicktarget of "../strip" set on your upbutton.
Have you read step 2 of the "Action a Pager" tutorial? This explains how to hide the pager until an action calls it. It involves setting the ypos of the pager or panel containing the pager to 100%.
would it be possible for you to email me the wire file? I would like to see a complete picture of the issue.

I am sure there is a way to accomplish what you are requesting, have you tried adding a delay to your play tags? This should work as it extends <set>.
Based on conversations via email I have logged a bug on uploading icons and splash screens in FireFox on a Mac. I will let you know what I find out. Thanks.
Matt,

Sorry you are having trouble. Are you running a mac or pc? Which browser are you running the App Creation Studio in?
In your "handle-user-action" action all of the tags within your if statement will run simultaneously unless they are our within a sync block. Especially when play tags are concerned you need to coordinate order of operation.

I might recommend a third action for your assign property="var:busy-flag" value="0" that is only triggered when your build panels action is successful.
Is this the case if you place the play action as the last action after a sync block?

Here is a admittedly very simple example.


<action name="test">
<sync loop="no" startdelay="0">
<alert message="test"/>
<alert message="test2"/>
</sync>
<play anim="action2" />
</action>
can you show me the snippet of code? I was just making sure that you weren't trying to "update" the orientation through the use of an action or anything. This should work like a pager or a tableview, the orientation can be set on the list tag, but can't be changed through an action.
Are you setting it within the orientation attribute once or are you trying to change it on the fly?