Welcome to the RareWire Community Board. Use the field below to add your own contribution or find answers in existing topics. 
+1
Answered

Can you delete a specific panel from a pager?

Luska72 10 years ago updated by icahill (Administrator) 10 years ago 2
+1
Answered

How to access json datasource from a sub wire

sstava 10 years ago updated by icahill (Administrator) 10 years ago 4
+1
Answered

How do live updates handle updates to a SQLite res file

jenifercmartin 11 years ago updated by icahill (Administrator) 10 years ago 5
+1
Answered

Can you round a numerical value as part of an [eval:] statement?

thillsman 12 years ago updated 12 years ago 4
I've got an app the calculates a number, but it will often get a number like 1807.1428571429, etc. Is there a way to tell the [eval:] statement to 2 decimal places (or even to 0)?
+1
Answered

Is it possible to use a number-only keyboard with a textfield?

thillsman 12 years ago updated by jenifercmartin 11 years ago 10
I'm building an app that does some calculations from numbers in textfields. Is there a way to use a numerical keyboard instead of the normal one? Also, does a keyboard with 0-9 and a decimal point even exist in iOS? (The numbers input could have decimals in them.)
+1
Declined

Integrity constraint error

DePaulHCI 12 years ago updated by icahill (Administrator) 12 years ago 1
Just created an account and I don't seem to be able to create an app. Every time I type in a name, I get the message "SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'engine_id' cannot be null"

I've tried several different names and nothing works. Any ideas?
+1
Answered

Fusebox help

JohnWeez 12 years ago updated by icahill (Administrator) 12 years ago 5
Just uploaded the sample magazine app to see how it works and play around with, but the problem is I cant get past the "Updating Content" bar to get it running. It loads all the way but the content has yet to update. I admit I got a little impatient the couple times it loaded all the way and closed it and restarted it again. Is there something I could be doing wrong with my FTPS or do I just need to wait?
+2

Problem with fusebox

nnluong 12 years ago updated by icahill (Administrator) 11 years ago 20
Please help me. Sometime I can not login fuse box although I input correctly username and password
+1
Answered

Query json data

NghiaDinh 12 years ago updated by icahill (Administrator) 11 years ago 12
I intend to use datasource with json but i couldn't find how to query json data in the tutorials.
+1
Answered

Is it possible to open a pdf in iBooks?

storycode 12 years ago updated by icahill (Administrator) 12 years ago 3
Is it possible to launch iBooks with the url of some externally hosted pdf file, so that it can be viewed and saved in iBooks?
+1
Completed

iPhone 5 Support

icahill (Administrator) 12 years ago 0
We know everyone is excited about the new iPhone 5 and we are excited too. We are working to resolve support for this screen as soon as possible.

The settings page will be updated with a new placeholder for the iPhone 5 launch screen requirement. Add the new launch image and name it "Default-568h@2x.png" within the Studio Platform Settings and the app will lose black bars.

Then adjust your App WIRE accordingly.

We will begin to offer the ability to build for the iPhone within our provisioner soon. Thank you for your patience.
+1
Declined

FTP access after password change

ChrisPachi 12 years ago updated by icahill (Administrator) 12 years ago 3
Hi - I am unable to login to FTP using my studio password - could this be because I recently reset it? Connecting fine, just not authenticating the new pass.

Any help is greatly appreciated.

Cheers,
Chris.
+1
Answered

Maps at Street Level

dbdesign 12 years ago updated 12 years ago 4
If I was wanting to pull maps up on a street level, say in a city, like Shreveport, LA, how would I with the demo code?


<wire>
<datasource name="geo" source="http://earthquake.usgs.gov/earthquakes/catalogs/eqs7day-M2.5.xml" query="//*[local-name()='item']" providertype="xml"/>

<classes>
<class name="annotations">
<annotation name="office" location="[param:location]"
title="[param:title]" subtitle="[param:subtitle]" color="[param:color]" animatedrop="yes">
</annotation>
</class>
</classes>
<main>
<panel name="test" width="100%" height="100%" >
<map name="map" alias="MAP" width="100%" height="100%" datasource="geo" type="satelite">
<object name="blah" class="annotations" location="[param:*[local-name()='lat']] [param:*[local-name()='long']]" title="[param:*[local-name()='title']]"
subtitle="[param:*[local-name()='description']]" color="green" lhs="[param:*[local-name()='lat']]" operator="!=" rhs="" />
</map>
<image name="button" width="10%" height="12%" source="search.png" onclickup="zoom"></image>
</panel>
</main>
<actions>
<action name="zoom">
<assign property="object:MAP.showuser" value="yes" delay="2"/>
<assign property="object:MAP.region" value="39.093606 -94.583316 39.093606 -94.583316"/>
<annotate target="MAP" location="39.093606 -94.583316" title="RareWire"/>
</action>
</actions>
</wire>
+1
Answered

wire comments

dbdesign 12 years ago updated by icahill (Administrator) 12 years ago 1
Is there a way or does rarewire support comments to the wire, just for the programmers benefits? like the html comments <!-- this is a comment --> just think for bigger projects like the one we are working on it would be handy, but didn't want to put it in and it break something
+1

texttemplate question

dbdesign 12 years ago updated by icahill (Administrator) 12 years ago 1
ok, similar to my load html file question, if I use texttemplate to style a block of text, and the text has hyperlinks in them, how will they be handled. We see the text having links that we would like to open in Safara and some of the links would be YouTube.
+1
Answered

Datasource

dbdesign 12 years ago updated by icahill (Administrator) 12 years ago 2
is it possible to reference an internal datasource, in other words, a file that is saved in my rarewire project? We don't see it changing, but it would contain a lot of information.
+1
Answered

loading external html limitations

dbdesign 12 years ago updated by icahill (Administrator) 12 years ago 3
we are using the following code to load an external html file. Note, the html file is located on the wire server.


<action name="htmlfile">
<load force="yes" file="demo.html" target="DEMOALIAS" />
</action>


It loads fine, but the demo.html has some external links in it, to web pages, youtube pages, etc. It appears that they get stripped out, is there anyway to get them to work?
+1
Answered

external link in Safari

dbdesign 12 years ago updated 12 years ago 2
I'm trying to get a simple example to work, having a text link, that when clicked opens a URL in Safari, but I can't figure out what I'm doing wrong?

Here is the code I'm trying:


<wire>

<main>
<panel name="panel" width="100%" height="100%" background="#ffffff">
<text name="main" width="110" height="100" color="#000000" font="courier" size="14" align="center" valign="center" text="Hello World!" onclick="xlink"></text>
<web name="browser" url="http://www.rarewire.com" pagetofit="yes"></web>
</panel>
</main>
<actions>
<action name="xlink">
<load external="yes" url="safari-http://www.rarewire.com" target="browser"/>
</action>
</actions>
</wire>