0
votes
1answer
53 views
Windows Sidebar Gadget Reload
Hi All,
I am trying to develop a Windows Desktop widget for Windows 7. Just wondering if there is an easy way to reload the widget or have some form of debug code that will reload the widget every 10 …
1
vote
1answer
54 views
Checking the value of System.Gadget.Flyout.file
I've been working on a Windows SideBar Gadget wherein I have multiple flyout pages. When I go to display one, I want to check if it is already active or not, so I thought I could just check the value …
0
votes
2answers
365 views
JPEG Shows in Firefox but Not IE8
Hi,
I'm working on a Sidebar Gadget and cannot get my JPEGs to show up (PNGs work). When I try to open the file by itself in IE8 it doesn't work. Firefox, of course, can open it fine.
JPEG Details:
…
2
votes
0answers
70 views
How to set g:text style to bold font in a Windows Gadget?
I'm developing a Vista/Win7 Desktop Gadget that uses a translucent g:background (doc) area with g:text (doc) on top. I'm adding the text via addTextObject (doc), and this all works as expected.
…
0
votes
1answer
73 views
Vista gadget/javascript passing variables question.
I've been struggling with this and can't find a single tutorial on what seems to be a very simple idea.
I've written to the settings in the settings.html file using:
…
1
vote
2answers
483 views
Display javascript value within HTML body
i have the following relevant code in the header of my html doc:
test1.value = System.Gadget.Settings.read("Date1");
And I'm trying to display the test1 value in the body of my html doc.
It …
0
votes
2answers
183 views
Why doesn’t addTextObject() with a jQuery variable work?
When developing a Windows Vista/7 Gadget, and putting out text using addTextObject(), this works:
var mytext = "Hello";
document.getElementById("background").addTextObject(mytext , "Verdana", 11, …
0
votes
2answers
83 views
Javascript variable not displaying properly.
I'm trying to create a Vista gadget, I've properly stored my Date1 variable and am trying to pull it:
<html>
<head>
<title>None</title>
<link href="style.css" …
2
votes
1answer
669 views
Windows Gadgets & Jquery
I am creating a Vista Gadget and I haven't been able to get JQuery to work. I have tried a few very simple calls like this:
$(function() {
$('a').click(function() {
…
2
votes
1answer
128 views
Can I save a record in a Windows Gadget in a file or other storage (database, etc.)?
I'm planning to create a simple gadget to create a TO DO list application. This is just for practice and to explore Windows Gadget. How can I store the values in the database? As much as possible, I …
