Search found 58 matches

by Blastoise465
24 Feb 2022, 17:56
Forum: Ask for Help (v1)
Topic: Different ways to parse a webpage
Replies: 1
Views: 395

Different ways to parse a webpage

Hello is there a better way to parse a webpage then to urldownloadtofile then read the data? I want to make a script that will check if a item is in stock or if a service is currently active when I hit a button on a gui without opening a browser and if possible put "In stock" or "Available" in a gui...
by Blastoise465
23 Feb 2022, 19:33
Forum: Ask for Help (v1)
Topic: Transparent gui overlay
Replies: 1
Views: 518

Re: Transparent gui overlay

Nevermind

Code: Select all

+BackgroundTrans
:lol:
by Blastoise465
23 Feb 2022, 16:41
Forum: Ask for Help (v1)
Topic: Transparent gui overlay
Replies: 1
Views: 518

Transparent gui overlay

Hello I have a gui window with png image over it I want to overlay another gui window over it in a certain spot that will have scrolling text I want that new gui to be transparent I used inkscape to make this png and I added it like so to my script But it isn't transparent when I run the script I ju...
by Blastoise465
22 Feb 2022, 12:02
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

I did this on each new Gui change before Gui destroy as Mikey said to do(Partial gui code): Gui,Main_Window:+AlwaysOnTop +ToolWindow +HwndMain_Window Menu,Tray,Add,Toggle Window,GuiToggle Menu,Tray,Default,Toggle Window Gui,Main_Window:Font,Bold Gui,Main_Window:Color,0x404040 TransColor = D4D1C8 Gui...
by Blastoise465
22 Feb 2022, 11:50
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

Mikey it basically works how I have the code now I think I should be able to figure out the rest myself! Thank you so much @mikeyww :superhappy: You helped me more then you might think and you've helped me with a lot of solutions to my code :D
by Blastoise465
21 Feb 2022, 16:59
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

So then does that make the go sub persistent or is persistence just when the script is stopped? I will try to test that now
by Blastoise465
21 Feb 2022, 13:38
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

Ok I am able to write the ini and open the gui in same place for next open after close it just wont open the next gui in same spot on gui destroy the gui show only will write the ini when the gui closes how could make that work?
by Blastoise465
21 Feb 2022, 12:54
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

Settings_Panel: { Gui,Main_Window:Destroy WinGetPos, winX, winY, winW, winH, Main_Window IniWrite, %winx%, %inifile%, Screens, winx IniWrite, %winy%, %inifile%, Screens, winy IniWrite, %winw%, %inifile%, Size, winw IniWrite, %winh%, %inifile%, Size, winh gui,Settings_Panel:Show, x%winx% y%winy% w20...
by Blastoise465
21 Feb 2022, 12:08
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Re: Gui Position Topic is solved

So how should I start? GuiClose: WinGetPos , PosX, PosY, Width, Height, AppTitle IniWrite, %PosX%, Wini.ini, Position, WinX IniWrite, %PosY%, Wini.ini, Position, WinY IniWrite, %Width%, Wini.ini, Size, WinW IniWrite, %Height%, Wini.ini, Size, WinH I have no idea where to start and havent been able t...
by Blastoise465
21 Feb 2022, 11:32
Forum: Ask for Help (v1)
Topic: Gui Position Topic is solved
Replies: 10
Views: 1885

Gui Position Topic is solved

Hi I have 7 seperate gui windows I want them to all be a part of one program each gui is a Page/Layer of the gui (When i press settings, settings gui opens) When I press the settings button I want the settings gui to open but in the same spot as where the last gui window was. And I want all the guis...
by Blastoise465
19 Feb 2022, 16:51
Forum: Ask for Help (v1)
Topic: Progress bar per line
Replies: 3
Views: 790

Re: Progress bar per line

Thanks guys I appreciate your replies and will def use them they both work for me :)
by Blastoise465
19 Feb 2022, 01:31
Forum: Ask for Help (v1)
Topic: Progress bar per line
Replies: 3
Views: 790

Progress bar per line

Hello may someone help me add progress to a progress bar after each line of code? I want it to look something like this Pro:= Line1 Pro++ Line2 Pro++ Line3 Pro++ Line4 Pro++ Line5 Pro++ Line6 Pro++ I've only been able to find this and I want it to be something like above Line1 GuiControl,,MyProgress...
by Blastoise465
15 Feb 2022, 17:58
Forum: Ask for Help (v1)
Topic: Window position
Replies: 1
Views: 613

Window position

Hello I want today to save my gui position in a ini so that when I open my gui it will open in last saved spot. there are buttons that open different gui windows (Gui1, Gui2, Gui3, ++++) and I want those gui windows to also open in the last saved position How can I get this working with multiple gui...
by Blastoise465
14 Feb 2022, 21:00
Forum: Ask for Help (v1)
Topic: Different resolution same location click
Replies: 3
Views: 594

Re: Different resolution same location click

What would I need to modify to use multiple MouseMove after a imagesearch CoordMode Pixel ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, C:\LoginButton.png if (ErrorLevel = 2) MsgBox Could not conduct the search. else if (ErrorLevel = 1) MsgBox Icon could not be found on the scree...
by Blastoise465
12 Feb 2022, 22:33
Forum: Ask for Help (v1)
Topic: Different resolution same location click
Replies: 3
Views: 594

Different resolution same location click

Hello is there a easy way to get the mouse to click in same spot on different res monitors? I have this so far anything I can improve? Can I do something like this so it will work in same location on screen on 1080p or 2k or 4k If (A_ScreenWidth == 3440 && A_ScreenHeight == 1440) { MouseMove, %X%-20...
by Blastoise465
07 Feb 2022, 18:44
Forum: Ask for Help (v1)
Topic: Need to match txt files
Replies: 24
Views: 1620

Re: Need to match txt files

This is the only way anything happens inputFile :="C:\HWInfo\MyMonInfo.txt" outputFile :="C:\HWInfo\" %A_UserName% "_User_Settings.ini" map := {"Monitor_Info" : ["Screen_Size", "Max_Refresh_Rate"] , "Hardware_Info" : ["Video_Processor", "Baseboard_Product", "Processor", "Ram_Capacity"] , "Virtualiza...
by Blastoise465
07 Feb 2022, 18:37
Forum: Ask for Help (v1)
Topic: Need to match txt files
Replies: 24
Views: 1620

Re: Need to match txt files

Ive tried to get that to work and its just not working for me :/ its my third week trying to get this done and its just not working for me for some reason no file is created and no text is changed in the existing file
by Blastoise465
07 Feb 2022, 17:09
Forum: Ask for Help (v1)
Topic: Need to match txt files
Replies: 24
Views: 1620

Re: Need to match txt files

So it should look like this? Ive tried to write it many different ways and it wont write to the ini or make a new one at all no matter which way i modify it file :="C:\HWInfo\MyMonInfo.txt" ini := StrReplace(file, "C:\HWInfo\MyMonInfo.txt", "C:\HWInfo\%A_UserName%_User_Settings.Ini") map := {"Monito...
by Blastoise465
07 Feb 2022, 16:32
Forum: Ask for Help (v1)
Topic: Need to match txt files
Replies: 24
Views: 1620

Re: Need to match txt files

And when I use the script mikey posted I just get back the info that is located in the str section So it shows my "HyperV_Present : True" when running it because it is specified as true in mikeys script but it is actually "HyperV_Present : False" str = ( Video_Processor : NVIDIA GeForce RTX 2080 SUP...
by Blastoise465
07 Feb 2022, 16:24
Forum: Ask for Help (v1)
Topic: Need to match txt files
Replies: 24
Views: 1620

Re: Need to match txt files

Blastoise is one of my favorite Pokémon from back in the day :) And what if I only want this info from these two text files Just these.png Because with your last post it works but it gets all the info and I don't want any sensitive information I only want what's in above SS I do not want to make new...

Go to advanced search