Jump to content

Invoke a right click menu?


Recommended Posts

call("rightclick")

func rightclick

send( right click )

end func

think that should do it :) ..

though someone better will probially have a better way :)

Budweiser + room = warm beerwarm beer + fridge = too long!warm beer + CO2 fire extinguisher = Perfect![quote]Protect the easly offended ... BAN EVERYTHING[/quote]^^ hmm works for me :D

Link to comment
Share on other sites

On the 'func rightclick' line, I get an error saying that there is a missing seperator character after the keyword o.O

It's a pointing example (a wrong pointing actualy), not working one.

Look in the help file for «Language Reference -> Functions».

And why you don't want to right click? Just use MouseClick("Secondary").

Edited by MrCreatoR

 

Spoiler

Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1

AutoIt_Rus_Community.png AutoIt Russian Community

My Work...

Spoiler

AutoIt_Icon_small.pngProjects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize Program

AutoIt_Icon_small.pngUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF
 
AutoIt_Icon_small.pngExamples: 
ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo

Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating AutoIt_Rating.gif)

* === My topics === *

==================================================
My_Userbar.gif
==================================================

 

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Link to comment
Share on other sites

ok .. i opned scite and had a play

and this is it..

;Put this at the top of your script for it to be a global hotkey set to a certian key/combination
HotKeySet(" ****Put your key in here **** ", "rightclick")

;OR put this if you want it to happen at a certian instance within the script
call("rightclick"

; then put this at the bottom or near the bottom (to keep the script tidy)
func rightclick()
    MouseClick("right")
endfunc

// edit..

:) yup. its better to get pointers and work with them to findout the right answer than to directly ask for the script :)

though some situations does ask for exact scripts "sometimes"

Edited by Thornhunt

Budweiser + room = warm beerwarm beer + fridge = too long!warm beer + CO2 fire extinguisher = Perfect![quote]Protect the easly offended ... BAN EVERYTHING[/quote]^^ hmm works for me :D

Link to comment
Share on other sites

Hm. New error popped up, but I don't quite know what it means, so I'll just explain my little project. I'm trying to create a type of kickbot for a chat program I use. In order to 'Kick' a user, one has to right click on their name, and click a button saying 'Kick'.

Here is what I have so far:

CODE
HotKeySet("{ESC}", "Terminate")

$sum = 0

$ans = InputBox("the current amount of kicks is " & $sum, _

"Please enter the amount of people you would like to kick" & $sum )

$sum = $sum + $ans

MsgBox(0,"number of kicks","number of kicks set to " & $sum)

$i = 0

winwaitactive("(Name of Window)")

sleep(1000)

Do

call("rightclick")

send ( "DOWN" [, 1])

send ( "DOWN" [, 1])

send ( "DOWN" [, 1])

send ( "DOWN" [, 1])

send ( "ENTER" [, 1])

send ( "DOWN" [, 1])

$i = $i + 1

Until $i = $sum

msgbox(0,"Palringo kick bot","done")

func rightclick()

MouseClick("right")

endfunc

Func Terminate()

Exit 0

EndFunc

I get an issue on those series of send downs.

Do y'all know how I could fix this? Or is there a way to make it more efficiant?

Edited by Synergetic
Link to comment
Share on other sites

I get an issue on those series of send downs.

Where from you got the info about this:

send ( "DOWN" [, 1])

What it's supose to be? Help file is your friend today :)

P.S

And you don't need the function call, just use MouseClick instead.

Edited by MrCreatoR

 

Spoiler

Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1

AutoIt_Rus_Community.png AutoIt Russian Community

My Work...

Spoiler

AutoIt_Icon_small.pngProjects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize Program

AutoIt_Icon_small.pngUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF
 
AutoIt_Icon_small.pngExamples: 
ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo

Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating AutoIt_Rating.gif)

* === My topics === *

==================================================
My_Userbar.gif
==================================================

 

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Link to comment
Share on other sites

Ah. I was confused with the way that the help file explained those flags. Could I safely assume that it is going to be a 0?

//Edit, Ah, I guess not :) *starts reading help file in hopes of finding some magical answer*

Edited by Synergetic
Link to comment
Share on other sites

Ah. I was confused with the way that the help file explained those flags. Could I safely assume that it is going to be a 0?

//Edit, Ah, I guess not :) *starts reading help file in hopes of finding some magical answer*

if you get confused with something within the helpfile.. take a breath. reread the page (try not to miss anything). then follow the example at the bottom (if theres is one)

it helps to clear up and understand things better. then if it still confuses

run a forum search on the topic :)

just a little tip

hope this helps in the future

Budweiser + room = warm beerwarm beer + fridge = too long!warm beer + CO2 fire extinguisher = Perfect![quote]Protect the easly offended ... BAN EVERYTHING[/quote]^^ hmm works for me :D

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...