Dine kommentarer

It does look like there is a bug with the imagemask property. I will add a bug report and send it to the dev team.

Adding a mask should be just as easy as this:


<wire>
<main>
<panel name="case" alias="CASE" width="100%" height="100%" background="ff0000">
<canvas name="canvas" align="center" valign="center" width="600" height="400" maskimage="graphics/panelBackground1.png" pencolor="f0f0f0" stroke="yes" pensize="30"/>
</panel>
</main>
</wire>
Can you please give me a little more information on the device you are using? What type of phone or tablet is it?

Currently fusebox is set to support over 1800 different devices, but there are still some out there that might not allow you to download. If you can tell us which device you are using we may be able to add it to our support list.

Thanks.
We support everything that is supported for the devices we service.

For iOS: https://developer.apple.com/library/i...

For Android: http://developer.android.com/guide/ap...
Okay, so I was thinking of this backwards, my apologies. This is what you need to do:

<assign property="var:updatetweet-noapos" encoding="url" value="[object:TEXT-ENTER.text]" />
This is usually indicative of multiple certs on our provisioner. I have removed your old certs, please try again.
Steve,

We have a simple way to create forward and back event on a web tag. You can add it pretty easy, see the example below:


<wire>
<main>
<panel name="loader" alias="LOAD" width="100" height="100" background="#ff0000" valign="center" align="center" onclickup="show-web" alpha="1">
<text name="label" width="100%" height="100%" color="#ffffff" font="Helvetica" size="20" alignment="center" text="Load Web"></text>
</panel>
<panel name="Browser" alias="BROWSER" width="100%" height="100%" xpos="100%" alpha="0">
<panel name="toolbar" width="100%" height="8%" background="#0c181a">
<panel name="highlight" width="100%" height="1" valign="bottom" background="#b0aba4" alpha=".5"></panel>
<panel name="back" width="50" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="close-web" xpos="10">
<text name="backtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Back"></text>
</panel>
<panel name="back" width="55" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="back" xpos="75">
<text name="backtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Return"></text>
</panel>
<panel name="forward" width="55" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="forward" xpos="145">
<text name="forwardtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Forward"></text>
</panel>
</panel>
<web name="web" alias="WEB" width="100%" height="92%" url="about:blank" pagetofit="yes" valign="bottom"></web>
</panel>
</main>

<actions>
<action name="show-web">
<sync loop="no" startdelay="0">
<load url="http://rarewire.com" target="WEB" />
<alpha value="1" target="BROWSER" />
<translate xpos="0%" time=".5" target="BROWSER" />
</sync>
</action>
<action name="close-web">
<sync loop="no" startdelay="0">
<translate xpos="100%" time=".5" target="BROWSER" />
<alpha value="0" target="BROWSER" />
<load url="about:blank" target="WEB" />
</sync>
</action>
<action name="back">
<if lhs="[object:WEB.cangoback]" operator="e" rhs="yes">
<event type="back" target="WEB"/>
</if>
</action>
<action name="forward">
<event type="forward" target="WEB"/>
</action>
</actions>
</wire>

We have a much better implementation for this now. Using the event tag, the web tag can track and return back and forward actions. Please see the example below:


<wire>
<main>
<panel name="loader" alias="LOAD" width="100" height="100" background="#ff0000" valign="center" align="center" onclickup="show-web" alpha="1">
<text name="label" width="100%" height="100%" color="#ffffff" font="Helvetica" size="20" alignment="center" text="Load Web"></text>
</panel>
<panel name="Browser" alias="BROWSER" width="100%" height="100%" xpos="100%" alpha="0">
<panel name="toolbar" width="100%" height="8%" background="#0c181a">
<panel name="highlight" width="100%" height="1" valign="bottom" background="#b0aba4" alpha=".5"></panel>
<panel name="back" width="50" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="close-web" xpos="10">
<text name="backtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Back"></text>
</panel>
<panel name="back" width="55" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="back" xpos="75">
<text name="backtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Return"></text>
</panel>
<panel name="forward" width="55" height="34" valign="center" cornerradius="3" background="ffffff" onclickup="forward" xpos="145">
<text name="forwardtext" width="100%" height="100%" color="#000000" font="HelveticaNeue-Bold" size="12" alignment="center" text="Forward"></text>
</panel>
</panel>
<web name="web" alias="WEB" width="100%" height="92%" url="about:blank" pagetofit="yes" valign="bottom"></web>
</panel>
</main>

<actions>
<action name="show-web">
<sync loop="no" startdelay="0">
<load url="http://rarewire.com" target="WEB" />
<alpha value="1" target="BROWSER" />
<translate xpos="0%" time=".5" target="BROWSER" />
</sync>
</action>
<action name="close-web">
<sync loop="no" startdelay="0">
<translate xpos="100%" time=".5" target="BROWSER" />
<alpha value="0" target="BROWSER" />
<load url="about:blank" target="WEB" />
</sync>
</action>
<action name="back">
<if lhs="[object:WEB.cangoback]" operator="e" rhs="yes">
<event type="back" target="WEB"/>
</if>
</action>
<action name="forward">
<event type="forward" target="WEB"/>
</action>
</actions>
</wire>
Have you tried using the eval yet? The system should know the different between the wrapped apostrophe's and the one's inside the object. I know we are using this solution elsewhere, so if it isn't working please let me know and we can look at the code.
Currently RareWire does not support the External Accessory Framework. Based on this topic I have submitted a feature request to our dev team. Apple and Android both have an API for this, we would just need to add it to our engine and it hasn't to date been a pressing issue for us.

Stay tuned.
It is currently not possible to reassign a datepicker to display anything other than the current time and date when instantiated.

This object can capture the currently displaying date for use elsewhere in the app, but you will not be able to create a new datepicker with a different date on launch.

I do have a feature request in to enhance native pickers, so I will add this ticket as a note.

Kundesupport af UserEcho