• Gadgets
    • margu-NotebookInfo2
      • known problems / bekannte Probleme
      • Changelog
      • ToDo
      • Screenshots
      • Handling / Bedienung
  • Download Area
  • Sitemap
  • Credits
    • Impressum
    • License
RSS

margu.eu

Gedöns rund um die IT
Zurück » Seite 10

daily

Januar 2021
M D M D F S S
 123
45678910
11121314151617
18192021222324
25262728293031
« Nov    

monthly

  • November 2013 (1)
  • Mai 2013 (1)
  • März 2013 (1)
  • Mai 2012 (1)
  • Februar 2012 (1)
  • November 2011 (1)
  • August 2011 (2)
  • Juli 2011 (1)
  • Juni 2011 (2)
  • August 2010 (1)
  • Juni 2010 (1)
  • September 2009 (4)
  • August 2009 (8)
  • Juli 2009 (8)
  • Juni 2009 (4)
  • Mai 2009 (11)
  • April 2009 (2)

where is what

  • General (1)
  • Vista / W7 (49)
    • Sidebar (49)
      • Gadget (49)
        • HowTo (1)
        • margu-Fritz!Info (3)
        • NotebookInfo2 (43)
          • Beta (14)
          • Tests (1)
        • Sniplets (2)

Awards


margu-NotebookInfo2 2.2.6 margu-NotebookInfo2 5 Stars Award



margu-NotebookInfo2 2.2.6 margu-NotebookInfo2 Famous Software Award



margu-NotebookInfo2 2.2.6



margu-NotebookInfo2 2.2.6 5 Stars Rating



margu-NotebookInfo2 2.2.9 5 Stars Rating


New: 2.0.0 RC1 of margu-NotebookInfo2

Mai08
am 08. Mai 2009 um 11:30 und bearbeitet am 25. Juni 2009. um 15:55
Veröffentlicht in: Beta, NotebookInfo2

Bald ist es geschafft! Der Release Candidate 1 ist da.

Das bedeutet, die Version 2 von dem Gadget steht kurz vor der Veröffentlichung. 😎

Wer es testen möchte, der findet es wie immer auf dieser Seite.

Viel Spaß damit. 🙂


Soon I get the goal. The Release Candidate 1 is on.

This means, the version 2 of the gadget is shortly before publishing. 😎

Who want to check it out can get it – as usual – on this page.

Enjoy it. 🙂

New: 2.0.0Beta8 of margu-NotebookInfo2

Mai06
am 06. Mai 2009 um 17:51 und bearbeitet am 25. Juni 2009. um 15:55
Veröffentlicht in: Beta, NotebookInfo2

Heute habe ich die Beta8 meines Gadgets online gestellt.

Was es darin Neues gibt, findest Du auf dieser Seite.


Today I set the Beta8 of my gadget online.

To see what’s new go to this page.


New: 2.0.0Beta5 of margu-NotebookInfo2

Mai04
am 04. Mai 2009 um 20:04 und bearbeitet am 25. Juni 2009. um 15:55
Veröffentlicht in: Beta, NotebookInfo2

Heute habe ich die Beta5 meines Gadgets online gestellt.

Was es darin Neues gibt, findest Du auf dieser Seite.


Today I set the Beta5 of my gadget online.

To see what’s new go to this page.

└ Schlagwörter: beta, gadget, margu-NotebookInfo2, Notebook

What happened to Alert and Confirm?

Apr29
am 29. April 2009 um 19:46 und bearbeitet am 19. Juni 2009. um 09:59
Veröffentlicht in: Sniplets

We’ve all been on Web sites and received the „Invalid input, please try again“ alert and the „Delete record. Are you sure?“ confirmation dialog. Developers often want to pop up informational messages like these.

Sidebar, however, has disabled these JavaScript functions. Using popup dialogs goes against the Windows Vista UX guidelines for Sidebar gadgets. If you still feel compelled to use popups, you can emulate these functions.

To do this, first insert a simple one line tag into the head element of your HTML:

<script src="alert.vbs" type="text/vbscript"></script>

Then create a file that contains the following code and name it alert.vbs. Now you can continue to use alert and confirm as you wish.

‘simulate JavaScript alert() function
sub alert(prompt)
      MsgBox prompt, 48 , "Sidebar Gadget"
end sub  

‘simulate JavaScript confirm() function
function confirm(prompt)
      dim res
      res = MsgBox (prompt, 33, "Sidebar Gadget")
      if res=1 then
          confirm = true
      else
          confirm = false
      end if
end function


via Gadgets: Build Your Own Windows Vista Sidebar Gadget.


└ Schlagwörter: alert, confirm, gadget, javascript, Sidebar, vbs, Vista / W7
1 Kommentar

HowTo: Sprache in margu-NotebookInfo2

Apr28
am 28. April 2009 um 14:22 und bearbeitet am 15. Juli 2009. um 07:26
Veröffentlicht in: HowTo, NotebookInfo2


  1. Finde die „Identifier“ für jede Sprache die das Gadget unterstützen soll, z.B. en-US oder fr-FR.
  2. Erstelle einen Unterordner für jede zu unterstützende Sprache.
    Der Name des Unterordner muß exakt dem „Identifier“ entsprechen.
    Alternativ kannst Du auch einen der schon bestehenden Ordner kopieren und anschließend umbenennen.
    Den Ordner des Gadget findest Du unter



    C:\Users\YOURUSERNAME\AppData\Local\Microsoft\Windows Sidebar\Gadgets\margu-NotebookInfo2

    Wenn Du den Ordner nicht sehen kannst, dann gehe im Explorer auf „Extras => Ordneroptionen“ und setze alle versteckten Ordner und Dateien auf sichtbar.

  3. Nachdem Du den neuen Ordner erstellt hast, kopieren die beiden Dateien“gadget.xml“ und „localization.js“ aus einem der bestehenden Sprachordner in Deinen neuen Ordner. Wenn Du einen bestehenden Ordner kopiert und umbenannt hast, dann sind diese beiden Dateien schon im neuen Ordner.
  4. Nun öffne die Datei „localization.js“ mit dem Editor (oder einem anderen Texteditor) ändere alle Texte innerhalb der Anführungszeichen („“) nach Deinen Bedürfnissen.
  5. Speichere die Datei und nachdem Du die Sidebar neu gestartet hast, sollten alle Texte auf und innerhalb des Gadgets in Deiner Sprache sein.

Ich würde mich freuen, wenn Du mir Deinen Sprachordner (als ZIP) per Mail an

margu999 (at) gmail.com

schicken würdest. Dann kann ich sie beim nächsten Update dem Gadget zufügen und auch andere User kommen in den Genuß der Sprache.


  1. Identify each Windows locale the gadget must support. For example, en-US or fr-FR.
  2. Create a subfolder for each supported Windows locale identifier.
    The subfolder name must match the identifier exactly.
    Alternatively you can copy one of the existing localize folders and rename it for your identifier.
    You’ll find the gadget folder at



    C:\Users\YOURUSERNAME\AppData\Local\Microsoft\Windows Sidebar\Gadgets\margu-NotebookInfo2

    If you can’t see this folder, set the visibility of all hidden files and folders at „Folder Options“ of your Explorer under „Tools„

  3. After you created the new folder copy the 2 files „gadget.xml“ and „localization.js“ from one of the existing localize folders to your new folder. If you copied and renamed one of the existing folders, the needed files are already inside of the new one.
  4. Now open the file „localization.js“ with Notepad (or any other texteditor) and translate all text inside each quotation marks („“) to your needs.
  5. Save the file and after you restarted the sidebar all text on and inside the gadget should be in your language.

I would be happy, if you send me your translated folder (as ZIP file) by mail at

margu999 (at) gmail.com

So I will put it into the next release of the gadget and other users will have this language too.


└ Schlagwörter: gadget, howto, identifier, language, margu-NotebookInfo2, Sidebar, Sprache
  • Seite 10 von 10
  • « Erste
  • «
  • 6
  • 7
  • 8
  • 9
  • 10

Last Comments

  • boyermays71.iktogo.com bei Fritz!Box goes Sidebar
  • MT bei New: margu-NotebookInfo2 Version 2.4.0
  • kacchan203 bei New: margu-NotebookInfo2 Version 2.4.0
  • kacchan203 bei New: margu-NotebookInfo2 Version 2.4.0
  • Prensipci bei New: margu-NotebookInfo2 Version 2.4.0

donation

These gadgets are free. If these Gadgets pleases you, I would be very happy if you honour it with a small donation.


please use

margu999(at)gmail.com

as recipient

useful

  • Dr.Windows (de) Mehr als nur ein Forum mit vielen nützlichen und informativen Artikeln und Beiträgen.
  • msdn: Windows Sidebar (en) Reference and introducing for programming sidebar gadgets
  • Selfhtml Tutorials (de) Hier sind Tutorials, um sich selbst Kenntnisse in Sachen HTML, Webdesign und Webauthoring beibringen zu können.

Kontrollzentrum

  • Registrieren
  • Passwort wiederherstellen

©2009-2013 margu.eu | Powered by WordPress mit Easel | Subscribe: RSS | Nach oben ↑