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

Re-order panels in a pager with drag & drop?

sstava 11 years ago updated by icahill (Administrator) 11 years ago 1
+1

Facebook Tutorial Error

benjaminbachman 11 years ago updated 11 years ago 5
0

Caching of files from download tag

cahoots 11 years ago updated by icahill (Administrator) 11 years ago 1
+1

Account was charged

Gdoyle42 12 years ago updated by icahill (Administrator) 12 years ago 3
Hello,

I'm not sure if I am contacting the correct company, my account was charge 14.99 and I did not authorize this charge. My son was on my iPad and he did not no what is he was doing. How can I stop this subscription?
+1
Fixed

Wish I was more transparent. :)

fultonalisonj 12 years ago updated by ajonesCollab 12 years ago 1
Hello. What setting do I need to save image.png files at to retain transparency please? When I save optimized for web png 24, they're transparent in photoshop but not in Rare Wire? Sorry and thanks, Alison, confused HemoTool team member.
+1
Answered

Simple RSS parsing help needed

kevinbridges 12 years ago updated by icahill (Administrator) 12 years ago 8
Hello, newbie here looking for the best way to access one element within a simple RSS feed. I am writing a weather app as practice, and I'd like to use one of the popular weather status RSS feeds to determine current conditions in a zip code. I've looked at the Yahoo weather RSS feed, and their "code" element is exactly what I need. I've gone through the tutorial on using datasources, and it makes sense, Im just having trouble simplifying it down to my need. I've created a timed loop in my app that wants to check this "code" element, and then display an icon based on the results. Any advice on the simplest way to access that one piece of info? Here is a link to the RSS feed: http://weather.yahooapis.com/forecast...

Thanks in advance.
+1
Answered

deleting all data from sql database

jenifercmartin 12 years ago updated by icahill (Administrator) 12 years ago 1
I have a sql database for the user to create and access himself. I know how to allow him to delete lines of data one at a time, but i want to know how to allow him to delete all data at once. Is that possible?
+1

Pricing plans

paololuk 12 years ago updated by icahill (Administrator) 12 years ago 3
Hi, I dont understand the price plans. The subscription plan is for produce and publish unlimited apps or only one? What does it mean "Unlimited per App ID*" ?
It's possible for "one time publish" to update the app when published or I have purchase another "one time publish". Again what is the meaning of "engine updates" ?

Thank you very much

Paolo
+1

manipulating user input in a textfield

jenifercmartin 12 years ago updated by icahill (Administrator) 12 years ago 1
There is a way to force a textfield to have decimals when the iphone keyboard does not have a decimal. Wavelength did this for their tip calculator. The textfield placeholder prompts the user to enter dollar and cents by using the placeholder "0.00" in the textfield. Then when the user inputs the amount, the decimal remains. In other words, the placeholder text within the textfield does not entirely disappear. The decimal remains while the 0's are replaced with the user's input. How did they do this?
+1
Under review

Studio Editor font size

Cole 12 years ago updated 12 years ago 2
In editor font size adjustments? I sometimes have trouble looking at my code to show people on my laptop, and CTRL+ to zoom in and out does not change the size of the font.
If the font is too big though, text wrapping may become an issue.

I also have an idea for implementation using jQuery's class selector

Code:
$(".cm-s-rarewireDark").css("font-size","15px");
+1

start/stop audio

ajakhua 12 years ago updated by icahill (Administrator) 12 years ago 12
Was unable to stop audio from playing. Loading 124 seconds long mp3 file from "oninit" action to play continuously and then want to stop it using button click:


<main>
<image name="sound" alias="SOUND" source="images/mute.png" xpos="100" ypos="100" onclickup="stop-music"/>
</main>
<actions>
<action name="initialize" oninit="yes">
<play action="music1" />
<action>

<action name="music1">
<sound action="play" source="sound/s1_music" type="mp3" />
<play action="music2" delay="125" />
</action>
<action name="music2">
<sound action="play" source="sound/s1_music" type="mp3" />
<play action="music1" delay="125" />
</action>
<action name="stop-music">
<sound action="stop" source="sound/s1_music" type="mp3" />
</action>
</actions>


But it never stops. What's wrong?
+1

How to format variable length text in a list?

Richard Lindley 12 years ago updated 12 years ago 5
How can I make the text areas expand to fit the available text in a list from a feed? Say I have two fields, Heading and Description and want one to follow the other in the list and make both the panel containing the two text items and the text items themselves expand depending on the text inside?

I hope this makes sense, I'm struggling with formatting - I know I can make panels and text a fixed size but I don't know how much is coming back from a feed. In this example i've tried to put a panel inside a panel to then center the text so it looks a bit neater, but I just can't seem to get it quite right. I've also tried to use maxlength, fit, but sometimes the text still spills out of the panel. I hope this makes sense. Ignore the border colors I'm just trying to see where the panels are!

<class name="article-list-item">
<panel name="article-[param:dataSourceIndex]" width="98%" height="120" lheight="120" _dataSourceIndex="[param:dataSourceIndex]" align="center" background="303339" borderwidth="1" bordercolor="ffff00">
<panel name="articleinside-[param:dataSourceIndex]" width="100%" height="90%" valign="center" align="left" borderwidth="1" bordercolor="ffffff">
<text name="headline" width="100%" height="fit" color="#707B51" font="Helvetica-Bold" size="18" align="left" alignment="left" text="[param:headline]" background="303339" onclickup="show-web" _url="[param:link]" fit="yes" maxlength="65" endcap="..." padding="8"></text>
<text name="description" width="100%" height="fit" color="#f0ffff" font="helvetica" size="14" align="left" bottomof="headline" alignment="left" text="[param:description]" background="303339" maxlength="170" endcap="..."></text>
</panel>
</panel>
+1

"translate"action with "else" statement

ajakhua 12 years ago updated 12 years ago 3
When using this code, "else" is never evaluated:

<if lhs="[var:x]" operator="=" rhs="1">
<translate target="OBJ" xpos="[var:X-POS]" time="1" />
<else>
<translate target="OBJ" xpos="[var:X-POS1]" time="1" />
</else>
</if>


If I change it to the following, then it works fine:


<if lhs="[var:x]" operator="=" rhs="1">
<assign property="var:X-POS2" value="[var:X-POS]" />
<else>
<assign property="var:X-POS2" value="[var:X-POS1]" />
</else>
</if>
<translate target="OBJ" xpos="[var:X-POS2]" time="1" />


Should it work like that?
+1

CAPS Apps help

Lcdrgreg 12 years ago updated by icahill (Administrator) 12 years ago 3
Talking to Adam last nite about a problem we are having with the innovation celebration app. For the Bios of the candidates, he thought a text template would be the way to go. He said you could give us an example. Also in another app we are doing game play where the student goes through a pager and clicks whether a contestant lived or died in the Quantrills raid. Could you give me an example of how wire can determine which page of the pager we are on to give the appropriate alert (ie Good Job! for correct and Better Luck on the next one! for incorrect.) Thanks
+1
Under review

Reference Look up Using the Tabs

Cole 12 years ago updated by icahill (Administrator) 12 years ago 1
What if there was a "different kind of tab" that would allow the user to switch between their code and articles from the Documentation site?

You could have a tab-header of different bgcolor and it would use an iframe to open the wordpress page in the same pane as your editor. Arguments passed to the wordpress site via url to php could specify a different content format specifically usable for the in editor view.
+1
Thanks

I love the updates

Cole 12 years ago 0
Luxuries like Rarewire Studio's design really make it stand out as as an in-browser ide, it feels more and more like a natively installed text editor like sublime or notepad++.

I really like the new tabs and file manager; implementation is very good.
Thanks for adding "webkit-user-select: text;" to the editor -- to change the cursor to text on hover.
+1
Started

Tab header text selection prevention via css

Cole 12 years ago updated by icahill (Administrator) 12 years ago 1
To prevent user selection of the tab headers (In case they want to try switching the tab order or something).

css:

.tab-header {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

Stackoverflow Solution: "css rule to disable text selection highlighting"

Tested in webkit + Chrome v25
+1
Completed

CTRL + S for Saving

Cole 12 years ago updated 12 years ago 6
Being able to ctrl+s save is a luxury but it can make the editor feel nicer for those that instinctively press ctrl+s to save their text (especially when I forget that I am typing into a browser)

A javascript demonstration:
JSfiddle jQuery Example
This uses the keydown event from jQuery as opposed to the keypress event

I am using Chrome v25 as my web browser

Other Ideas:
CTRL + Tab for switching tabs right (Not tested)
CTRL + Shift + Tab for switching tabs left (Not tested)