Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

laz00

Member
  • Joined

  • Last visited

  • Country

    United States
  1. This works for me. You can spin off a new thread using settimeout and a fake popup (options flag 7 means popup never displays). Its not 100% live but will do a decent progress bar. The underlying API seems to hang at 99% - 0 sec for about a min while it finalizes the WIM and closes the file so there is no way around that. I just wish I could use browseforfolder without having to write my own autoit script. See relevent code snippits below, This does not work as is, you have to work it into you existing code. <style> #progresstodo{background-color: blue; color: blue;} #progressdone{background-color: green; color: green;} #progresstext{font-size: x-small;} </style> <script> Dim objShell Dim idTimer Sub Window_OnLoad Self.Focus() progressdone.InnerHTML = String(0, "_") progresstodo.InnerHTML = String(25, "_") window.offscreenBuffering = True Set objShell = CreateObject("Wscript.Shell") End Sub Sub Windows_OnBeforeUnload Set objShell = Nothing End Sub Sub objWIM_Progress(Percent, TimeRemaining) progressdone.InnerHTML = String(Fix(Percent/4), "_") progresstodo.InnerHTML = String(Fix(25 - (Percent/4)), "_") & "|" progresstext.InnerHTML = Percent & "% - " & TimeRemaining & " sec(s)" objShell.Popup Percent & "% - " & TimeRemaining & " sec(s)", 1, "Progress", 7 idTimer = window.setTimeout("subUpdateProgress Percent, TimeRemaining", 1000, "VBScript") End Sub Sub subUpdateProgress(Percent, TimeRemaining) window.clearTimeout(idTimer) End Sub </script> <body> <span id="progressdone"></span><span id="progresstodo"></span> <div id="progresstext"></div> </body>

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.