Search the web
Sign In
New User? Sign Up
Amulet · Amulet Easy GUI Users Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1314 - 1343 of 1571   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1314
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...
mccoy_web
Offline Send Email
Dec 3, 2007
5:35 pm
1315
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...
steven_first_2001
steven_first...
Offline Send Email
Dec 11, 2007
10:51 pm
1316
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....
amulet_deters
Offline Send Email
Dec 11, 2007
11:38 pm
1317
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...
steven_first_2001
steven_first...
Offline Send Email
Dec 12, 2007
12:04 am
1318
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...
steven_r_wheeler
steven_r_whe...
Offline Send Email
Jan 8, 2008
6:31 pm
1319
The project we are working on requires 3 additional languages besides english. This will require all labels and buttons be depicted in those translated...
cyberlbar
Offline Send Email
Jan 10, 2008
2:35 pm
1320
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...
amulet_deters
Offline Send Email
Jan 10, 2008
11:32 pm
1321
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()...
amulet_deters
Offline Send Email
Jan 11, 2008
1:33 am
1322
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...
snews22
Offline Send Email
Jan 17, 2008
10:08 pm
1323
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...
amulet_deters
Offline Send Email
Jan 18, 2008
12:23 am
1324
Further investigation shows that the problem arises when I start getting this kind of stuff: WARNING: Page overflows 741 bytes into InternalRAM string area. ...
snews22
Offline Send Email
Jan 18, 2008
12:49 am
1325
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...
snews22
Offline Send Email
Jan 18, 2008
3:04 am
1326
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...
amulet_deters
Offline Send Email
Jan 18, 2008
3:28 am
1327
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...
cyberlbar
Offline Send Email
Jan 21, 2008
5:43 pm
1328
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...
amulet_deters
Offline Send Email
Jan 21, 2008
10:12 pm
1329
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...
cyberlbar
Offline Send Email
Jan 22, 2008
6:53 pm
1330
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: ...
amulet_deters
Offline Send Email
Jan 22, 2008
11:22 pm
1331
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...
allsoft01a
Offline Send Email
Jan 26, 2008
9:02 pm
1332
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...
a_stickel
Offline Send Email
Jan 26, 2008
11:25 pm
1333
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. ...
Bruce Boyes
bruceaboyes
Offline Send Email
Jan 28, 2008
1:10 am
1334
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(),...
amulet_deters
Offline Send Email
Jan 29, 2008
12:24 am
1335
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?...
Alexander Bronshtein
brightimageit
Offline Send Email
Feb 1, 2008
6:29 pm
1336
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...
amulet_deters
Offline Send Email
Feb 1, 2008
8:08 pm
1337
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...
wilderengineering
wilderengine...
Offline Send Email
Feb 9, 2008
6:43 am
1338
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"...
amulet_deters
Offline Send Email
Feb 11, 2008
7:51 pm
1339
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...
paulwhite1957
Offline Send Email
Feb 12, 2008
12:04 am
1340
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...
amulet_deters
Offline Send Email
Feb 12, 2008
3:03 am
1341
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"...
paulwhite1957
Offline Send Email
Feb 12, 2008
1:45 pm
1342
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...
wilderengineering
wilderengine...
Offline Send Email
Feb 12, 2008
3:04 pm
1343
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...
Robert Smith
elboco
Offline Send Email
Feb 12, 2008
3:49 pm
Messages 1314 - 1343 of 1571   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help