Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 09/27/2023 in all areas

  1. Preview Video Available! Nothing too fantastic yet, the game is no where near finished, but I threw together a quick video of some screen recordings. I'll post the 3 links of the video, take your pick. The patreon or directly from my website are the better video quality options. (Patreon video is public/free no subscription required) Some of the graphics are definitely a bit choppy, but I know what to do to fix that. I've currently got this split up into multiple sections for easier working, but when i combine everything together its smooth Only getting better from here! Video links in the spoiler!
    2 points
  2. Oh yea, I downloaded it but never installed it, I'll install it here in a bit and play around with it and let you know. Yesterday I had already spent too much time mucking around with editor programs that it slipped under the radar, as my desire just to get something put together was slowly turning to frustration with how many confusing editing programs are out there lol
    1 point
  3. Hi, it would be nice if you gave us a specific example of how it should behave. let say you have a text file with following content: hi there how are you my old friend when you call the function, do you want it to return "hi, there" then next time "how, are" and so on, always the next 2. here is an example of that one: Global $file="example.txt" for $x=1 to 3 ReadFiletoClip($x*2) MsgBox (270336,"Clipboard holds",ClipGet()) Next ;Send("^v") func ReadFiletoClip($st) local $tmp="" For $i = $st to $st+1 $tmp=$tmp & FileReadLine($file, $i) & @crlf Next Clipput($tmp) EndFunc
    1 point
  4. Yes, you need to use new tidy from Jos signature.
    1 point
  5. Only on File Will have a look, but there are checks in there to avoid updating tables too often to avoid slowdown. Best practice is to set the properties and re-open SciTE to start with a clean sheet or only use the Directives at the top of the file you like to debug and hit save to activate. Not sure there is anything in standard SciTE, had a quick check and didn't see an option. Tried this but couldn't replicate, so will need to check so more to see what sequence/steps to do to get this. Not sure I will keep this logic... this was a trial as this will allow for multiple insert of the selected dropdown value when you have the multiselect active..... but am not really happy with using the clipboard for that.
    1 point
  6. Another approach, that allows to move the window and change z-order of windows : #NoTrayIcon #include <WinAPI.au3> #include <GUIConstants.au3> Run("Notepad") Local $hApp = WinWait("[CLASS:Notepad]") Local $iHeight = _WinAPI_GetSystemMetrics($SM_CYCAPTION) Local $iWidth = 100 Local $aPos = WinGetPos($hApp), $aPosPrev = $aPos Local $hOver = GUICreate("Over", $iWidth - 8, $iHeight, $aPos[0] + $aPos[2] - $iWidth, $aPos[1] + 1, $WS_POPUP, $WS_EX_TOOLWINDOW) GUISetBkColor(0xFFFFFF) GUISetState(@SW_SHOWNOACTIVATE) _WinAPI_SetWindowLong($hOver, $GWL_HWNDPARENT, $hApp) While WinExists($hApp) Sleep(10) $aPos = WinGetPos($hApp) If $aPos[0] = $aPosPrev[0] And $aPos[1] = $aPosPrev[1] Then ContinueLoop WinMove($hOver, "", $aPos[0] + $aPos[2] - $iWidth, $aPos[1] + 1) WEnd
    1 point
  7. But i finally found the solution (thanks to ChatGPT 🙂 ). #include <WinAPI.au3> ;Just for where the $hGui variable is: ;Local $hGui=GUICreate("Welcome", $xSize, $ySize, 100, 100, BitOR($WS_SYSMENU,$WS_POPUP), 0) _WinAPI_ShowWindow($hGui, @SW_HIDE) ; Hide the window _WinAPI_SetWindowLong($hGui, $GWL_EXSTYLE, BitOR(_WinAPI_GetWindowLong($hGui, $GWL_EXSTYLE), $WS_EX_TOOLWINDOW)) ; Set the window as a tool window WinSetState($hGui, "", @SW_HIDE) ; Hide the window from the taskbar Iam so happy 🙂
    1 point
  8. one way i know is with $WS_EX_TOOLWINDOW #NoTrayIcon #include <WindowsConstants.au3> $xSize = 200 $ySize = 200 Local $hGui=GUICreate("Welcome", $xSize, $ySize, 100, 100, $WS_SYSMENU, $WS_EX_TOOLWINDOW) GUISetState(@SW_SHOW) ;********************************** While 1 Switch GUIGetMsg() Case -3 ;$GUI_EVENT_CLOSE ExitLoop EndSwitch WEnd ;**********************************
    1 point
  9. Melba23

    Ctrl stays locked pressed

    ioa747, Look in the FAQ in the Wiki. M23
    1 point
  10. Released v1.0.12 today, here's what changed: Added Signature help pulls description and parameters from function headers Option to disable `(` as an option to accept function completion suggestions Syntax highlighting for `#Tidy_On`, `#Tidy_Off`, and `#Tidy_ILC_Pos` directives Changed Path checks for utility executables (e.g., Au3Check) reduced to occur when changes are made and disabled for non-Windows OSes Simplified regex for functions Trimmed spaces in insertHeader command Removed default configuration settings that were overriding user settings Fixed Open include shortcut not working for library UDFs Open include shortcut not working for paths with `#` in them Function autocomplete from include files Reduced completion suggestions when writing function definitions Contributors @vanowm, @rcmaehl View and Rate on VSCode Marketplace View and Rate on Open VSX Registry Star, Submit Issues, and Contribute on GitHub
    1 point
  11. GMK

    OOo/LibO Calc UDF

    Also: did you see _OOoCalc_HyperlinkInsert?
    1 point
  12. MHz

    RUN vs EDIT

    Change the default value here, for regedit method: HKEY_CLASSES_ROOT\AutoIt3Script\Shell
    1 point
×
×
  • Create New...