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

I can't get iOS push notifications to work

sstava hace 11 años actualizado hace 11 años 2
+1

Newsstand Icon not updating with new ipa

sovtek hace 11 años actualizado hace 11 años 6
+1
Respuestas

Android Fonts

jenifercmartin hace 11 años actualizado por icahill (Administrator) hace 11 años 7
+1
Respuestas

How to Add a Distribution Cert to your App?

icahill (Administrator) hace 12 años 0
When you are building an iOS App in the App Creation Studio and are ready to make an Ad-Hoc or Release build, you need to upload your certificates from Apple.

Here is a short screencast walking you through those steps.

Upload Distribution Certs into the RareWire App Creation Studio

+1
Solucionado

Weird parameter naming bug

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 7
It seems that some parameter names cause clashes with variable names. Objects can have arbitrary user defined parameters starting with an underscore. These cause problems when trying to use a var in an action which has a name containing the parameter name.

Here is a simple example:


<wire>
<actions>

<action name="init" oninit="yes">
<play action="assign" _myvar="abc" />
</action>

<action name="assign">
<sync>
<assign property="var:curr_myvar" value="_myvar" />
<assign property="var:somevar" value="_myvar" />
<play action="display" />
</sync>
</action>

<action name="display">
<alert message="'var:curr_myvar'=[var:curr_myvar] 'var:somevar'=[var:somevar]" />
</action>

</actions>
</wire>


The two variables displayed by the alert should have the same value of 'abc' but in fact they do not.
+1
En revisión

Default values on attributes...

storycode hace 12 años actualizado hace 12 años 2
As you update the wire documentation, please provide the default values for attributes. It would be very helpful for deciding whether optional attributes need to be explicitly set.
+1
Respuestas

How does the height="fit" work?

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 3
When I try it on text object it always seems to treat the object as having zero height.
+1
COMPLETADO

Logout Button

kennysaunders hace 12 años actualizado por icahill (Administrator) hace 12 años 1
The logout button is dangerously close to the refresh button in conduit. Is it that high priority of a function to deserve top right placement? Could it go at the bottom of the list view?
+1
COMPLETADO

New Wire Engine Coming Soon.

icahill (Administrator) hace 12 años 0
A newer version of our Conduit App that contains new wire functionality has been submitted to the App Store for approval.

When we push these changes to our users, you will see a rebranded version of the Conduit App in the form of a new App called fusebox. We have also added a lot of new functionality around object properties, location based map functionality, datasource updates and camera support.
+1
Buscando respuesta

Posting to facebook

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 1
Is there some way to figure out whether sending a post to facebook was successful?
I made an app based off the tutorial that has logged in to my facebook account and successfully made a couple of posts. However now new posts are not appearing in my facebook account and I cannot see how to diagnose the issue.
+1
COMPLETADO

Controlling your UIWebView Experience

ajones hace 12 años actualizado por sstava hace 11 años 3
By default, when using a web object all content that is pulled or placed into the UIWebView using the html, url or file attributes can be pinch/zoomed as well as scrolled. The same behavior you will experience on a majority of website when viewing within Safari.

If you are pulling your content in via a feed or local resource, you may want to limit this ability and build within your app the controls to increase font-size, line-height or colors. It also gives a more polished experience for your HTML content if the user can't over-extend the layout or structure you have taken time to design for your HTML content.

To prevent a user from pinch/zooming place the following meta tag within your head of the HTML document or texttemplate.



<meta content="width=100%, minimum-scale=1, maximum-scale=1, initial-scale=1" name="viewport">


If you have fitted web content and have no need to have your web object to scroll or even animate the 'rubberband' effect when swiping vertically you can use the following javascript:



<script type="text/javascript">
function blockMove() {
event.preventDefault() ;
}
</script>


Then place the following within your tag:



<body ontouchmove="blockMove()">


These are a couple tricks to create a more controlled UIWebView experience. For more info on meta tags used within the UIWebView please see Apple's documentation on HTML references
+1
Respuestas

Does RareWire have support for image masking?

jralston hace 12 años actualizado por icahill (Administrator) hace 12 años 7
Can it do anything like this?
http://developer.apple.com/library/sa...
+1
Respuestas

Special datasource values

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 1
Are there other special datasource values besides [param:dataSourceIndex] that are available for use with list objects?
+1
Solucionado

XPath syntax issue in datasource query

storycode hace 12 años actualizado hace 12 años 5
You probably need to note in the documentation that when using xpath syntax in the datasource 'query' attribute that operators such as '' need to be entered using the html entity, i.e. ', etc, otherwise the wire fails with an error.
+1
Respuestas

detecting device orientation changes

ianmacfarland hace 12 años actualizado hace 12 años 7
Is it possible for a Wire to detect device orientation changes? If so, what's the best way to do that?
+1
Solucionado

Supported characters for an application's name

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 2
The studio allows the ampersand '&' to be used in an application's name but the ampersand will be missing in the wire name on conduit.
+1
Solucionado

Supported Device Orientations settings lost when renaming a wire

storycode hace 12 años actualizado por icahill (Administrator) hace 12 años 5
If you rename a wire in the studio it forgets the Supported Device Orientations settings.
+1
Respuestas

Device specific attributes

doug hace 12 años actualizado por icahill (Administrator) hace 12 años 1
Is it possible to set attributes that are specific to either the iPad or the iPhone? I ask this because I just finished the Constitution app tutorial (which was very informative) and it works great on the iPad.

However, when I try to view the app on my phone, the PDF can be viewed fine, but the "ypos" coordinates for the paginator slider "up" and "down" arrows place them off the screen. Is it possible to do what I asked above or would you recommend to use percentages instead of actual pixel coordinates in the future?