Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/29/2012 in Posts

  1. Melba23

    Making tabs transparent?

    zvvyt, Then why not take a look and see if it might do what you want. Basically it allows you to have multiple sections of a GUI and decide which are visible at any given time. It sounds to me like it might just be what you are looking for. You can download it from the link in my sig and I would be happy to help you get it to work in your script. M23
    2 points
  2. The original resolution switcher by HTC works good on earlier Windows, but has two problems on Win8. When activated it creates a window telling the current resolution. It is given focus and thus forces Metro back to the desktop.It switches between the native 800x480 and 1024x600 which is to low to run Metro apps.To fix this I started with a simple script that switches to 1152x864 with a window that displays the resolution without grabbing focus.Later I added some extras: Option to skip the window altogetherSeparate resolution in desktop and MetroA simple installer/uninstaller for the HTC Shift (or other devices that use a synaptics touchpad in the same matter, check the code).Code moved to attachment. See next post for screenshots. ResSwitch source.rar The .au3 itselfModified (removed duplicate const's)Modified (removed duplicate const's and commented WinXP (+ earlier) code to reduce file size)ResSwitch.rar (previous downloads: 51)A compiled .exe (if you don't have AutoIt? lol).bat file calling the installer/uninstaller function (optional).ini file containing the standard settings (optional)
    1 point
  3. UDF Deprecated - 23 Dec 2013 As since the release of v3.3.10.0 the basis of this UDF is now included in the standard AutoIt UDFs as _FileListToArrayRec in File.au3, support will end in this thread and any future bug reports or feature requests should be made via Trac. Note that there are a couple of major changes in the new function compared to this UDF: - You must place the Include|Exclude|Exclude_Folder masks in the single $sMask parameter, delimited by "|". The old syntax with the "exclude" masks at the end of the parameter list will no longer work, unlike this UDF. - The values returned in @extended in the event of an error have been reordered to reflect the above - so you might need to amend your errorchecking. But note that "no files found" still returns 9 in @extended - I am not that cruel! - The sort algorithm has been changed from QuickSort to DualPivot, which is significantly faster for large arrays. I hope you appreciate the faster return times. This zip remians available for those who do not wish to update immediately: RFLTA.zip M23
    1 point
  4. You can use the UDF _FileGetProperty that's linked in my signature to get that information from the file(s), it does work with UNC path names as well as local paths.
    1 point
  5. PhoenixXL

    If hotkey pressed..

    This Should Help HotKeySet('!a','Main') Global $_Running=0 Func Main() $_Running=Not $_Running Loop() EndFunc Func Loop() while $_Running=1 $color = pixelgetcolor( @desktopwidth / 2, @desktopheight / 2) if $color = 16711680 or $color = 16646144 then mouseclick("left") Sleep(20) endif wend EndFunc While 1 Sleep(10) WEnd
    1 point
×
×
  • Create New...