I have a couple of ideas..
First, instead of hard-coding a width of 380 px, it would be nice to specify
a min of 380, but get the width of the rss window. This is useful when
viewing a graphic. I was tinkering with the xml a bit and added this to
the displayRssxSearchPopup() to do this -
>> //var windowW = 380;
// Temporarily show the popup to determine the proper final height for
the popup.
rssxSearchPopup.show(0, 0, windowW, 0);
var windowH = rssxSearchPopupBody.scrollHeight + 6;
>> var windowW = rssxSearchPopupBody.scrollWidth;
rssxSearchPopup.hide();
// Put a cap on the popup height
windowH = windowH > window.screen.height-100 ? window.screen.height-100
: windowH;
>> // set a min popup width
>> windowW = windowW > 380 ? rssxSearchPopupBody.scrollWidth : 380;
I would like to specify the delay time and the number of rss samples
executed before it automatically terminates as an argument.. This is so
that I can define an alias to load a single sample, and display for a
certain amount of time before terminating... This is handy for loading the
daily comics like dilbert - rssx http://dwlt.net/tapestry/dilbert.rdf
There are a whole slew of comics that would be nifty to pull via the rssx
search - http://dwlt.net/tapestry/
What do you think?
Monty
-------------------------------------------------------
SF.Net is sponsored by: Speed Start Your Linux Apps Now.
Build and deploy apps & Web services for Linux with
a free DVD software kit from IBM. Click Now!
http://ads.osdn.com/?ad_id=1356&alloc_id=3438&op=click
_______________________________________________
To unsubscribe visit:
https://lists.sourceforge.net/lists/listinfo/dqsd-users
[EMAIL PROTECTED]
http://sourceforge.net/mailarchive/forum.php?forum_id=8601