00:00
00:00
Newgrounds Background Image Theme

Kurmudgen just joined the crew!

We need you on the team, too.

Support Newgrounds and get tons of perks for just $2.99!

Create a Free Account and then..

Become a Supporter!

Rightclick Menu Rollout?

731 Views | 4 Replies
New Topic Respond to this Topic

Rightclick Menu Rollout? 2005-05-18 03:47:13


On the standard Flash Player menu there is a rollout option for Quality with the options of High, Medium and Low. After playing about with the contextMenu and checking the reference in Flash (as well as the net and forums), I can't work out a way to duplicate the same type of effect for my own custom right click menu, instead I'm limited to having a long list of options on the menu.

Considering I want to really play up the use of the context menu to control the entire movie in a future piece, I have about thirty or so options to put in, and it needs organising in rollouts or the presentation will fail.

Anyone feel like enlightening me?


...

BBS Signature

Response to Rightclick Menu Rollout? 2005-05-18 03:52:09


that depends on what script your using for changing the dropdown menu.
enlighten me


========|| WWWWWWWW>[-[Blog] - [Audio] - [Userpage] - [Flash] - [Last.fm]-]<WWWWWWWW ||========

BBS Signature

Response to Rightclick Menu Rollout? 2005-05-18 04:00:12


For arguments sake, let's assume I'm using the one given by Flash as it's example in the Reference section under the ContextMenu heading, with the hideBuiltInItems() function implemented, as thus:

var my_cm:ContextMenu = new ContextMenu();
my_cm.hideBuiltInItems();
my_cm.builtInItems.quality = true;
my_cm.customItems.push(new ContextMenuItem("Start", startHandler));
my_cm.customItems.push(new ContextMenuItem("Stop", stopHandler));
function stopHandler(obj, item) {
trace("Stopping...");
}
function startHandler(obj, item) {
trace("Starting...");
}
this.menu = my_cm;

How would I put Stat and Stop into the same rollout?


...

BBS Signature

Response to Rightclick Menu Rollout? 2005-05-19 11:05:48


Okay. Bumping this because there is still no solution forthcoming either from the net, my Flash Books, and this is on the fifth page.


...

BBS Signature

Response to Rightclick Menu Rollout? 2005-05-20 18:06:30


Final time I'll ask and bump, I guess, before I write the problem off.


...

BBS Signature