Can you describe the task ?
Maybe it is possible to accomplish your task by looping trough the source code, else i think you would need to ask your browser.
Or you could use image search.
Search found 1308 matches
- 24 Mar 2016, 06:58
- Forum: Ask For Help
- Topic: how to get x, y or a string located inside a ie window
- Replies: 12
- Views: 2014
- 24 Mar 2016, 06:30
- Forum: Ask For Help
- Topic: Create a salesorder from from an excel or csv file
- Replies: 5
- Views: 1381
Re: Create a salesorder from from an excel or csv file
Then how about this ? Class Order { __New(ID, data = ""){ this.ID := ID this.Disabled := 0 this.CreateGUI(this.ID, StrSplit(data, ";")*) } CreateGUI(ID, Art = "", Des = "", Lis = "", Con = "", Q = ""){ Global Gui, Add, Edit, r1 vArticlenumber%ID% y+m xs w100, %Art% Gui, Add, Edit, r1 vDescription%ID...
- 24 Mar 2016, 05:35
- Forum: Ask For Help
- Topic: Create a salesorder from from an excel or csv file
- Replies: 5
- Views: 1381
Re: Create a salesorder from from an excel or csv file
I am not sure I completely understand your question but is this what you want ? Class Order { __New(ID){ this.ID := ID this.CreateGUI(this.ID) } CreateGUI(ID){ Global Gui, Add, Edit, r1 vArticlenumber%ID% y+m xs w100 Gui, Add, Edit, r1 vDescription%ID% x+m w100 Gui, Add, Edit, r1 vListPrice%ID% x+m ...
- 24 Mar 2016, 04:34
- Forum: Ask For Help
- Topic: Any way to use AHK to prevent programs from stealing input?
- Replies: 3
- Views: 1284
Re: Any way to use AHK to prevent programs from stealing input?
I have not experienced your problem before, so I can neither test not be certain, but may be using #InstallKeybdHook would allow ahk to detect input.
- 23 Mar 2016, 11:14
- Forum: Ask For Help
- Topic: Firefox wait for load
- Replies: 6
- Views: 2222
Re: Firefox wait for load
This work for me. #Include Acc.ahk FFwait() { ;WinWaitActive, ahk_class MozillaWindowClass loading := "Stop loading this page" loaded := "Reload current page" ;button := "4.25.3.5" ; application.tool_bar3.combo_box.push_button3 button := "application.tool_bar3.combo_box.push_button3" ; sleep until t...
- 19 Mar 2016, 06:02
- Forum: Scripts and Functions
- Topic: [Scripts] New Youtube Video Notification
- Replies: 5
- Views: 2634
Re: [Scripts] New Youtube Video Notification
I don't know, I have been using the button labeled "Edit post" to make changes, whether it changes the post or make a new one I can't tell.
I am guessing the need is not there or maybe it's because of the issue with windows 10.
Sorry about the previous post, at the time I was tired and unmedicated.
I am guessing the need is not there or maybe it's because of the issue with windows 10.
Sorry about the previous post, at the time I was tired and unmedicated.
- 18 Mar 2016, 19:43
- Forum: Scripts and Functions
- Topic: [Scripts] New Youtube Video Notification
- Replies: 5
- Views: 2634
Re: [Scripts] New Youtube Video Notification
Sorry no, i'm just updating the description and reuploading files after removing bugs and making improvments. I may be doing it wrong since it my first upload of this type. I have been a little disappointed that no one has responded with an freed back yet. But I am probably just impatient. I was abo...
- 15 Mar 2016, 16:34
- Forum: Scripts and Functions
- Topic: [Scripts] New Youtube Video Notification
- Replies: 5
- Views: 2634
[Scripts] New Youtube Video Notification
The intended use of this script is to have it running at all times in the background, with its icon shown in the system tray. Description: Every 10 min the script downloads the Youtube channels videos page source of all channels specified in viedeos.ini , the page sources are loops trough, trying to...