jestahh Posted September 21, 2021 Share Posted September 21, 2021 Hi there, I'm having an issue as a user rather than as a creator of a script here - I've recently been attempting to launch a number of different au3 files which all have their own GUI setups, yet whenever I do nothing appears or shows up. These scripts are definitely functional as I've seen friends use them before, but when I use them nothing shows up. If it helps, the script does appear in task manager as a running process - so it feels as though the file has launched but I just can't see the GUI. I've tried running as admin, disabling my anti-virus as well but to no avail. Does anyone have any ideas what could be causing it not to appear? Link to comment Share on other sites More sharing options...
Nine Posted September 21, 2021 Share Posted September 21, 2021 13 minutes ago, jestahh said: as I've seen friends use them before What are you trying to automate ? Looks like game automation. You may want to read carefully forum rules... “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
jestahh Posted September 21, 2021 Author Share Posted September 21, 2021 Leendert-Jan 1 Link to comment Share on other sites More sharing options...
Musashi Posted September 21, 2021 Share Posted September 21, 2021 (edited) 4 hours ago, jestahh said: Does anyone have any ideas what could be causing it not to appear? The latest version of AutoIt includes some groundbreaking features, among others it is now armed with Artificial Intelligence. Whenever a user launches an .au3 file that does not comply with Forum Rules, Human Rights or a healthy lifestyle, the execution is prevented. For example, if you order a pepperoni pizza and your health scores are poor, you'll get the broccoli one . Quote I've recently been attempting to launch a number of different au3 files which all have their own GUI setups, yet whenever I do nothing appears or shows up. Seriously, what kind of help do you expect without posting at least one of the scripts. Edited September 21, 2021 by Musashi mikell, Werty and JockoDundee 1 2 "In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move." Link to comment Share on other sites More sharing options...
JockoDundee Posted September 21, 2021 Share Posted September 21, 2021 4 hours ago, jestahh said: Does anyone have any ideas what could be causing it not to appear? Sounds like a bad HDMI cable, try upgrading the firmware. Musashi 1 Code hard, but don’t hard code... Link to comment Share on other sites More sharing options...
Developers Jos Posted September 21, 2021 Developers Share Posted September 21, 2021 @jestahh, Post the code that demonstrates the issue when you like to receive a serious answer as we aren't clairvoyant. Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past. Link to comment Share on other sites More sharing options...
Werty Posted September 21, 2021 Share Posted September 21, 2021 He's out, the Homer pic is from a Gif where he slowly backs up into the bush behind him and disappears. Some guy's script + some other guy's script = my script! Link to comment Share on other sites More sharing options...
Werty Posted September 21, 2021 Share Posted September 21, 2021 ...found the gif... JockoDundee, Leendert-Jan and Musashi 3 Some guy's script + some other guy's script = my script! Link to comment Share on other sites More sharing options...
JockoDundee Posted September 21, 2021 Share Posted September 21, 2021 Then @Nineshould be awarded the solution Werty 1 Code hard, but don’t hard code... Link to comment Share on other sites More sharing options...
Nine Posted September 21, 2021 Share Posted September 21, 2021 “They did not know it was impossible, so they did it” ― Mark Twain Spoiler Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Screen Scraping Multi-Threading Made Easy Link to comment Share on other sites More sharing options...
Zedna Posted September 22, 2021 Share Posted September 22, 2021 (edited) I have very similar occasional problem with our development tool (not AutoIt) GUI at work: After run (click on its icon on desktop) GUI was off screen, later I discovered X,Y=-32000 and status of window was hidden. So I created this small repair utility which set X,Y=0 set W,H=800/600 and set status of window from hidden to visible (SHOW): AutoItSetOption("WinTitleMatchMode", 2) ; substring $win = WinGetHandle("My title") If Not @error Then If Not @Compiled Then $pos = WinGetPos($win) ConsoleWrite('X,Y,W,H: ' & $pos[0] & ',' & $pos[1] & ',' & $pos[2] & ',' & $pos[3] & @crlf) ; X,Y,W,H: -32000,-32000,160,28 EndIf WinMove($win, '', 0, 0, 800, 600) WinSetState($win, '', @SW_SHOW) EndIf Edited September 22, 2021 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now