I have a page with function buttons that I have not imlemented pages to go to yet. I would like to have the buttons there but when pressed I would prefer they...
I just can't figure out this stuff using the supplied examples. Can someone write me a simple single page with 3 buttons? Each button just sends out a...
If you want to just send out some ascii over UART you can use the byteOut() function. Here is some code for a single button that sends out 0x30 when pressed....
Thank you a lot dued,that was all I needed! I have 3 buttons all doing diffrenthings and I understand the basic layout now. I am even communicating with a...
I'm trying to set up a page with multiple imagebars in the same location, with only one visible at any given time. It's a thermometer display with selectable...
The project we are working on requires 3 additional languages besides english. This will require all labels and buttons be depicted in those translated...
I've encountered problems trying to disappear and reappear objects at on the same pixels at the same time. Try having two METAs, the first one calls disappear...
The easiest way for you to handle the overlays disappearing (easiest meaning least code change, quick fix) is to use a dual action button and call reappear()...
My HTML page was coming along fine, but suddenly after I added a few buttons and a bunch of meta refresh tags to perform the actions the buttons require, my...
My first thoughts are that some stringfield widgets are overlapping, either the widget heights are too short, or maybe even too tall if you used absolute...
Further investigation shows that the problem arises when I start getting this kind of stuff: WARNING: Page overflows 741 bytes into InternalRAM string area. ...
Resolved! For those out there reading this, Brian tried his version of Arial_6 and it worked fine, and he remarked that his was _really_ 24 point as opposed to...
The whole reason why the glyphs weren't showing completely is a little more involved. If he wanted to actually use a size 31 font he'd be in trouble still, so...
I need to send pictures and/or completely reprogram the Amulet via a Pic18f6621 (16bit) uController. What or were can I find some 'C' code to do xmodem...
If you go to the CCS compiler website and do a search for xmodem a couple of examples in C come up that may help. you can find the details of Amulet's...
Thanks for the info on the xmodem protocol. Hope that part works, but at least I found it with help. Next I have an issue coming up with .bin files. I have...
The Amulet Bitmap Format is an uncompressed bitmap with the header removed and an 11-byte Amulet header put on. You can get a detailed description at: ...
I am getting ready to start a project using an Amulet screen. Just wondering what is the best HTML editor to use. I used Namo a year or so ago when I was...
Hello There; I just started working with my Amulet kit earlier this week. I have a few questions for anyone willing to answer them. 1.) Is it possible to...
I use Dreamweaver and have done a couple pretty large projects and am pretty pleased with the results. We use DW also for all our web design and other sites. ...
1)You can control the speed of GIFs a couple of ways. First, you can use the built in functions for superSlowSpeed(), slowSpeed(), normalSpeed(), fastSpeed(),...
Could someone please explain how to work with floating point numbers on Amulet. Could they be stored in internal ram? How to use them in further calculations?...
The floating point capability of the printf parameter is usually for display purposes only. Any math you do on InternalRAM variables is treated as integers. If...
I'm trying to make one of my pages a status / kill page. i.e. Lots of data is being updated on this page -- mostly active output-only numerical fields and...
Ron, You can use a single white pixel and stretch it out to the size of the display, and then an area map as your button. Something like: <div id="layer1"...
I apologize in advance if this question has been asked before, but my quick review of the past messages didn't find it. I'm a newbie user of the Amulet...
You can call the method reappear() on the widget, even though it is not disappeared it should still redraw it because the name changed. I've never tried this...
Brian, Thanks for the reply, but I'm still not having any success with this. Here's the button code: <applet code="FunctionButton.class" width="80" height="25"...
Hey Paul, Have you tried using two different metas? i.e. one for the disappear along with setting a flag somewhere that the other meta triggers on to...
I do this all the time in a similar manner. In your meta, instead of doing a disappear(), reappear(), try a forceupdate(). This may seem obvious but you...