Jump to content

PACaleala

Active Members
  • Posts

    96
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

PACaleala's Achievements

Wayfarer

Wayfarer (2/7)

16

Reputation

  1. This switches NumLock indicator On and/or Off: Tested with win 7 and 10 Dim $oShell = ObjCreate("WScript.Shell") $oShell.SendKeys("{NUMLOCK}")
  2. This is an error message from Windows 10 trying to tell you that the (telnet) program cannot be loaded and run or it is not installed! By default Windows 10 does not install the telnet client. A quick check in the Win10 : Control Panels - Windows Features - "Turn windows features on or off" will prove it.
  3. @OP You will see the difference between strings using an editor with 'composite fonts'. The first string contains a combining dot above(Ux0307). The second string has a latin small letter z with dot above(Ux017C). If you go for a solution dealing with a file have a look here: Have fun !
  4. $WshShell = ObjCreate("WScript.Shell") $WshShell.SendKeys("{CAPSLOCK}") "Let AutoIt shine !"
  5. The next line will start Chrome from a link on the Win 10 desktop, go to the wanted web address , use the parameters needed (without using wait or send ): ShellExecute(@DesktopDir & "\chrome.lnk", "https://autochords.com" & ' --disk-cache-dir="A:\Browser Cache"',"","") For extra information check the AutoIt help file.
  6. Windows 'knows' the size in pixels for a Bmp: $sFilename = "Ch.BMP" $sFolderPathspec = "L:\" Local $Object = objCreate("Scripting.FileSystemObject") Local $objShell = objCreate("Shell.Application") Local $objFolder = $objShell.Namespace($sFolderPathspec) $strPixsize = $objFolder.GetDetailsOf($objFolder.Parsename($sFileName), 31) msgbox(64,"size in pixels",$sFolderPathspec & $sFilename & @CrLf & $strPixsize,11 ) ; Exit ; ; the script works with a BMP, JPG, PNG, TIF, GIF, ICO file
  7. Read the header for _Video_Play function then modify the _Player function ....
  8. @Skysnake Why dont you use Internet Explorer to display the pdf ?
  9. Check the forum 'Examples' section for "Google Maps" Udf and "_Mouse_Udf".
  10. Check here InunoTaishou in post #6 and #8 has the answer for you.
  11. @Juvigy Window event behavior has changed (Windows) - MSDN - Microsoft (Applies to IE11.) https://msdn.microsoft.com/en-us/library/dn384058(v=vs.85).aspx
  12. IE will start as fast as the computer allows (" without all the css and stuff. ") Run('"C:\Program Files\Internet Explorer\IEXPLORE.EXE" -nohome')
  13. @Naumishe $cmdline[0] is just a counter . Re-read AutoIt help file about "Running Scripts - Command Line Parameters"
  14. @OP : Microsoft has created sometime ago a tool for this kind of job called "wevtutil".
×
×
  • Create New...