NaN:NaN
NaN:NaN
--:-- / --:--
Newgrounds Background Image Theme

Vikingtothemax 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?

743 Views | 4 Replies
New Topic Respond to this Topic

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? May 18, 2005


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? May 18, 2005


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? May 19, 2005


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? May 20, 2005


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


...

BBS Signature