Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/25/2021 in all areas

  1. PSPad4AutoIt3 v2.0.0 beta (2021-04-16) All parts are freeware. PSPad4AutoIt3 consists of the Editor PSPad and the Improvement Kit, and can be used as an portable editor IDE for AutoIt3. The author of the PSPad Editor is Jan Fiala. I (Professor Bernd) am only the author of the Improvement Kit. Contact us: This is the first fully portable version of PSPad4AutoIt3. There are a lot of changes and new features, e.g. - a separate AutoIt3 menu in the PSPad main menu, - the shortcuts are SciTE-like, - Tidy for Au3, - in CallTipViewer a recognition for writing "(", - a dialog for registering file extensions with Pau3, - a nice about dialog in "90s style", - the CodeExplorer can now be displayed together with the FavTools on the right side, ( so the panel on the left side can be completely hidden ) - and much more ... See here for details All in all a lot has been done and it is worth to have a look Praise, criticism, ideas, tips and hints on bugs are welcome. Have fun with the new features! Thank you very much, Professor Bernd. Special thanks for the friendly support goes to: Jan Fiala (Author of PSPad) Jos van der Zande (Author of AutoIt3Wrapper, Tidy, ...) alpines (suggestions, ideas, testing, design for syntax colors, develop routines) argumentum (feedback, suggestions, ideas) AspirinJunkie (RegExp pattern, ideas and code snippets) Bitnugger (suggestions, ideas and code snippets) BugFix (suggestions, ideas and code snippets) Gun-Food (for making it possible to publish the project here) LarsJ (VBScript<->AutoIt communication, …) Musashi (suggestions and ideas) Credits for many other contributors can be found in the Pau3 About dialog. PSPad4AutoIt3 v2.1.0 beta - Update (2021-05-02) See here for details v2.1.0 beta - Update Download in the german forum PSPad4AutoIt3 (Editor IDE), end of post #1
    1 point
  2. Sorry mistaken AutoIt and JavaScript
    1 point
  3. Hmm,.. Good idea, i will try that, thanks! Edit: For all others searching for a solution; I managed to perform the check like this, working perfectly, it can possibly be simplified so suggestions are welcome ;Setting Vars local $JS_Scr_Height, $JS_Scr_Width, $JS_Scr_InnHeight, $JS_Scr_InnWidth ;Perform Get Data and act accordingly. $JS_Scr_Height = _WD_ExecuteScript($sSession, "return screen.height;") $JS_Scr_Height = Json_Decode($JS_Scr_Height) $JS_Scr_Width = _WD_ExecuteScript($sSession, "return screen.width;") $JS_Scr_Width = Json_Decode($JS_Scr_Width) $JS_Scr_InnHeight = _WD_ExecuteScript($sSession, "return screen.innerHeight;") $JS_Scr_InnHeight = Json_Decode($JS_Scr_InnHeight) $JS_Scr_InnWidth = _WD_ExecuteScript($sSession, "return screen.innerWidth;") $JS_Scr_InnWidth = Json_Decode($JS_Scr_InnWidth) If NOT (Json_Get($JS_Scr_Height, "[value]") == Json_Get($JS_Scr_InnHeight, "[value]") AND Json_Get($JS_Scr_Width, "[value]") == Json_Get($JS_Scr_InnWidth, "[value]")) Then ;Set Section back to FullScreen again _WD_Window($sSession, 'Fullscreen', '') EndIf
    1 point
  4. jchd

    Print Vertical Ellipsis

    Menu > Options > Open User Options File and add/change settings so that a good Unicode fixed-sized font is used (<== 1) and UTF8 encoding is used (<== 2). I also set UTF8 (65001) as .au3 files encoding (<== 3). These are protected user options which survive SciTE4AutoIt3 updates and reinstalls unless you delete/overwrite SciTEUser.properties. import au3.UserUdfs import au3.keywords.user.abbreviations font.base=font:Verdana,size:10,$(font.override) font.monospace=font:DejaVu Sans Mono,size:11 <=========== 1 proper.case=1 use.tabs=1 indent.size=4 indent.size.*.au3=4 tabsize=4 style.au3.32=style.*.32=$(font.base),back:#F0F4F9 caret.line.back=#FFFED8 selection.fore=#006000 selection.alpha=50 selection.back=#F0A0A8 style.au3.34=fore:#0000FF,back:#F0F4F9 style.au3.35=fore:#008000,italics,back:#F0F4F9 style.au3.0=fore:#000000,back:#F0F4F9 style.au3.1=fore:#008000,italics,back:#F0F4F9 style.au3.2=fore:#008000,italics,back:#F0F4F9 style.au3.3=fore:#0000FF,back:#F0F4F9 style.au3.4=fore:#000090,back:#F0F4F9 style.au3.5=fore:#0000FF,back:#F0F4F9 style.au3.6=fore:#808000,back:#F0F4F9 style.au3.7=fore:#FF0000,back:#F0F4F9 style.au3.8=fore:#FF8000,back:#F0F4F9 style.au3.9=fore:#5A5A5A,back:#F0F4F9 style.au3.10=fore:#808080,back:#F0F4F9 style.au3.11=fore:#808000,back:#F0F4F9 style.au3.12=fore:#DC143C,back:#F0F4F9 style.au3.13=fore:#FF0000,back:#F0F4F9 style.au3.14=fore:#993399,back:#F0F4F9 style.au3.15=fore:#0080FF,back:#F0F4F9 openpath.$(au3)=$(SciteDefaultHome)\..\include; error.inline=1 code.page=65001 <========== 2 output.code.page=65001 <========== 2 user.shortcuts=\ Ctrl+KeypadPlus|IDM_EXPAND|\ Ctrl+KeypadMinus|IDM_BLOCK_COMMENT| #NewFileEncoding=CodePage/UTF8/UTF8BOM/UTF16BE/UTF16LE NewFileEncoding=UTF8 <========== 3 utf8.auto.check=4 <========== 3 title.full.path=1
    1 point
  5. maniootek

    WinHTTP functions

    @trancexx Did you consider to fix Au3Check warnings in your UDF WinHttp.au3? It is not that bad, only few of them
    1 point
  6. trancexx

    WinHTTP functions

    Yes thanks. But the only valid warning is with unreferenced parameter inside __WinHttpFormUpload. I'll fix that.
    0 points
×
×
  • Create New...