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

margu.eu

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

daily

Juni 2022
M D M D F S S
 12345
6789101112
13141516171819
20212223242526
27282930  
« 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: Version 2.1.2 of margu-NotebookInfo2

Aug11
am 11. August 2009 um 08:56 und bearbeitet am 11. August 2009. um 08:59
Veröffentlicht in: NotebookInfo2

Well, the next update is released. Hope you further like my gadget and send me suggestions, ideas and info about bugs (I know, there are some … I’m only human :angel: )

The download you’ll find here.

So, da nächste Update ist fertig. Hoffe Euch gefällt mein Gadget weiterhin und Ihr schickt mir immer fleißig Anregungen, Ideen und Informationen über Fehler (ich weiß da sind welche … bin auch nur ein Mensch :angel: )

Der Download ist hier.

Changes:

  • added: font can be changed for the gadget now.
  • added: option to set background to transparent. IMPORTANT: This is only experimental yet, because I’m searching for a good alternative method to go around the „magenta-bug“ of the sidebar.
  • fixed: bouncing hour and minute are wrong positioned after full hour change.
  • fixed: problems downloading the .gadget file. I changed the automatic and manual update so now it collect the .zip file from my server instead.
  • fixed: „Display in GHz“ checkbox isn’t disabled if CPU module is deactivated.
  • fixed: colour of battery info don’t change sometimes.
  • changed: more preselect date formats and they are shown in realtime


└ Schlagwörter: Anregung, Battery, colour, CPU, date, gadget, Idee, Information, margu-NotebookInfo2, Modul, Module, Notebook, Sidebar, time, transparent
1 Kommentar

Gadgets with transparent background

Aug07
am 07. August 2009 um 08:51
Veröffentlicht in: Gadget, NotebookInfo2


transparent gadget

transparent gadget

There again Microsoft afforded something. Who of you already tried to provide a gadget with transparent background but not to do it without CSS formatting, tear one’s hair.


It is simply impossible to put a transparent picture on the background and finish. As soon as I want to place a second semi-transparent image on top or simply write some text into the gadget, I’ll have a cute secondary effect: All will get a neat magenta coloured border (as you can see on the picture).

This results on a bug in the anti-aliasing engine of the sidebar, which causes problems with alpha-cannels. Microsoft use a magenta coloured mask for transparency in sidebar and this won’t be erased completely if using semi-transparency. Thus these develop nice edges with the anti-aliasing of images or text.

You can minimise this on images, by putting only e.g. GIF files on top of PNG background images (who don’t use semi-transparent images on top can use e.g. JPG either), because only PNG use alpha-cannels. But the problem with the text remains existing.

However, Microsoft provide us one alternative method, as we can use the Tag <g:background ... > or the JavaScript variant addImageObject() . For this, either take a look at MSDN g:background Element.

Example:

<html>
    <head>
        <title>Hello World</title>
        <script type="text/jscript" language="jscript">
        function init()
        {
            System.Gadget.background = "images\\background.png";
        }
        </script>
    </head>
    
    <body onload="init()">
        <g:background id="imgBackground">
            Hello World!
        </g:background>
    </body>
</html>


The crucial disadvantage of this possibility is that thereby no events – like e.g. mouse click or mouse movement – are passed on, since images merged in such a way becomes part of the background.

Now my consideration goes by, whether I will really do myself this cramp and converts my gadget completely, or try to go around the restrictions with cheats so that all functions remain and I nevertheless get a transparent background. :schulterzuck:


Da hat sich Microsoft ja mal wieder was geleistet. Wer von Euch schonmal versucht hat ein Gadget mit transparentem Hintergrund zu erstellen und dabei auf CSS Formatierung nicht verzichten möchte, der rauft sich die Haare.

Es ist schlicht unmöglich einfach nur eine transparente Grafik zu nehmen, diese auf den Hintergrund zu legen und fertig. Sobald ich eine weitere Grafik mit semi-transparenten Teilen darüber lege oder auch einfach nur Schrift ins Gadget einfüge, bekomme ich einen netten Nebeneffekt, über den sich unser großes T hier in Deuschland sicher freut: Alles bekommt einen netten Rand in Magenda (auf der nebenstehenden Grafik zu sehen).

Das liegt an einem Bug der Anti-Aliasing Engine der Sidebar, der Probleme mit den Alphakanälen hat. Microsoft verwendet für die Transparenz bei der Sidebar eine magentafarbene Maske, die bei Teiltransparenz nicht vollständig entfernt wird. Dadurch entstehen beim Anti-Aliasing von Grafiken oder Schriften diese netten Ränder.

Vermindern läßt sich das bei Grafiken, indem man über den aus einer transparenten PNG Grafik bestehenden Hintergrund nur z.B. GIF Dateien legt (wer auf transparente Grafiken verzichten kann, kann auch z.B. JPG nutzen), weil nur PNG Alphakanäle unterstützt. Aber das Problem bei den Schriften bleibt weiter bestehen.

Eine (proprietäre) Alternative liefert Microsoft uns aber gleich mit, indem wir den Tag <g:background ... > oder die JavaScript Variante addImageObject() nutzen. Siehe dazu auch MSDN g:background Element.

Beispiel:

<html>
    <head>
        <title>Hello World</title>
        <script type="text/jscript" language="jscript">
        function init()
        {
            System.Gadget.background = "images\\background.png";
        }
        </script>
    </head>
    
    <body onload="init()">
        <g:background id="imgBackground">
            Hello World!
        </g:background>
    </body>
</html>


Der entscheidende Nachteil dieser Möglichkeit ist, daß dadurch keine Ereignisse – wie z.B. Mausklick oder -bewegung – weitergeleitet werden, da die so eingebundene Grafik Teil des Hintergrundes wird.

Nun geht meine Überlegung dahin, ob ich mir wirklich diesen Krampf antun werde und mein Gadget komplett umbaue, mit Tricks versuche die Einschränkungen zu umgehen, damit alle Funktionen erhalten bleiben und ich trotzdem einen transparenten Hintergrund bekomme. :schulterzuck:


└ Schlagwörter: aliasing, alpha, background, colour, CSS, gadget, Grafik, Hintergrund, image, javascript, magenta, png, Sidebar, transparent
 Kommentar 

New: Version 2.1.1 of margu-NotebookInfo2

Aug04
am 04. August 2009 um 12:15 und bearbeitet am 04. August 2009. um 12:17
Veröffentlicht in: NotebookInfo2

A few fixes and changes I’ve done in this release. The problem with remaining battery time if it is collected from Windows is nearly fixed. No problems if using Windows7 but working with Vista is hard, because Microsoft didn’t implement the System.Machine.PowerStatus.batteryCapacityRemaining in Vista for the sidebar. :wall:

I did a hack so now it works with Vista but stuck every 15 seconds. 🙁

If you check the box on the settings page for self calculating remaining batterytime all is working well.

As usual all changes you’ll find in changelog.


Ein paar Fehlerkorrekturen und Änderungen habe ich in dieser Version eingebaut. Das Problem mit der Restlaufzeit des Akku wenn der Wert aus Windows herausgeholt wird ist annähernd behoben. Unter Windows7 funktioniert alles tadellos, aber mit Vista ist es schwer, weil Microsoft wohl vergessen hat das System.Machine.PowerStatus.batteryCapacityRemaining in Vista für die Sidebar zu aktivieren. :wall:

Ich habe das nun notdürftig geflickt, so daß es unter Vista einigermaßen funktioniert, aber alle 15 Sekunden hängt das Gadget kurz. 🙁

Ganz ohne Probleme läuft alles, wenn in den Gadget Settings der Haken gesetzt wird, daß die Restlaufzeit vom Gadget berechnet werden soll.

Die Änderungen in dieser Version findest Du wie immer im Changelog.


└ Schlagwörter: Akku, Battery, gadget, margu-NotebookInfo2, Restlaufzeit, Sidebar, Status, time, Vista / W7, Windows7
 Kommentar 

Downloading margu-NotebookInfo2 2.1.0

Aug03
am 03. August 2009 um 08:36 und bearbeitet am 03. August 2009. um 14:06
Veröffentlicht in: NotebookInfo2

Because there are huge problems downloading the .gadget file with browsers other than InternetExplorer, I added a second link with a zip compressed file on the download page.

Da es massive Probleme mit dem Download des Gadget gibt, wenn nicht der InternetExplorer genutzt wird, habe ich auf der Downloadseite nun einen zweiten Link zugefügt, wo das Gadget als zip Archiv heruntergeladen werden kann.

└ Schlagwörter: download, gadget, margu-NotebookInfo2
 Kommentar 

Problems while on battery with margu-NotebookInfo2

Aug02
am 02. August 2009 um 13:31
Veröffentlicht in: NotebookInfo2

I realised that the gadget stop working while running on battery if the gadget gets remaining battery time from Windows. 🙁 If it is set to calculate the remaining time itself all is running well.

Will try to fix this problem as soon as possible.

Ich habe festgestellt, daß das Gadget aufhört zu arbeiten wenn das Notebook auf Akku läuft und die Restlaufzeit von Windows geholt werden soll. 🙁 Sobald eingestellt ist, daß die Restlaufzeit selbst berechnet werden soll funktioniert alles reibungslos.

Werde versuchen das so schnell wie möglich zu beheben.


└ Schlagwörter: Akku, Battery, gadget, margu-NotebookInfo2, Notebook, remaining time, Restlaufzeit
 Kommentar 
  • Seite 5 von 10
  • « Erste
  • «
  • 3
  • 4
  • 5
  • 6
  • 7
  • »
  • Letzte »

Last Comments

  • 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
  • Matei Florin 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 ↑