how to perform automatic button click? [closed] - buttonclick

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
Is there any idea on how to create a program (in any programming language) that clicks on a given button of a software that has buttons to be clicked ?
The software in question is programmed by a third party (I have not its code source).

The easiest way is to use AutoHotKey. Look an example on this page.
More complicated way is to use WinAPI. You can get a handle of interest window. Then you need to get handle to interest button on this window. Then you would send WM_CLICK message to them. Like that:
HWND window, button;
window= FindWindow("Caption of interest window",NULL);
button= FindWindowEx(window,0,"Button",NULL);
PostMessage(button,WM_CLICK,0,0);

Related

Filter works in Spark AR simulator, but not in app? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
So basically when I build and test in the simulator, it works fine. This includes the simulator for phone and the one in the program. However, when I create an instagram link it doesn't work at all, doesn't even say the name of the filter at the top when selected. What should I do? It used to work.
Does your filter include segmentation?
This may be it as Instagram's segmentation is not supported in majority of devices

How can I make a program to operate another program? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
So what I'm wanting to do is pretty lame. Anyway, what I'm wanting to do is basically make a bot that will do some specified tasks for me.
I have an emulator on my laptop that when open, operates like an Android phone, and I'm using Snapchat on it. What I have been trying to do is make it send my 'streaks' on Snapchat a picture everyday at specified times. I have tried using a Macro Recorder to do this, but the loading time varies.
My questions are:
1) What programming language should I use for this?
2) What would be the best application to use? (Like Notepad, or some other application)
Any help is appreciated :)
Have you heard of autohotkey (AHK)? It's a macro app, but also a very powerful programming language. Entire apps have been written in it.
You can also use it to control other programs.
reference:
http://ahkscript.org/

Assign keyboard keys by script to launch a particular program [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
I know how to assign hot keys to a task manually
system settings > keyboard > shortcuts
but I want to write a script to do that for me.
Thanks
Okay. There was no default way of setting keyboard but I found a program "xbindkeys". Its lets you use script to set keys to run a command. Here's a link https://wiki.archlinux.org/index.php/Xbindkeys

This edit resolves the original close reason and the question should be considered for reopening [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
This edit resolves the original close reason and the question should be considered for reopening.
To be honest, just do it, you don't have to "look" for anything just make apps, make better and better apps, start with a simple MySql login app, then manipulate data from database make a forms app that displays something, make a simple text editor etc etc and put it on Github, so you can show it on a interview simple as that.
Good luck!

Annoying Facebook popup (?) in browsers for a particular site [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I do not know what to call these elements. Please see the attached image.
Every time I open a particular site (http://www.bdnews24.com/bangla/), this window appears at lower left. This is irrespective of Firefox or Chromium browser. Blocking popups did not help.
I can close this pest by clicking on the cross, but it will appear again in about five minutes. This a news site and it will refresh itself after a particular time. Since I read news regularly from this site, this auto refresh is a necessary feature for me.
Please tell me how do I stop these popups.
Thanks in advance.
Try http://adblockplus.org/en/. It will not stop the popup, but it will stop the content within the popup.

Resources