Create Custom Links In Viewers Right Click Menu ?
May 21, 2009
Ive noticed a lot of flash websites have user defined items/links added to the default flash right click settings menu. In other words when we right click on such flash websites it shows links to the designers home page or associated site etc.
View 14 Replies
Similar Posts:
Dec 7, 2002
Anybody know how to create a custom context menu (right click menu) in Flash?
If it's not possible, wouldn't it be a good idea for Macromedia to put some kind of event or something in there?
View 11 Replies
Mar 10, 2009
I was wondering if there's any way to create a custom right click menu like in context menu(or similar) without the "Settings" and "About Adobe Flash.." etc... options?
View 1 Replies
Oct 8, 2009
i wanted to place some credits item in the right button menu (no links, so no events, just a label with credits). i was looking the contextmenu help, and there is an example of how to add items, disable default items and so on, but i could not find how to attach the menu to the movie (the basic part). i tried both on 'stage' and it tells me that stage does not have a property called contextMenu, so i tried to attach it to a sprite, it runs ok and compiles ok but when i right click on the sprite i get the default menu
var _menu_item:ContextMenuItem = new ContextMenuItem("here goes [code].....
how to add a right click menu with a custom item?
View 3 Replies
Apr 30, 2008
How do I have a custom right-click menu for my movie? I want it so when you right-click it'll say things like "My Site" that will link you to my site.
View 2 Replies
Feb 8, 2009
Basically I have lot of text fields that are rendered dynamically, and I want the user to be able to right click on one and edit it.
Is it good practise to use the right-click bring up custom menu on a sprite. And is the method guaranteed to work accross all browsers? Do mac mice have right mouse click buttons?
[URL]
And if not, what would be a good work around. Maybe bringing up a yahoo astra message box with the two options one for left mouse click, one for right click and edit text field?
View 2 Replies
Jan 12, 2009
I'm in the process of learning OOP and have run into a small problem. I'm trying to create a basic menu system where you can rollover and rollout of all links. When you select a link, it stays highlighted until you click another link.I've given the 5 links instance names like (link0, link1, link2, link3, link4) and given them each an ID of (0,1,2,3,4) - respectively. I used to be able to do something like this:
Code:
this.onRollOver = function(){
if(this.ID != _root.selectedLink){
this.gotoAndPlay('in');
}
[code]....
View 1 Replies
Dec 31, 2009
Just wondering if it is possible to show a movie clip based menu inside a Flash movie when the user "right-clicks" an item (a button or movie clip for example).
View 2 Replies
Jun 24, 2010
When I click simulate download my custom right click menu only appears once the movie has loaded. I have a layer called "actions" that contains this code:
Code:
var myMenu:ContextMenu = new ContextMenu();
myMenu.hideBuiltInItems();
this.contextMenu = myMenu;
How can I make it so that my custom menu works while it's preloading?
View 2 Replies
Jan 17, 2004
ive followed Senoculars drop-down menu tute [URL], awsome stuff, but it seems the submenu's dont disappear to well when you roll out. ..They only disappear if you click on another menu item or when you click outside the menu.
View 12 Replies
Jun 6, 2011
It is possible to create a "virtual mouse" which will be click on links on the HTML page loaded into HTMLLoader? I tried to do this using the class senocular .url... but it does not work.[code]
View 0 Replies
Oct 9, 2009
Make a custom preloader for the whole project, in a class, is that possible? Is that a good idea to creat a custom class for the Menu or other components like Background, etc?As I read in the book "Essential ActionScript" it's ok to make custom classes and organize everything, catching the errors in isolated form , turns it easy to manage and update..How to organize the classes?
View 5 Replies
Mar 23, 2004
I have a menu once clicked it animates out a menu that holds a couple of links, but with my code I can't select the links.
[code]...
View 9 Replies
Jul 12, 2011
I'm making a chatroom in actionscript, and I want to create a left click menu that pulls up some functions like (Ban, Hide, View users profile, etc..) I'd rather not do it through the right click menu.
View 1 Replies
Jun 20, 2010
Basically, I have a button and on click it displays a menu. I want to click that menu a second time and the menu closes. Currently, every time you click the button, the menu reopens. I pasted the Flex livedoc example below. If you click the button, the menu keeps reopening.Now, I rigged it up by setting a var to open and closed, so when clicking the button it does a check. However, if you click away from the screen, the HIDE event gets dispatched, and the menu closes. This messed up the open close var being set.
How could I make this Flex example below show the menu on button click, and then on a second button click, it closes the menu? Take into affect that if you click away from the menu, it closes it.Also, I played around with the MOUSE_DOWN_OUTSIDE event for the button and set the preventDefault, and the FlexMouseEvent event.cancelable is set to false.Changing to a PopUpMenuButton is not an option. I have to much skinning involved.Here is the Flex example:
<mx:Script>
<![CDATA[
// Import the Menu control.
import mx.controls.Menu;
[code]....
View 1 Replies
Mar 21, 2005
How do I create a cool effect where when I click on a menu item, the layout chages size according to the size of the content on the page.URL...How did he do it? Actionscript or just transitions?
View 3 Replies
Jun 6, 2011
It is possible to create a "virtual mouse" which will be click on links on the HTML page loaded into HTMLLoader? I tried to do this using the class [URL] - but it does not work I have something like this:
[Code]...
View 10 Replies
Jan 27, 2010
The menu is like this http:[url]... (the site is in portuguese but it doesnt matter), when I click in on menu the actual menu does an alpha to 0 and the next menu appears using the alpha from 0 to 100 (and some animations like the cellphone going up).Now, how can I do a menu like that, whatever the menu I choose, it does that alpha animation ?
View 1 Replies
Nov 13, 2002
I have an array for my menu and submenus.It works fine, but I have to click again on the menu to close it.When it's open it's completly open it takes too much space.how I could make a menu close when I click on another menu item..this is the code on the frame on my main timeline:
MenuArray=new array();
MenuArray[1]=menu1;
MenuArray[2]=menu2;[code].....
View 1 Replies
Sep 28, 2011
I've got a drop down menu. I want to click a tab to make it drop then, if it's open, click it again to close. I've tried a million variations on the script below:
var btn_grp1:String
function main1Down(event:MouseEvent):void {
if (btn_grp1 != "dwn") {
[Code]....
This works too (once). So the drop down buttons all disapear again, but it won't re-set. The drop down menu stays up from then on.
BTW i'm not set on this method, it just seemed the most obvious i.e. if menu hidden, then show it, set some variable to down (showing), else hide the menu, set var to up (hidden). Not working though.
View 2 Replies
Jun 21, 2005
I have been building this website and have run into a snag. The navigation for the site does not work well. The user seems to have to click alot of buttons just to get the information they want, so here is the site url...
First, I am using a flash navigation on the left side to control content in an Iframe.
Secondly, I have links in the Iframe that I would like to control the flash navigation.
For instance, on the portfolio page. When a user clicks on a project, I would like the menu to expand to the location of where the link in the menu is: example: in the profolio page, click on campden lakes home and the menu on the left expands project; over 4000 sq ft; So, having said that; do i have the site setup weird? Is there an other navigation menu that I can use.I think this is a flash actionscript, but i am not sure, sorry if If this questions should be in an other category. I hope someone can show me the errors of my ways.
View 3 Replies
Nov 12, 2010
Here's the link to my flash menu:[URL]how I can adjust the links inside the menu and the menu item text?
View 1 Replies
Sep 6, 2005
i have problem to do something in flash MX 2004 so i have question to this fine community1. there are some CD's with some subdirectories [ names of subdirectories are different on every CD ]2. on these CD's are autorun.exe [ created with SWF Studio ] which contains swf ,and this swf is used to show content of main folder 3. in every subdirectory there is the same swf file and it is showing content of the subdirectory.is there posibility to make a simple menu [ in the swf file from 2nd point ] which will becontainig links to swf files in subdirectories ,but it should dynamically get subdirectories names and transform them into menu linksbeneath is example structure of CD.
CD
|
|--FOTOS
[code]....
View 2 Replies
Apr 2, 2007
I've been working on an imitation of the SamataMason website sub navigation. Right now I have a top level menu that is created from an array, and a sub menu display that is created from XML. If you click on any of the top 4 or so items in the menu you'll see a list of links displayed below. The problem at this point is that the line of code that controls which XML nodes get displayed causes the URL links to break.
Line 37 of the "XML functions" layer contains the code that breaks the URL links:Code:if (item.attributes.industry == industry) {If you comment out the line (and it's closing brace on Line 54) you can click on any of the top 4 menu items and it will display a list in which the URL links work. But you're not seeing the appropriate list for each menu item.Anyone know how to rewrite this line so that it doesn't interfere with the other code? I'm baffled as to why "URL" breaks but the "client" nodes still work.
View 4 Replies
Jul 22, 2009
I have a drop down menu on my website and it works perfectly fine except for some of the links. i don't have the other pages made yet but i still have the links to the pages in the buttons in my drop down menu. For some reason when i click on the buttons in the drop down menu, they don't go to the pages, they don't do anything. But when i click on the buttons in the sub drop down menu in side the main drop down, they work
the code for each button is the on(release) get url code, is their a different code i can use that will make these buttons work? here is the link to the website so you can see what I mean. the paralegal services button is the one with the drop down.
[URL]
View 3 Replies
Jun 16, 2003
Mouse.hide doesn't work when rolling over the link.try this code and roll the mouse over the link:
Mouse.hide();
createTextField("tf", 100, 0, 0, 200, 30);
tf.html = true;
[code]....
View 6 Replies
Jun 18, 2009
What I have is an "expandable" navbar swf. The swf expands over the page content, so I have set the swf's "wmode" to "transparent" (z-index is also set so the swf is above page content, in case that matters).Everything looks great, but I cannot click any of the links on the page below the navbar swf. I can see them, but I can't click them.
View 6 Replies
Jul 22, 2009
I have a drop down menu on my website and it works perfectly fine except for some of the links. i don't have the other pages made yet but i still have the links to the pages in the buttons in my drop down menu. For some reason when i click on the buttons in the drop down menu, they don't go to the pages, they don't do anything. But when i click on the buttons in the sub drop down menu in side the main drop down, they work
the code for each button is the on(release) get url code, is their a different code i can use that will make these buttons work? here is the link to the website so you can see what I mean. the paralegal services button is the one with the drop down.[URL]
View 1 Replies
Nov 30, 2009
I've been asked to modify this flash piece (CS3, AS2) and add clickable links to the pop up menu. For the life of me I can't get it to work, and my head hurts from searching the web top to bottom for an answer. I would attach the fla but its too large, but basically you scroll over a button, in this case a dot, and it triggers a pop up box beside it with a list of items. These are generated by frame identifiers, and when you roll over the box it goes away. I need it to stay there and make that list of items clickable ones.
View 5 Replies
Jan 6, 2010
My problem is that I just recently start working on the company website. They a have menu bar on the side of the website. Some of the links dont work. Where would I find the hyper links in the file to change them to make them work?
View 5 Replies