Download
(7Kb)
Download
Updated: 02-05-15 01:45 AM
Patch for:
Click Menu.
Compatibility:
Warlords of Draenor (6.0.3)
Updated:02-05-15 01:45 AM
Created:01-23-15 12:48 AM
Downloads:996
Favorites:0
MD5:

Click Menu Beta

Version: 2.6.b1.4
by: 10leej [More]

Beta upload for Click Menu because I refuse to link to external websites.

Don't use if you don't like errors or potentially non working products.

This release:
New config options!
  • One allows you to make a button and not have to rely on the minimap integration (for carbonite, sexymap users)
  • set the location of the new button
  • more options to change how button looks in the future
Feel free to fix it if it's broke. I have no way of loading the game (again satellite internet sucks) hence why this addon is under a free license.

2.6.b1.4
fancy button mode, mad a more sensible config table (for me at least) add config how to

2.6.b1.3
screw carbonite! I made a button option that creates a button called "Menu"

2.6.b1.2
Corrected my load check for carbonite. Forgot we need to track ADDON_LOADED
2.6.b1
Add carbonite support using quick and dirty "is there a frame called this" method
Post A Reply Comment Options
Unread 02-06-15, 11:24 AM  
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view AddOns

Forum posts: 583
File comments: 438
Uploads: 22
Originally Posted by jeffy162
Thank you. That's kinda what I figured would move it.

There's some other stuff I've got to do to the button, but I'll try to figure that out on my own (if I can). I've just got to do it to make it fit with my UI and the way I've made it look. Picky, picky, picky - I know. I guess that's what happens when you get older.
no worries. I've been wanting to figuring out getting an in game config done, but I just never got around to figuring it out.
__________________
Tweets YouTube Website
Report comment to moderator  
Reply With Quote
Unread 02-06-15, 11:19 AM  
jeffy162
A Pyroguard Emberseer
 
jeffy162's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2364
File comments: 116
Uploads: 11
Thank you. That's kinda what I figured would move it.

There's some other stuff I've got to do to the button, but I'll try to figure that out on my own (if I can). I've just got to do it to make it fit with my UI and the way I've made it look. Picky, picky, picky - I know. I guess that's what happens when you get older.
__________________
Ahhhh, the vagueries of the aging mind. Wait.... What was I saying?

[SIGPIC][/SIGPIC]
Carbonite <----- GitHub main module (Maps ONLY) download link. The other modules are also available on GitHub.
Carbonite-CLASSIC<----- GitHub link to Carbonite Classic. Thanks to ircdirk for this!
Last edited by jeffy162 : 02-06-15 at 11:22 AM.
Report comment to moderator  
Reply With Quote
Unread 02-06-15, 12:39 AM  
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view AddOns

Forum posts: 583
File comments: 438
Uploads: 22
Originally Posted by jeffy162
GREAT! A button for Click Menu. I like it. You don't have to worry about how to integrate your addon with Carbonite now.

The only thing is........ You can't move the button. It's in the middle of your screen. I tried the "shift",
"ctrl", and "alt" keys, along with both right and left click, and all it does is open the mini-menu (or whatever). I use "AI-Art' so it looks neat, but I'd like to move it out of the center of my screen. I'm guessing you have to change the Lua code to move the button, but I looked at it and cannot figure it out. It's not complicated, or anything like that, I just cannot figure it out. Old, big, dumbee. That's me, I guess.
in core.lua at the top (because I forgot to leave comments.....)

Lua Code:
  1. cfg = {
  2.   MouseButton = 'RightButton', --LeftButton, RightButton, MiddleButton --Only affects minimap integration
  3.  
  4.   use_Minimap = false, --disabling this forces Click Menu to make a button
  5.   button = {
  6.     location = { "CENTER", UIParent, "CENTER", 0, 0 },
  7.     blizzard_theme = false,
  8.     color = {
  9.       normal = { 0, 0, 0, 0.5 },
  10.       hover = { 0.1, 0.1, 0.1, 0.5 },
  11.       pushed = { 0, 0, 0, 1 },
  12.     },
  13.   },
  14. }

On "location" edit the values you can mostly ignore "CENTER", UIParent, "CENTER" is you want to be really basic about it and just edit the two 0's.

for 0 is X horizontal second is verticle.

Though I think I might play around with some form of in game config

Also I call the menu the "Click Menu"
__________________
Tweets YouTube Website
Last edited by 10leej : 02-06-15 at 12:40 AM.
Report comment to moderator  
Reply With Quote
Unread 02-05-15, 07:12 PM  
jeffy162
A Pyroguard Emberseer
 
jeffy162's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2364
File comments: 116
Uploads: 11
GREAT! A button for Click Menu. I like it. You don't have to worry about how to integrate your addon with Carbonite now.

The only thing is........ You can't move the button. It's in the middle of your screen. I tried the "shift",
"ctrl", and "alt" keys, along with both right and left click, and all it does is open the mini-menu (or whatever). I use "AI-Art' so it looks neat, but I'd like to move it out of the center of my screen. I'm guessing you have to change the Lua code to move the button, but I looked at it and cannot figure it out. It's not complicated, or anything like that, I just cannot figure it out. Old, big, dumbee. That's me, I guess.
__________________
Ahhhh, the vagueries of the aging mind. Wait.... What was I saying?

[SIGPIC][/SIGPIC]
Carbonite <----- GitHub main module (Maps ONLY) download link. The other modules are also available on GitHub.
Carbonite-CLASSIC<----- GitHub link to Carbonite Classic. Thanks to ircdirk for this!
Last edited by jeffy162 : 02-05-15 at 07:14 PM.
Report comment to moderator  
Reply With Quote
Unread 02-03-15, 01:02 AM  
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view AddOns

Forum posts: 583
File comments: 438
Uploads: 22
after taking my time in testing and now that I actually have the ability to load the game. It seems carbonite is doing quite a bit with click interaction. there's really no great way to implement a proper bit of integration without modifying carbonite in some way so...

How does everyone feel about a button then?

__________________
Tweets YouTube Website
Last edited by 10leej : 02-03-15 at 01:18 AM.
Report comment to moderator  
Reply With Quote
Unread 01-27-15, 12:05 PM  
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view AddOns

Forum posts: 583
File comments: 438
Uploads: 22
Originally Posted by jeffy162
Sorry for the late answer, but my game had to be re-installed today. Finally got around to playing a bit, and I can tell you that the Beta Click Menu still doesn't work. No errors, it just doesn't do anything (with Carbonite installed and the maps merged). Sorry.
Means I got the wrong frame then. Yay guessing game are fun
__________________
Tweets YouTube Website
Report comment to moderator  
Reply With Quote
Unread 01-26-15, 09:57 PM  
jeffy162
A Pyroguard Emberseer
 
jeffy162's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2364
File comments: 116
Uploads: 11
Sorry for the late answer, but my game had to be re-installed today. Finally got around to playing a bit, and I can tell you that the Beta Click Menu still doesn't work. No errors, it just doesn't do anything (with Carbonite installed and the maps merged). Sorry.
__________________
Ahhhh, the vagueries of the aging mind. Wait.... What was I saying?

[SIGPIC][/SIGPIC]
Carbonite <----- GitHub main module (Maps ONLY) download link. The other modules are also available on GitHub.
Carbonite-CLASSIC<----- GitHub link to Carbonite Classic. Thanks to ircdirk for this!
Report comment to moderator  
Reply With Quote
Unread 01-24-15, 12:50 AM  
10leej
A Molten Giant
 
10leej's Avatar
AddOn Author - Click to view AddOns

Forum posts: 583
File comments: 438
Uploads: 22
Yep called it stupidly forgot we need to track the ADDON_LOADED event before we call a script to interact with something.
__________________
Tweets YouTube Website
Report comment to moderator  
Reply With Quote
Unread 01-23-15, 11:20 AM  
jeffy162
A Pyroguard Emberseer
 
jeffy162's Avatar
AddOn Author - Click to view AddOns

Forum posts: 2364
File comments: 116
Uploads: 11
Tested. Doesn't work. Get an error, too.
Code:
	["message"] = "Interface\\AddOns\\Click Menu\\core.lua:198: attempt to call global 'IsAddonLoaded' (a nil value)",
			["time"] = "2015/01/23 09:34:00",
			["locals"] = "",
			["stack"] = "Interface\\AddOns\\Click Menu\\core.lua:198: in main chunk",
			["session"] = 1455,
			["counter"] = 1,
__________________
Ahhhh, the vagueries of the aging mind. Wait.... What was I saying?

[SIGPIC][/SIGPIC]
Carbonite <----- GitHub main module (Maps ONLY) download link. The other modules are also available on GitHub.
Carbonite-CLASSIC<----- GitHub link to Carbonite Classic. Thanks to ircdirk for this!
Report comment to moderator  
Reply With Quote
Post A Reply



Category Jump: