Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Upgrade your account to a Community Supporter account and remove most of the site ads.
Community
General Tabletop Discussion
*Geek Talk & Media
Vista Sidebar Gadgets for Gamers
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="ThirdWizard" data-source="post: 3549979" data-attributes="member: 12037"><p>The gadgets actually run <em>in</em> the sidebar. Here is what it looks like:</p><p></p><p><img src="http://i22.photobucket.com/albums/b319/ThirdWizard/desktop-2.jpg" alt="" class="fr-fic fr-dii fr-draggable " data-size="" style="" /></p><p></p><p>The clock ticks the seconds away, the weather channel gadget tells me lots of weather information, and the last one monitors my CPU and memory usage. All this is done in real time in the sidebar all the time.</p><p></p><p>By the way, for anyone interested, the weather channel gadget is the best I've seen and can be downloaded <a href="http://download.weather.com/web/services/gadgets/vistasidebar/TheWeatherChannelVistaSidebarGadget.gadget" target="_blank">here</a>. It really is very very good.</p><p></p><p></p><p></p><p>Yes to #1. No to #2. You can do a lot with sidebars, and a die roller would be fairly simple. And, a while back they were planning on a sidebar for XP, but it died due to time constraints on all the things they were working on.</p><p></p><p> A die roller would be easy to do in javascript/html. You'd just do something kinda like:</p><p></p><p>[code]</p><p>var img_1</p><p>var randomNumber = Math.random()*5</p><p>if (randomNumber = 4)</p><p>{</p><p> img_1 = "d4_roll_4.gif"</p><p>}</p><p>if (randomNumber = 3)</p><p>{</p><p> img_1 = "d4_roll_3.gif"</p><p>}</p><p>...</p><p>...</p><p>etc</p><p>[/code]</p><p></p><p>Of course, I haven't used javascript in a while, so I'm positive you can't use that exactly, but it should give you a general idea of what you're looking for. Stick that in some html that displays images for die rolls, probably a button, some text fields to choose what die and how many you're rolling.</p><p></p><p>For more advanced usage, check out the gadget <a href="http://msdn2.microsoft.com/en-us/library/aa965853.aspx" target="_blank">api</a> page from msdn. There you can find various calls that are more powerful than those supported by javascript, for example the ability to read system information or network capability.</p><p></p><p></p><p></p><p>You know what I would find useful? A gadget that would tell me info on various status effects! So, I could type in "nauseated" and it would tell me all the effects associated with nauseated. Or maybe even one that had the stats on various creature types so I wouldn't have to worry about forgetting all the immunities that go with plant creatures once in a blue moon when they actually see play. Those would be helpful for me. If I get some free time, I might work on some of those.</p></blockquote><p></p>
[QUOTE="ThirdWizard, post: 3549979, member: 12037"] The gadgets actually run [i]in[/i] the sidebar. Here is what it looks like: [img]http://i22.photobucket.com/albums/b319/ThirdWizard/desktop-2.jpg[/img] The clock ticks the seconds away, the weather channel gadget tells me lots of weather information, and the last one monitors my CPU and memory usage. All this is done in real time in the sidebar all the time. By the way, for anyone interested, the weather channel gadget is the best I've seen and can be downloaded [url=http://download.weather.com/web/services/gadgets/vistasidebar/TheWeatherChannelVistaSidebarGadget.gadget]here[/url]. It really is very very good. Yes to #1. No to #2. You can do a lot with sidebars, and a die roller would be fairly simple. And, a while back they were planning on a sidebar for XP, but it died due to time constraints on all the things they were working on. A die roller would be easy to do in javascript/html. You'd just do something kinda like: [code] var img_1 var randomNumber = Math.random()*5 if (randomNumber = 4) { img_1 = "d4_roll_4.gif" } if (randomNumber = 3) { img_1 = "d4_roll_3.gif" } ... ... etc [/code] Of course, I haven't used javascript in a while, so I'm positive you can't use that exactly, but it should give you a general idea of what you're looking for. Stick that in some html that displays images for die rolls, probably a button, some text fields to choose what die and how many you're rolling. For more advanced usage, check out the gadget [url=http://msdn2.microsoft.com/en-us/library/aa965853.aspx]api[/url] page from msdn. There you can find various calls that are more powerful than those supported by javascript, for example the ability to read system information or network capability. You know what I would find useful? A gadget that would tell me info on various status effects! So, I could type in "nauseated" and it would tell me all the effects associated with nauseated. Or maybe even one that had the stats on various creature types so I wouldn't have to worry about forgetting all the immunities that go with plant creatures once in a blue moon when they actually see play. Those would be helpful for me. If I get some free time, I might work on some of those. [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*Geek Talk & Media
Vista Sidebar Gadgets for Gamers
Top