Search found 31 matches

by Philbot44
04 Jan 2017, 09:13
Forum: Ask for Help (v1)
Topic: RegReplace problems Topic is solved
Replies: 5
Views: 1482

Re: RegReplace problems Topic is solved

That has fixed it brilliant, thank you to both of you for helping me to learn some new ways of sorting out niggly problems.
by Philbot44
04 Jan 2017, 05:30
Forum: Ask for Help (v1)
Topic: RegReplace problems Topic is solved
Replies: 5
Views: 1482

Re: RegReplace problems Topic is solved

2 great methods to pin point the problem thanks. It seems to be ok without the regReplace.. I get the following in msgbox not sure why the finish result goes onto a 3rd line, wanst sure until I tried Jeeswg code (see below) that confirms there is a carriage return in there at the start of the Finish...
by Philbot44
03 Jan 2017, 15:40
Forum: Ask for Help (v1)
Topic: RegReplace problems Topic is solved
Replies: 5
Views: 1482

RegReplace problems Topic is solved

Hi, I have spent the whole of today trying to work out why when I get 2 identical numbers from a website using the innerText and try to compare them it does not work in the if statement? Thought there might of been some white spaces or " in the inner text so I search and found this RegExReplace whic...
by Philbot44
01 Jan 2017, 21:07
Forum: Ask for Help (v1)
Topic: Capturing then monitoring multiple instances using a Timer
Replies: 3
Views: 859

Re: Capturing then monitoring multiple instances using a Timer

Hi Lexikos Thank you for the response, the class example looks like it will help me, I will have to brush up on my functions but as I want to learn more I will spend some time myself learning how to use functions and hopefully learn more that way. Just one last question, will it make any difference ...
by Philbot44
31 Dec 2016, 10:19
Forum: Ask for Help (v1)
Topic: Capturing then monitoring multiple instances using a Timer
Replies: 3
Views: 859

Capturing then monitoring multiple instances using a Timer

Hope someone can at least point me in the right direction here.. The code below is working ok for monitoring just the one time occurrence My question is how can I modify the code below so I can capture a variable at different times (even when the 1st capture is running) then check it 15 secs later a...
by Philbot44
22 Dec 2016, 11:41
Forum: Ask for Help (v1)
Topic: Firing the Event
Replies: 0
Views: 490

Firing the Event

Hi I keep coming across problems with a website that I am trying to use AHK to automate. Basically I have code to select from a drop down which all works very well as I can change the drop down to the required selection (e.g. say option [1]) however the new selected option should trigger some event ...
by Philbot44
30 Jul 2016, 06:28
Forum: Ask for Help (v1)
Topic: Help with Event Handler
Replies: 4
Views: 2351

Re: Help with Event Handler

Ok that's great appreciate the help not sure how it works mind you maybe the sending of the space bar deselects the button but problem solved I guess.
Thanks again
by Philbot44
26 Jul 2016, 17:38
Forum: Scripts and Functions (v1)
Topic: Internet Explorer Element Spy (alternative to iWB2 Learner)
Replies: 67
Views: 42593

Re: Internet Explorer Element Spy (alternative to iWB2 Learner)

Just found this and wondered if it was still a work in progress? I come across frames a lot and wondered if it would say first report the frame if exists then maybe you could then enter the frame details to move forward with the elements in the frame?
Thanks
by Philbot44
26 Jul 2016, 15:51
Forum: Ask for Help (v1)
Topic: Help with Event Handler
Replies: 4
Views: 2351

Re: Help with Event Handler

Rommmcek
Thanks for your input here but I do not think this would work as I need to get the event to fire before the submit button is clicked.

I will send the link to the site and some instructions for login and maybe you will get the idea of what I mean if that helps?

Thanks
by Philbot44
25 Jul 2016, 16:38
Forum: Ask for Help (v1)
Topic: Help with Event Handler
Replies: 4
Views: 2351

Help with Event Handler

Hope someone can help me with my problem below here is a snippet of the code that is basically working ok title := "My URL" ;nb. I can send the url privately and the username and password if it will help here?.. ie := IEGet(title, 1) If !IsObject(ie) ie := ComObjCreate("InternetExplorer.Application"...
by Philbot44
19 Jul 2016, 16:49
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

Thanks again for you time here, here is an update.. Lets 1st dismiss the readonly issue, my mistake there when I copied the html at the time that part of the website was greyed out as in temporarily not updateable as you see below the html is now showing as OK <div class="amountBox"> <div class="amo...
by Philbot44
16 Jul 2016, 05:47
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

yes I agree it is strange that inputbox has a readonly attribute but can be deleted and changed with ID = Amount and of course changed manually but I will run the snoop loop and let you know how I get on.
Thanks
by Philbot44
15 Jul 2016, 17:31
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

I will give it a try next week the site is closed now until Monday.
Appreciate your help her thanks
by Philbot44
15 Jul 2016, 15:54
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

Ok now it looks like it must have some Jquery so I need to somehow fire the onchange event after I send the value to the Input box and I have tried these 2 ideas below but still not working. There seems very little on the onchange and fireEvent when searching with AHK in google so hope someone can h...
by Philbot44
15 Jul 2016, 09:10
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

Thanks I have given this code a try and this is what I have found.. I set value TSize = 13 Then I looked at Key_code during the loop and it was returning the correct 2 values (1) =39 & (3)=51 so seems ok Then I hear a dong dong dong errors as it loops through but nothing appears in the inputbox (it ...
by Philbot44
14 Jul 2016, 11:06
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

Re: InputBox updates only when typing values in input box

I never sent the rest of the code as this code works ok in that the input box starts with a value of 50. When I run my code I see it change to my new value i.e. 20 and I then use COM object again to read it back and it shows 20 so in effect the input box has changed to the value of 20. Maybe it is j...
by Philbot44
14 Jul 2016, 09:10
Forum: Ask for Help (v1)
Topic: InputBox updates only when typing values in input box
Replies: 10
Views: 2680

InputBox updates only when typing values in input box

Hi I have managed to get an input box to accept my variable using the code below and I then even ask for it to be read back to me and it shows this is correct. Frame.document.getElementByID("amount").value:=TSize CheckTSize:=Frame.document.getElementById("amount").value msgbox the current value in t...
by Philbot44
08 Jul 2016, 09:59
Forum: Ask for Help (v1)
Topic: Works on Win 8.1 but fails on IE11
Replies: 2
Views: 1046

Re: Works on Win 8.1 but fails on IE11

only just managed to try it and your code now works on 8.1 and 11 so I presume will be good for win 9 and 10 too. . it does sometimes throw an error saying a system shutdown has already been scheduled but it seems there is stuff about that on the web so I take a look there.
Thanks again
by Philbot44
05 Jul 2016, 18:24
Forum: Ask for Help (v1)
Topic: Works on Win 8.1 but fails on IE11
Replies: 2
Views: 1046

Works on Win 8.1 but fails on IE11

I have script that is working perfectly fine on IE 8.1 but when we try use it on IE11 we get the errors below which is pointed at my frame code. member not found -specifically frames followed by no valid com object, do I need to change something when using it on different IE browsers or is there a p...
by Philbot44
05 Jul 2016, 16:38
Forum: Ask for Help (v1)
Topic: How to check if Com Object Already Exists
Replies: 3
Views: 1756

Re: How to check if Com Object Already Exists

Thank you ameyrick that was really helpful and has done the trick

Go to advanced search