Search found 100 matches

by ocnuybear
Mon Jul 30, 2018 9:18 am
Forum: Enhancement Suggestions
Topic: Possible to create Chrome Support Extension?
Replies: 1
Views: 14340

Possible to create Chrome Support Extension?

Currently controlling Chrome is limited and even using image recognition fails sometimes like when your mouse moves over a button or element, the image changes.
by ocnuybear
Sat Jul 28, 2018 11:41 am
Forum: Scripts and Tips
Topic: Find Location of recorded Screenshot & Draw a Flashing Rectangle around it
Replies: 1
Views: 5148

Find Location of recorded Screenshot & Draw a Flashing Rectangle around it

I hope this script will be useful to someone that needs to identify an area that was found and will highlight it with a flashing rectangle. Dialog>Dialog1 object Dialog1: TForm BorderStyle = bsNone DefaultMonitor = dmDesktop end EndDialog>Dialog1 Dialog>Dialog2 object Dialog2: TForm BorderStyle = bs...
by ocnuybear
Thu Jul 26, 2018 6:19 pm
Forum: Beginners
Topic: Please assist creating & using a basic DLL to pass data to/from MS
Replies: 3
Views: 3206

Re: Please assist creating & using a basic DLL to pass data to/from MS

I'm still new to programming, and is learning about the differences between managed & unmanaged DLL's.

What other program languages do you perhaps know of which except Python can also create native unmanaged DLL's?

Thank you Marcus
by ocnuybear
Thu Jul 26, 2018 9:56 am
Forum: Beginners
Topic: Please assist creating & using a basic DLL to pass data to/from MS
Replies: 3
Views: 3206

Please assist creating & using a basic DLL to pass data to/from MS

I would like to start creating my own DLL in C# or VB.net. Using example code in Visual Studio: Module Module1 Function Test(a As Integer) As Integer Test = a * 10 End Function End Module To be compiled into a DLL, called by MS sending an integer to it and getting the answer integer back into MS. Ca...
by ocnuybear
Wed Jul 25, 2018 10:43 am
Forum: Enhancement Suggestions
Topic: More MS Native Excel Sheet Options please?
Replies: 0
Views: 8336

More MS Native Excel Sheet Options please?

I'm fully aware you can use Vb-script to manipulate Excel, but I believe that MS needs at least the basic option to select a sheet by name or hide/unhide it.

Is it possible to add?
by ocnuybear
Tue Jul 24, 2018 1:20 pm
Forum: Beginners
Topic: [Solved] Getting Access violation with AddTrayIcon
Replies: 26
Views: 14204

Re: [Solved] Getting Access violation with AddTrayIcon

Update: I noticed the app was running at about 3% in Win Task manager and replaced the WaitWindowOpen with IfWindowOpen with a delay of 100ms and it's resource usage went below 1%: Let>z=0 Let>x=0 AddTrayIcon>C:\Users\John\Documents\Macro Scheduler 14\scan.ico,ClickOutlook,x AddTrayHandler>ClickOutl...
by ocnuybear
Tue Jul 24, 2018 12:10 pm
Forum: Beginners
Topic: Click on the web form textbox or button with ID or Class
Replies: 6
Views: 9811

Re: Click on the web form textbox or button with ID or Class

The closest that I got to automate Chrome would be to use shortcut keys with the following code: GetWindowHandle> - Google Chrome*,hWndParent SetFocus> - Google Chrome* FindObject>hWndParent,Chrome_RenderWidgetHostHWND,,1,hWnd,X1,Y1,X2,Y2,result ObjectSendKeys>hWnd,VK75 Which works great to send "k"...
by ocnuybear
Tue Jul 24, 2018 11:48 am
Forum: Beginners
Topic: [Solved] How do I send keys to VLC in the background?
Replies: 4
Views: 4052

Re: How do I send keys to VLC in the background?

OK I finally figured it out - I need to use just the string "QWidget" like below: GetWindowHandle> - VLC media player*,hWndParent FindObject>hWndParent,QWidget,,1,hWnd,X1,Y1,X2,Y2,result ObjectSendKeys>hWnd,VK32,VK27 And it will send whatever key you put in. I'm learning a lot here. Thank you Marcus...
by ocnuybear
Tue Jul 24, 2018 10:48 am
Forum: Beginners
Topic: [Solved] How do I send keys to VLC in the background?
Replies: 4
Views: 4052

Re: How do I send keys to VLC in the background?

Hi Marcus, I suppose the keys should go to the main window. I'm not sure about the "VLC video output 00000000034360A0" value - it needs to be updated to correct value. If I use Find ObjectWizard, it just gives me "Window: 10752 [QWidget]" when dragging the plus to VLC window - it is the same everywh...
by ocnuybear
Mon Jul 23, 2018 1:17 pm
Forum: Beginners
Topic: [Solved] How do I send keys to VLC in the background?
Replies: 4
Views: 4052

Re: How do I send keys to VLC in the background?

Using a Autohotkey Script can do this:

Code: Select all

settitlematchmode,2
escape::
controlsend,,{Escape down}{Escape up}, VLC
return
Like to do the same/similar in MS Please?
by ocnuybear
Mon Jul 23, 2018 12:57 pm
Forum: Beginners
Topic: [Solved] How do I send keys to VLC in the background?
Replies: 4
Views: 4052

[Solved] How do I send keys to VLC in the background?

Trying to use SendKeystoObjectWizard does not work to insert code needed.

I need to send Space bar & Escape to it.

Code: Select all

GetWindowHandle> - VLC media player,hWndParent
FindObject>hWndParent,VLC video output 00000000034360A0,,1,hWnd,X1,Y1,X2,Y2,result
SetFocus> - VLC media player
CapsOff
Send>

by ocnuybear
Mon Jul 23, 2018 9:20 am
Forum: Beginners
Topic: Click on the web form textbox or button with ID or Class
Replies: 6
Views: 9811

Re: Click on the web form textbox or button with ID or Class

Hi Marcus,

I'm also trying to work with Chrome, trying to send Space or k yo play pause youtube video, but it is not working, also tried to send a mouse left click, but it is not working.

Can you please elaborate on "user-level" programming?
by ocnuybear
Sat Jul 21, 2018 1:57 pm
Forum: Beginners
Topic: [Solved] Getting Access violation with AddTrayIcon
Replies: 26
Views: 14204

Re: Getting Access violation with AddTrayIcon

Got it working 100% now as required: Let>z=0 AddTrayIcon>C:\Users\John\Documents\Macro Scheduler 14\scan.ico,ClickOutlook,z AddTrayHandler>ClickOutlook,OnClick,DoPopup While>z<1000 WaitWindowOpen>Security Alert //Clicks on annoying Outlook Security Alerts & counts them UIClick>{"Security Alert"},{"Y...
by ocnuybear
Fri Jul 20, 2018 10:27 am
Forum: Beginners
Topic: [Solved] Getting Access violation with AddTrayIcon
Replies: 26
Views: 14204

Re: Getting Access violation with AddTrayIcon

My apologies for that misunderstanding.
by ocnuybear
Fri Jul 20, 2018 10:13 am
Forum: Beginners
Topic: [Solved] Getting Access violation with AddTrayIcon
Replies: 26
Views: 14204

Re: Getting Access violation with AddTrayIcon

Hi Marcus, The screenshots is not working, but I will explain again: When inside a project & Code Builders Tab is activated, under Miscellaneous when left clicking on KillProcess, it gives a new Code Bulder Window with Command reference, Insert & Cancel buttons. Now close that window and back to Cod...
Sign up to our newsletter for free automation tips, tricks & discounts