Hello, I am attempting to display a numeric value as '1.', such as might appear as indexes of items in a list (i.e. numbered bullet items). Index values must...
Hi Ross, The following: <PARAM NAME="printf" VALUE="%-2i."> will left justify the numeric field and since you're budgeting to display 2 characters (1-20), the...
Hi Ed, Thanks for the response. These are two formats which I have tried. Given that I am essentially creating bullet items, it would be far from conventional...
Hope this is a simple one. I have a couple of custom buttons on a screen, using up and down images in a toggle mode. When I switch to another screen to perform...
1) Many ways. Just one of the easiest: return to another page with default 'down' image. You don't have to rewrite the code for whole page, just use <embed>...
Whenever possible, I like to use lone checkboxes with custom images. They allow you to have separate states unlike the custom buttons. You can use the...
Assuming that you are saving the button state in internal ram variable 1 bit 0, and that a value of 1 causes the button to be down and a value of 0 causes the ...
What I want to do is place 3 buttons in the same place and have each one assert itself and not the others based on the value of an internal ram variable, but...
Here are some suggestions and observations. I have not tested these, so I cannot vouch for the accuracy of the explanations. 1. Within each meta element, try...
Excellent! It worked! Thanks for your help -Phillip Marks ... so I ... browser were ... that the ... last ... makes ... they ... delay ... numbers ... delay of...
Is there a method to save the entire InternalRAM, or at least a few of the variables, so that when I unplug or reset the LCD it will still remember the values?...
There is a method called Amulet:InternalRAM.saveToFlash() which will save all the InternalRAM variables to the flash. I do need to caution you in the use of...
Hello, What is the most appropriate way to connect the reset pin of an Amulet module (MK-AOB3202405x)? The datasheet states that a minimum 100ms low should be...
Hi, There doesn't appear to be such a function. The way this is dealt with in the examples (e.g. the keyboard) is to use a byte variable as a character...
Ross, You are correct in your assumption that the AOB module has on board power up reset circuitry. If you are wanting the ability to actually reset the Amulet...
I have created a field with both min=5 and both max=10. I have then set next to it 2 buttons. One increments the numfield, one decrements, both forceupdate...
Jason, Have the buttons forceUpdate some limit checking meta's before doing the actual increment/decrement of an internalRAM variable. For example, let's...
Hi Ed, Thanks for your quick response. I'm new at using your device (as well as programming in HTML, for that matter)...so i have a couple more questions to...
Hi Farah, ... This is possible using meta tags. Do you any sort of mockup of what you want the page to look like that I can reference? If so, I'd be more than ...
Hi, I notice in message 874, Jim indicated that when fileNumber() is called with an invalid flash index, the Amulet does a soft reset (as of 3.3.2). In 3.3.3,...
Hi Farah, You asked about a tabbed interface. The Amulet doesn't have a dedicated 'tabbed pages' widget, but it certainly has the necessary pieces to build...
Hi Farah, I have attached a bitmap file showing a listbox with other buttons. Is this similar to what you want with a combobox? This is a modification of the...
I would like to use a bargraph to show progress in loading. The problem I come to is that I get compile errors when trying to use an internalram word as the...
You cannot use InternalRAM variables for the min and max values. I would use an InternalRAM byte or word variable for the bargraphs input and then write to the...
I'm switching a customer's line of equipment from an STW-Technik type system over to an Amulet-based system. I have four buttons wired as inputs to my radio...
Hassan, How many states does each toggle switch need to have? I read your post a few times and I came up with 4 states: - pressed - unpressed - highlighted and...
You've nailed it. As I select each switch by pressing a left or right cursor button, I want it to come up in the highligted state that it was last in. If...