Search found 201 matches
- 08 May 2018, 16:42
- Forum: Ask For Help
- Topic: Delete PDF Pages through Adobe COM
- Replies: 16
- Views: 2781
Re: Delete PDF Pages through Adobe COM
FanaticGuru, Here is what I ended up with and it works quite well! Thanks for all your help. #SingleInstance,Force Gui, Font, s14 underline, Calibri Gui, Add, text, x10, Target File Gui, Font, s8 Normal, Gui, Add, edit, Disabled x10 y35 h25 w400 vFilePath, Select a File.. Gui, add, button, x410 y33 ...
- 03 May 2018, 17:59
- Forum: Ask For Help
- Topic: Delete PDF Pages through Adobe COM
- Replies: 16
- Views: 2781
Re: Delete PDF Pages through Adobe COM
FanaticGuru, thanks for all your help! I've made great progress. I've incorporated the methods you have provided and had success. If you are attempting to integrate this into your own script, you might post your code to see if you are doing something unexpected... FG My goal is to create more than ...
- 02 May 2018, 08:46
- Forum: Ask For Help
- Topic: Delete PDF Pages through Adobe COM
- Replies: 16
- Views: 2781
Re: Delete PDF Pages through Adobe COM
Wonderful, FanaticGuru! This works well. The only issue I have encountered is after this has been executed, Adobe crashes when I try and close the window manually. Any ideas? Thanks!!!
- 01 May 2018, 19:11
- Forum: Ask For Help
- Topic: Loggin in/out code help
- Replies: 5
- Views: 1076
Re: Help
mohamedmaghrabi, give this code a try. If I am understanding correctly, you are wanting to log out once the image search finds the button. Here's a more programmatic, and hopefully reliable way to do it. If anyone else knows a better idea, 'beam me up, scotty!' Let me know how this works for you. ;U...
- 01 May 2018, 18:16
- Forum: Ask For Help
- Topic: Loggin in/out code help
- Replies: 5
- Views: 1076
Re: Help
I hope that login is fake, please edit immediately! P.S. i'm testing out code for response to this.
mohamedmaghrabi wrote: pwb.document.GetElementsByName("username")[0].Value :="xxxxxx"
pwb.document.GetElementsByName("password")[0].Value :="xxxxxxx"
pwb.document.GetElementsByName("login")[0].click()
- 01 May 2018, 17:41
- Forum: Ask For Help
- Topic: Loggin in/out code help
- Replies: 5
- Views: 1076
Re: Help
mohamedmaghrabi, This might help your ImageSearch method work - add it to the top of the script. CoordMode, Pixel, Relative And or.. add this after you click login. pwb.document.GetElementsByName("login")[0].click() while pwb.busy or pwb.ReadyState != 4 ;Wait for page to load Sleep, 100 -- Other ide...
- 01 May 2018, 17:26
- Forum: Ask For Help
- Topic: Delete PDF Pages through Adobe COM
- Replies: 16
- Views: 2781
Delete PDF Pages through Adobe COM
Hi all, i'm trying to delete pages from a PDF via COM with Adobe. I think i've got the right idea below but having trouble with just one line. Specifically the one that would delete the pages. I found PPDocDeletePages details here: https://help.adobe.com/livedocs/acrobat_sdk/11/Acrobat11_HTMLHelp/AP...
- 01 May 2018, 17:16
- Forum: Ask For Help
- Topic: Open Outlook & Send Email Using COM Topic is solved
- Replies: 9
- Views: 4469
Re: Open Outlook & Send Email Using COM Topic is solved
PoorInRichfield, as a guess, try putting this line in after you create your object. ;Untested, don't have outlook setup on this machine outlookApp.visible := true also, this may be more efficient If !ErrorLevel { Run outlook.exe WinWaitExist, OutlookTitleName } Hope this helps! ;) Vh
- 17 Apr 2018, 22:42
- Forum: Wish List
- Topic: PIXELSEARCH - Find NOT color
- Replies: 2
- Views: 1377
Re: PIXELSEARCH - Find NOT color
joefiesta,
This is really just a quick 'poof'.. but how about using..
This is really just a quick 'poof'.. but how about using..
Code: Select all
PixelSearch, color, bla bla code
If Error X
Do Y
Else
Do A
- 17 Apr 2018, 21:47
- Forum: Ask For Help
- Topic: AHK to EXE Icon distortion
- Replies: 0
- Views: 294
AHK to EXE Icon distortion
Hi, I made an icon with transparent background and after I converted an .AHK to .EXE there are distortions to the icon. Does anyone know why this is? Is it because of the size? It's a 128x128 .ico file - See the the screenshot here: https://gyazo.com/c56933780bdfa82f2694e8f927dd3d3b EDIT: I think th...
- 06 Sep 2017, 19:25
- Forum: Ask For Help
- Topic: Easy Question about Windows Topic is solved
- Replies: 7
- Views: 1310
Re: Easy Question about Windows Topic is solved
and even easier just right click your task bar and choose cascade windows.
- 06 Sep 2017, 17:24
- Forum: Ask For Help
- Topic: Help with IE COM and button tag
- Replies: 2
- Views: 583
Re: Help with IE COM and button tag
I didnt test this of course, but the click should be something like this.
buttons.document.getElementsByClassName("toa-button toa-view-control-button-filter toa-layout-left-separator").click()
- 03 Sep 2017, 13:31
- Forum: Ask For Help
- Topic: Possibility to display all input areas on the screen and quickly jump to any?
- Replies: 1
- Views: 530
Re: Possibility to display all input areas on the screen and quickly jump to any?
If you know all the input areas, try splashtext and then assigning a key to focus in those or move the mouse to those coordinates.
- 03 Sep 2017, 12:57
- Forum: Ask For Help
- Topic: Tiling notepad.exe
- Replies: 4
- Views: 929
Re: Tiling notepad.exe
Right click your task bar and choose "windows side by side", Viola.. 

- 02 Sep 2017, 21:58
- Forum: Ask For Help
- Topic: Click all "Thank You" Buttons in a Forum-Thread.. Topic is solved
- Replies: 1
- Views: 574
Re: Click all "Thank You" Buttons in a Forum-Thread.. Topic is solved
Is thank you text only? if you can provide an example that helps too.
- 02 Sep 2017, 21:56
- Forum: Ask For Help
- Topic: IE Load not working in Internet explorer 11.
- Replies: 6
- Views: 2764
Re: IE Load not working in Internet explorer 11.
Try this. pwb := WBGet() pwb.Navigate("https://brightree.net/frmLogin.aspx?") ;Navigate to URL while pwb.busy or pwb.ReadyState != 4 ;Wait for page to load Sleep, 100 msgbox, the page has now loaded. ;************Pointer to Open IE Window****************** WBGet(WinTitle="ahk_class IEFrame", Svr#=1)...
- 25 Aug 2017, 09:52
- Forum: Ask For Help
- Topic: IE COM - trouble with "ng-touched" input field
- Replies: 1
- Views: 511
Re: IE COM - trouble with "ng-touched" input field
This is an angular event from what I can tell. Does anyone know more about this?
https://www.w3schools.com/angular/ng_input.asp
https://www.w3schools.com/angular/ng_input.asp
- 23 Aug 2017, 08:53
- Forum: Ask For Help
- Topic: IE COM - trouble with "ng-touched" input field
- Replies: 1
- Views: 511
IE COM - trouble with "ng-touched" input field
Good morning, I'm having trouble getting a field to recognize the value i'm setting. It's a user name input box on a web page. I'm setting the value then clicking login, it says I must enter a username. So the text is not registering. after a little searching it requires a "touched" event to accept ...
- 19 Aug 2017, 16:42
- Forum: Announcements
- Topic: [closed][POLL] Commissions sub-forum
- Replies: 107
- Views: 41912
Re: [POLL] Commissions sub-forum
+1!
I think it'd be great to have a section for that. Then those willing to pay may get the request done faster, as those wanting to earn will check that sub forum more often.
I think it'd be great to have a section for that. Then those willing to pay may get the request done faster, as those wanting to earn will check that sub forum more often.
- 19 Aug 2017, 16:30
- Forum: Ask For Help
- Topic: I need help modifying a clipboard script
- Replies: 3
- Views: 705
Re: I need help modifying a clipboard script
Read up on ControlGetText. 
