VBScript - HTML Probleme mit Schriftgröße
Servus Leute,
ich brauche mal eure Hilfe. Das VBScript was unten aufzufinden ist funktioniert soweit (das ist ein Coundtown im IE), aber von Zeile 18-22 ist ein teil mit HTML aber ich bekomme die schrift nicht größer (size=100, soll aber noch viel größer sein). Es währe cool wenn mir einer helfen könnte.
Danke im Voraus
MedicalAd
Script von emeriks
ich brauche mal eure Hilfe. Das VBScript was unten aufzufinden ist funktioniert soweit (das ist ein Coundtown im IE), aber von Zeile 18-22 ist ein teil mit HTML aber ich bekomme die schrift nicht größer (size=100, soll aber noch viel größer sein). Es währe cool wenn mir einer helfen könnte.
Danke im Voraus
MedicalAd
On Error Resume Next
Dim IE : Set IE = CreateObject("InternetExplorer.Application")
with IE
.Silent = False
.Navigate "about:Blank"
.FullScreen = true
.ToolBar = False
.RegisterAsDropTarget = False
.AddressBar = False
.MenuBar = False
.ToolBar = 0
.Visible = True
Do Until .ReadyState = 4
WScript.Sleep 100
Loop
.Document.Writeln "<html><body bgcolor=black>"
.Document.Writeln "<table height=100% width=100%><tr height=100% align=""center"" valign=""middle""><td id=CountDown width=300%>"
.Document.Writeln "<font face=Calibri size=100 color=blue>04:00:00</font>"
.Document.Writeln "</td></tr></table>"
.Document.Writeln "</html>"
end with
Dim Counter : Counter = 0 * 0 * 10
Dim Hours : Hours = 0
Dim Minutes : Minutes = 0
Dim Seconds : Seconds = 10
While Hours > 0 Or Minutes > 0 Or Seconds > 0
Seconds = Seconds - 1
If Seconds = -1 Then
Seconds = 59
Minutes = Minutes - 1
If Minutes = -1 Then
Minutes = 59
Hours = Hours - 1
End If
End If
IE.Document.getElementByID("CountDown").InnerHtml = "<font face=Calibri size=100 color=blue>" & Hours & ":" & Minutes & ":" & Seconds & "</font>"
WScript.Sleep 1000
Wend
CreateObject("Wscript.Shell").Run "meinsound.mp3",0,true
Script von emeriks
Bitte markiere auch die Kommentare, die zur Lösung des Beitrags beigetragen haben
Content-ID: 324319
Url: https://administrator.de/contentid/324319
Ausgedruckt am: 24.11.2024 um 12:11 Uhr
5 Kommentare
Neuester Kommentar