It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
How can I simulate a mouse click / key press in C++? When I run the program I want it to click the left mouse and press "A". Thanks!
(I'm making this program for MacOSX)
I don't do any programming for OSX but I think this is what you are looking for:
https://developer.apple.com/library/mac/#documentation/Carbon/Reference/QuartzEventServicesRef/Reference/reference.html
In particular CGEventPost
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to monitor a process in windows to check what actions it performs on a particular file including renaming it, or encrypt it. I want to generate events for these actions.
its easier to monitor the file than the process. Take a look at FileSystemWatcher class. http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
can anyone tell me how can i build console based menu in which i can navigate by direction keys to select options. Code should be in bash or shell script.
Look at pdmenu. It is pretty simple to use.
Or in case you need go deeper there is whiptail tool. It also allow you to build dialog box and so on. But it is a little bit harder to use comparing to pdmenu.
What about the dialog command?
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm planning to do a handwriting recognition application for WP7 in next graduating report. The only time its left more than a month not enought to study from the beginning. I plan to use SVM, but also don't know much about it. If some one has done this, please guide me. Thank you so much !
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Right, I don't know what just happened, the output screen's not showing on my XCode.
Select the 2nd option in the Upper Right Corner which reads as View and ur done:)
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to give to users my app an options that they can lock/disable orientation screen.
How can I do that?
You cannot prevent the rotation. But you can try use this:
http://pagerotationwp.codeplex.com/
see also
http://answers.microsoft.com/en-us/winphone/forum/wp7-wptips/auto-rotate-of-the-screen/d61a7b68-6941-41f9-a4f3-375e25669032?msgId=2ace87af-b04f-405e-b949-f85f861af740
Regards