AutoHotkey Community

It is currently May 25th, 2012, 9:55 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 6 posts ] 
Author Message
PostPosted: June 28th, 2007, 11:10 am 
Offline

Joined: June 28th, 2007, 10:15 am
Posts: 2
ImageHello dear boyz and gilrz (maybe)!!!

My name is Sim or as I recently understood SimBeSim (cause when I searched in Google word SimBeSim I got beautiful result of 0)

Anyway, first of all I want to appologize for being abit rude and pulling ur attention in this topic in a pretty unusal way. But yes I did that on purpose cause I exactly that and wanted, ur attention.

So sorry cause it does look very rude. Font-size alone is also quite rude
but it also does help your attention keep on highest level.

Second is of course needeed to say how great is the persoon who made AHK. And as soon as he or even she comes in this topic I certainly wil, only again just like this topic I will try to do it very originally.

Ok, the reason why I am speaking to you is because I was reading here and there and have a good feeling of persons who do things here. Esspesially is very romantic the fact that someone can easiely request somting and that gets done even.

Very hard to understand accually why would 1 do for other somtin for free?

But still monkeys do nothing for free, humans do though.

So what I have is someting what I am building of ahk and I already have found two blocks of code here on forum and now they only need to be joined.

And of course if not even 1 persoon wil want to help me I as ussual do it again myself just as I already do for many years and have never asked other how to do things.

Yes I do surf forums a lot in search of an answer 4 my own quistion asked earlier.

Still I dare to think that u help me and I help u.

Simply cause u too will be using that what I want to make. Only because it's very very simple so simple as Sim, Sim-simple.

Good so let's see what now happens.

Here is the code to be merged with other code. What I want is context menu everywhere good working and cascading (just like start botton) and also very important that menu shows up after a slight delay and not interfeers with existing menu.

code:

Code:
Menu, menu_context, Add, menu_context_ShowHello
Gui, Add, Edit, x5 y5 w400 h200, hybrid context menu
Gui, Add, Edit, x5 y210 w400 h200, default context menu
Gui, Show,, test window
WinGet, hw_test, ID, test window ahk_class AutoHotkeyGUI
WM_RBUTTONDOWN = 0x204
OnMessage( WM_RBUTTONDOWN, "HandleMessage" )
return
GuiClose:
ExitApp
HandleMessage( p_w, p_l, p_m, p_hw )
{
   Gosub, $RButton
}
timer_ShowCustomMenu:
   SetTimer, timer_ShowCustomMenu, off
   Menu, menu_context, Show
return
$RButton::
   MouseGetPos,,, wid, control
   if ( wid = hw_test and control = "Edit1" )
      SetTimer, timer_ShowCustomMenu, 200
   else
      Send, {RButton Down}
return
$RButton Up::
   SetTimer, timer_ShowCustomMenu, off
   MouseGetPos,,, wid, control
   if ( wid = hw_test and control = "Edit1" )
      Send, {RButton Down}{RButton Up}
   else
      Send, {RButton Up}
return
menu_context_ShowHello:
   MsgBox, Hello`, World!
return


and cascading effect code:

Code:
#Persistent
#SingleInstance, force
Gosub, TrayMenu
Gosub, CreateMenu
Hotkey, RButton, On
Return

RButton::
Menu, Menu1, Show
Return

Exit:
ExitApp
Return

Disable:
Hotkey, RButton, Off
Return

Enable:
Hotkey, RButton, On
Return

TrayMenu:
Menu, Tray, NoStandard
Menu, Tray, Add, Activate, Enable
Menu, Tray, Add, Exit, Exit
Menu, Tray, Default, Activate
Return
;Below are actions you can change
CreateMenu:
Menu, RunMenu, Add, Editor, RunEditor
Menu, RunMenu, Add, Explorer, RunExplorer
Menu, Menu1, Add, Run, :RunMenu
Menu, Menu1, Add, Switch between tasks, KeyAltTab
Menu, Menu1, Add, ,
Menu, Menu1, Add, Deactivate, Disable
Menu, Menu1, Add, ,
Menu, Menu1, Add, Exit, Exit
Return

RunEditor:
Run, Notepad.exe
Return

RunExplorer:
Run, Explorer.exe
Return

KeyAltTab:
Send, !{Tab}
Return

_________________
It's nice to be important
but
it's more important to be nice.


Last edited by SimBeSim on June 28th, 2007, 3:52 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 28th, 2007, 11:37 am 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Wrong forum.

Also, saying "I was impolite just to get your attention" does not excuse you any more than it excuses the spammers who fill my inboxes.

To get help, it is always best to be polite, and follow common netiquette and courtesy. Posting to the correct place after reading the pinned topic on how to correctly ask for help is definitely a good method.

Your above post, however, verges on spam.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 28th, 2007, 11:48 am 
Offline

Joined: June 28th, 2007, 10:15 am
Posts: 2
Dewi Morgan wrote:
Wrong forum.

Also, saying "I was impolite just to get your attention" does not excuse you any more than it excuses the spammers who fill my inboxes.

To get help, it is always best to be polite, and follow common netiquette and courtesy. Posting to the correct place after reading the pinned topic on how to correctly ask for help is definitely a good method.

Your above post, however, verges on spam.


Wow you are quite quick,

and you are absolutely right that it does not excuse me.

Though thast is exactly what I now can see or not see. And that is that you excuse me

or maybe not.

And of course you clearly and loud call this messege spam. So I can now good imagine that

someone who has rights to f.u.c.k spam now can also f.u.c.k this topic.

What u forgot to read is that it is u helping me BUT ALSO me helping u.

And how I will do that I can tell a little later.

_________________
It's nice to be important
but
it's more important to be nice.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2007, 11:43 am 
SimBeSim wrote:
Anyway, first of all I want to appologize for being abit rude and pulling ur attention in this topic in a pretty unusal way. But yes I did that on purpose cause I exactly that and wanted, ur attention.
Wrong, your font makes my eyes bleed, so I don't even want to read the remainder of the message. Edit your message to remove the font tags, change the title, bump up the topic and maybe we will try to help, whatever your problem is.


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2007, 2:12 pm 
Offline

Joined: January 31st, 2005, 9:50 am
Posts: 3910
Location: Bremen, Germany
Maybe you should take a look at Majikenators FavMenu script. Or his modul MMenu.

_________________
Ciao
toralf
Image


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 1st, 2007, 1:32 am 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Personally, I wouldn't help him even if he posted a correctly formatted and phrased request to the correct forum: the AHK community seems to be strongly anti-blackhat (keyloggers and MMORPG automators seem to be frowned upon), while for his project, he is actively asking for blackhat involvement and assistance on his site.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 6 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: KenC, Klark92 and 72 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group