Twoje komentarze

All you need to do it navigate to a portfolio and add your friends as collaborators by their email address. If they don't currently have a RareWire account, they will be prompted to create one through a link in the invite email.
You could set up 2 actions that call a <play> tag that goes back and forth between the two sound tags.


<action name="sound1">
<sound action="play" source="sound" type="mp3" />
<play anim="sound2" />
</action>
<action name="sound2">
<sound action="play" source="sound" type="mp3" />
<play anim="sound1" />
</action>
Are you looking for an infinite loop?
There may be an issue with the way the PDF was encoded (Quartz PDFContext). Not entirely sure, but replacing it with a new PDF seems to have solved the issue.
Have you tried killing the Ad-Hoc from the background of the device and trying it again?

I just tested your WIRE code and your PDF on my own Ad-Hoc build and it works fine.
Is your PDF pathed correctly? If it is stored in a folder in the CMS, your WIRE needs to reflect that.

source=documents/pdf.pdf
Here is a quick WIRE to show you one way to do it. Make note of the object tag, that is where the guts are:


<wire>
<datasources>
<datasource name="field" source="" query="//item" providertype="xml" parsenamespaces="yes" />
</datasources>
<classes>
<class name="article-list-item">
<panel name="article-[param:dataSourceIndex]" width="95%" height="20%" lheight="25%" _dataSourceIndex="[param:dataSourceIndex]" align="center" background="#ff0000" bordercolor="00ee00" borderwidth="3" >
<text name="headline" width="100%" height="50%" color="#eeeeee" font="helvetica" size="20" align="center" valign="top" alignment="center" text="[param:headline]"></text>
<text name="clip" width="90%" height="50%" color="#eeeeee" font="helvetica" size="15" align="center" valign="bottom" alignment="center" text="[param:author]"></text>
<image name="pic" alias="PIC" url="[param:url]" height="150" width="150" valign="bottom" background="000000"></image>
</panel>
</class>
</classes>
<main>
<panel name="bg" width="100%" height="100%">
<panel name="list-container" width="100%" lwidth="95%" height="100%" align="center" clip="yes">
<list name="list" datasource="field" width="102%" lwidth="102%" height="100%" align="center" orientation="vertical" paginate="no">
<object class="article-list-item" dataSourceIndex="[param:dataSourceIndex]" headline="[param:title]" author="[param:author]" url="[datasource:field.[param:dataSourceIndex].media:thumbnail/@url]"/>
</list>
</panel>
</panel>
</main>
<actions>
<action name="oninit" oninit="yes">
<sync loop="no" startdelay="0">
<assign property="datasource:field.source" value="http://ecopassion.net/feed/?source=xml" />
</sync>
</action>
</actions>
</wire>
Can you post a link to your feed or email it to me so I can see the content in question?
You don't have your "strip" panel set to 100% for the ypos, it is at 85%, this is probably why you can still see it.

Look like this:


<panel name="strip" width="100%" height="100" ypos="100%" background="#1b1632" alpha=".75">
<pager name="contents" width="100%" height="100" orientation="horizontal" align="center" valign="center" paginate="no">
Can you show me a snippet of code for your pager object and its parent? This is probably where the problem lies. Your actions look ok to me.