Your comments

And if I just want to use current location what do I set "location=" as
Hmm now I get a message that says "RM CMS application keys are missing." And then the fusebox login prompt comes up
Yea I selected universal and wire engine 1.0
Nice its working great thank you. One more question, at times when I click the button the action is only performed when I touch the bottom half of the image, but when I touch the top half nothing happens. Can I fix this with different formatting or by making the image smaller?
Yea still no luck. Do I need to add a value to the textfield?


<main>
<panel name="count" width="50%" height="50%" alignment="center" xpos="25">
<image name="UP" source="images/up.jpg" height="50%" width="50%" ypos="300" leftof="ENTRY" onclickup="increment" onclickuptarget="ENTRY" ></image>

<textfield name="E1" alias="ENTRY" width="25%" height="50%" font="helvetica" rightof="UP" background="D3D3D3" size="35" text="0" ypos="300">
</textfield>
</panel>
</main>
<actions>
<action name="counter" oninit="yes">
<assign property="var:counter" value="0" />
</action>
<action name="increment">
<sync>
<assign property="object:ENTRY.text" value="" />
<assign property="var:counter" value="[eval:[var:counter]+1]" />
<assign property="object:ENTRY.text" value="[var:counter]" />
</sync>
</action>

</actions>
I meant Im trying to populate the textfield with a number
I feel like using a number would make the most sense
Hmm still nothing happening. This is a mock up of the code Im using, do I need to set a variable within the text field or the image?




<main>
<panel name="image" width="70%" height="70%">
<image name="yeye" source="images/DC.jpg" bottompad="10" bottommargin="10" topof="voter"></image>
</panel>

<panel name="count" width="50%" height="50%" alignment="center" xpos="25">
<image name="UP" source="images/up.jpg" height="50%" width="50%" ypos="300" leftof="E1" onclickup="counter" onclickuptarget="E1" ></image>

<textfield name="E1" alias="ENTRY" width="25%" height="50%" font="helvetica" bottomof="image" rightof="UP" background="D3D3D3" size="35" text="0" ypos="300">
</textfield>
</panel>

</main>

<actions>

<action name="counter" oninit="yes">
<assign property="var:counter" value="0" />
</action>
<action name="increment">
<assign property="var:counter" value="[eval:[var:counter]+1]" />
<assign property="object:E1.text" value="[var:counter]" />
</action>

</actions>
</wire>

is the wire different for RSS feeds or could I just plug in a link?
wow. this is pretty dope thanks