Welcome to the RareWire Community Board. Use the field below to add your own contribution or find answers in existing topics.
No similar topics found.
+1
Account was charged
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?
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. :)
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
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.
Thanks in advance.
+1
Answered
deleting all data from sql database
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
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
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
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
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");
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
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:
But it never stops. What's wrong?
<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?
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!
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
When using this code, "else" is never evaluated:
If I change it to the following, then it works fine:
Should it work like that?
<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
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
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.
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
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.
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
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
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
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)
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)
Customer support service by UserEcho