Traget Iframe from flash menu

hi,
i had flash menu which i had put in iframe as i wanted to have fixed page size and menu items were long ,so i made product html page in which there is flash menu,then i call product html page in <iframe> in main page but event not working,i guess its something releated to target but i am not getting it.
Any help will be appreciate.

Sending you copy of demo side.what i want to do is..
.when menu is clicked that page should loaded and the menu item is highlighted in menu which is in iframe.it used to work properly when i remove iframe but then the product list is long and i want to present in fixed webpage without scoller for which i am using iframe.if you have anyother idea for presenting scroller in flash please let me know.

Similar Messages

  • Next and Previous slide from Flash Menu

    We are currently tasked with updating SAP training that was
    created with OnDemand software. The current simulations have a
    Javascript menu on each screen which provides various functions
    including moving from current slide to next or previous slides.
    When the existing movie is played and captured, we lose the
    javascript menu functionality.
    I have created a Flash Menu and have imported it to the newly
    captured Captivate movie. All links on the menu work except Next
    Slide and Previous slide.
    The script I use for the button for the Next slide is as
    follows:
    this.next_btn.onRelease =function(){
    this._parent._parent..nextFrame();
    Also I have tried substituting for nextFrame "play" and for
    the target path "_root" for the first "_parent."
    The variables "rdcmndNextFrame" and "rdcmndPrevious" do not
    work unless you are using a playback bar, which detracts from the
    simulation.
    Has anyone ever created this type of functionality? It seems
    that it would be straight forward. It is most likely a target path
    issue. The captivate movie is the container for the flash menu. To
    access the captivate movie timeline and move to the next or
    previous slide is what I really need.
    Help!

    I resolved the issue by selecting to use a playback bar and
    then in the Flash file setting the visibility of the playback bar
    to "0".

  • Navigate to HTML anchor from flash menu

    Hi,
    I would like to navigate to an html anchor from a flash menu.
    I use navigateToURL(“#anchorName”,
    “_self”). It work fine in IE 7, Firefox 2 and 3 but in
    safari the page reload. How can I prevent safari from reloading the
    page ?
    Thank you !

    I have solved the problem by using the externalInterface and
    a javascript function with window.location.hash.

  • Auto run CD menu from Flash

    Hi,
    I want to create an auto run menu for One of the
    installers.The requirement is that swf gets launched as soon as I
    insert the first CD ,but under certain conditions it'll ask for
    another cd(say 2nd CD) ...so when I take away the First CD and
    insert the 2nd CD ..the Flash menu should be running .Is it
    possible??
    If I convert the .swf to an .exe then I know it's not
    possible.Is there any other way of doing this?

    mFlexDev wrote:
    > Hi,
    > I want to create an auto run menu for One of the
    installers.The requirement is
    > that swf gets launched as soon as I insert the first CD
    ,but under certain
    > conditions it'll ask for another cd(say 2nd CD) ...so
    when I take away the
    > First CD and insert the 2nd CD ..the Flash menu should
    be running .Is it
    > possible??
    > If I convert the .swf to an .exe then I know it's not
    possible.Is there any
    > other way of doing this?
    It's possible, I did that few times for a client, tho not
    with flash itself, you need
    3rd party tools.
    You see, once you remove the CD, the flash might or might not
    run. It's very random.
    To make sure the movie runs even if the CD is not in, you
    could copy it to user drive.
    I used tool call Jugglor from www.Flashjester.com
    It allow to build custom installer and copy the presentation
    to user drive then run it
    from there. There are hundreds of other options that can help
    you customize the project
    like flash could never do. Check it out, I have been using it
    for almost 10 years and
    it was best investment ever, when comes to Flash's 3rd party
    tools.
    Take note tho, I do lots of CD based work :)
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • I don't want my flash menu to reload on every page

    Hi everyone,
    I have a website that I am working on where I have a menu
    made in flash, the menu expands when you select a category item and
    executes a hyperlink when you click on a particular item within the
    category.
    This hyperlink load a new page and reloads the flash menu
    which causes the option pre-selected to get lost and you have to
    select again the category item and item over an over again.
    It is good to mention that I want to stay away from Frameset.
    Is there a way to load a particular part of the site instead
    of the while site, so my menu selection stays the same?
    I read about <DIV ID=", BASE, REL and REV and they don't
    seem to work for me. Is there a sample code that I can look at to
    have better understanding of it?
    Thank you in advance.

    A good way to make it so it does not reload on every page is
    to make a IFrame and make the target link of the flash buttons go
    to the Iframe ("
    http://staggdesigns.com" ,
    "_TARGETFRAME") that will work

  • XML flash Menu

    Hello Guys,
    I am stuck with a xml flash menu which contains quite a few great options to manipulate the text, url, button and even change the color to the menu externally from xml. The only thing missing here (which I massively need it) is the option resizing the buttons from the xml file itself. The buttons need to be resized so that they fit each text length. I have the feeling that someone that is good at XML and deal with ActionScript would be able to easily add this option.
    Thanks for commiting your time on this and I would be happy to help anyone in return who tackles this requirement I am after now.
    Please download the file attached and you can own it as well.
    Looking forward to hearing from you soon.
    Respectfully yours,
    Beko

    Ok, here we go:
    ACTION SCRIPT CODE:
    _parent._visible = false;
    // xml processing
    menu_cfg_xml = new XML();
    menu_cfg_xml.load(String(_url.slice(0, (_url.length-3)))+"xml");
    menu_cfg_xml.ignoreWhite = 1;
    menu_cfg_xml.onLoad = function(ok) {
        // create main menu after successful loading of XML
        if (ok) {
            create_menu();
        } else {
            trace("XML not loaded");
    counter = 1;
    function create_menu() {
        while (counter<menu_cfg_xml.firstChild.childNodes.length) {
            attachMovie("button_type", "btn"+counter, counter);
            set("btn"+counter+"._x", counter*80-100);
            btn1._y = 0;
            // set the buttons text
            set("btn"+counter+".the_text", menu_cfg_xml.firstChild.childNodes[counter].attributes.text);
            set("btn"+counter+".the_url", menu_cfg_xml.firstChild.childNodes[counter].attributes.url);
            set("btn"+counter+".the_target", menu_cfg_xml.firstChild.childNodes[counter].attributes.target);
            this["btn"+counter].onRollOver = this["btn"+counter].onDragOver=function () {
                this.effect.gotoAndPlay(2);
                this.textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color2;
            this["btn"+counter].onRollOut = this["btn"+counter].onDragOut=function () {
                this.textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color1;
                this.effect.gotoAndPlay(9);
            this["btn"+counter].onRelease = function() {
                if (this.the_url != undefined and this.the_url != "") {
                    getURL(this.the_url, this.the_target);
            //set buttons color
            this["button_color"+counter] = new Color("btn"+counter+".btn_color");
            this["button_color"+counter].setRGB("0x"+menu_cfg_xml.firstChild.childNodes[0].attributes .button_color);
            //set button effect color
            this["effect_color"+counter] = new Color("btn"+counter+".effect");
            this["effect_color"+counter].setRGB("0x"+menu_cfg_xml.firstChild.childNodes[0].attributes .effect_color);
            //set button text color
            this["btn"+counter].textul1.textColor = "0x"+menu_cfg_xml.firstChild.childNodes[0].attributes.text_color1;
            counter++;
        _parent._visible = true;
        info_clip._visible = false;
    >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    XML CODE:
    <?xml version="1.0" encoding= "UTF-8" ?>
    <!-- Menu created by www.adrianTNT.com -->
    <menu>
    <options button_color="000066" effect_color="87A10C" text_color1="87A10C" text_color2="FFFFFF">
    </options>
    <button text="Task force" url="http://www.google.com" target="_parent">width="250" height="136"</button>
    <button text="Service og turisme" url="http://www.google.com" target="_parent"></button>
    <button text="Fodbold" url="http://www.google.com" target="_parent"></button>
    <button text="Idraet" url="http://www.google.com" target="_parent"></button>
    <button text="Kunst and Design" url="http://www.google.com" target="_parent"></button>
    <button text="Teknisk/praktisk linje" url="http://www.google.com" target="_parent"></button>
    <button text="Gastronomi" url="http://www.google.com" target="_parent"></button>
    <button text="Laekker mad" url="http://www.google.com" target="_parent"></button>
    <button text="Musik" url="http://www.google.com" target="_parent"></button>
    <button text="Turbo-boglig" url="http://www.google.com" target="_parent"></button>
    </menu>

  • Flash builder 4.7 upgrade issue from Flash builder 4.5 (key is not valid)

    Hi,
          We (Company) are buying Adobe products more than 6-7 years now. We bought the Flash builder premium 4.5 and Flash builder premium 4.5 for PHP volume licence. Now flash builder 4.7 should be complementary upgrade for us. But when we are using Flash builder 4.7 trial version and adding serial number (Flash builder 4.5 serial number), it's just not working and showing a error "key is not valid".
    I chat with Adobe customer care 4 different people, they end up saying that let us transfer you to volume licence department and then chat ended. No more chat messages, I checked more than one hour and still no message.
    Then I called they, it took 15 mins to connect with customer care. I picked the "upgrade" option from phone menu and then connected with a guy. After listening complete case he forwarded my call to Volume licence executive and the volume licence executive transferred it to some other guy and the other guy redirect it to some specialized person. So total 4 guys. The last guy (specialized) name was Rohit.
    This guy Rohit asked me, did I buy a customer support programme (some product about $2.nn.00 )? I said no, we bought volume licenses for Flash builder premium 4.5 ( about $4000.00 ****). He said, sorry sir I can not help you in this, but I can provide you an e-mail address and you can report your concern there. I already passed my 1.5 hour in this conversation. I said okie. He gave me a case number and told me that he will send a email mentioning that email address as per my request I disconnect the phone.
    I never get that email address.
    Can some one suggest me what to do next. My case number is : 209-788-274.
    My email is: [email protected]
    Thanks,
    Amitabh Arya

    I have the same problem, and i have send request complementary upgrade (Adobe® Flash® Builder® 4.7 Complimentary Upgrade), and only received a Acrobat change licensed...
    I´m working with 4.7 Beta the last mounths, and now all the days have to see "please enter your license". So one problem that you can jump with money (if you have that money..), isn´t a problem. Like a i have license from flex 3, upgrade to flex 4, and upgrade to flex 4.5, i´m going to take de upgrade from 4 standard to 4.7 standard (47,97 euros), and not waste my time and money on calls. So yes, I'll see adobe with another eyes...
    Best regards,
    José Ramón León

  • Error message when I try to copy new files (images, documents) to mac from flash drive/SD card

    I am recieving an error message when I try to copy new files (images, documents) to mac from flash drive/SD card. The message is saying "operation cannot be completed because an item already exists with that name." They are brand new therefore not the same name? I cannot even put them in a brand new folder...  How can I fix this?
    Please help me!

    You don't need to recover the system.
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Terminal in the page that opens.
    Drag or copy — do not type — the following line into the Terminal window, then press the space bar:
    dot_clean -m
    Switch to the Finder and drag the icon of the flash drive into the Terminal window. Some text will appear after what you entered. Press return.
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear. Then quit Terminal and try the copy again.

  • Need help with installing Yahoo style flash menu CS5

    I downloaded the Yahoo style menu bar from the the available widgets.  I got the menu bar to show in Dreamweaver, but need help:
    I have trouble understanding how to use the f-source  flash editor to edit the links.
    I don't seem to be able to drop the  f-source.com button from the menu bar.
    The bar  shows up as a tiny bar in IE8, not as I had programmed it in the widget programmer.
    I was instructed to Insert ==> f-source menus ==> Edit menu in Dreamweaver.  Doing this leads to the following message: "Install at least one f-source menu'.  I did install the f-source-UI G file in the Adobe Extension Manager CS5.  What else needs to be installed?  
    My OS is Windows7 and I am working with Dreamweaver CS5.  Please help.
    Thanks,
    Tony Uythoven

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • Full screen Air app from Flash

    Hi,
    Im using Flash CS3, and I´m trying to make my first AIR
    applications.
    I try to get a full screen view using:
    stage.displayState =
    StageDisplayState.FULL_SCREEN_INTERACTIVE;
    but i only get a full screen window. Can´t get rid of
    the window/menu-bar and the system bar on top (I´m using OSX).
    I think I have to disable the systemChrome, but I can´t
    figure out how to do this from Flash. I´ve seen som AIR
    examples in javacript and flex, but nothing that works for me in
    Flash.
    Best regards
    Peter

    quote:
    Originally posted by:
    petermaseide
    I still also get the top system bar when i run the
    application on OSX, but on WinXP i get a total full screen wiev. I
    think there is a way to get rid of the OSX bar and obtain a real
    full screen on a mac, but I can´t figure it out from the
    documentation.
    Has anyone found a way to remove the top menu in OS X? I am
    converting a presentation tool created as a Flash executable to
    AIR, so that the client can do more with the tool. The tool is used
    to pitch clients and they want a true full screen experience on the
    Mac. I have been trying for hours, scouring online and through help
    files for the answer and cannot find it. Any help would be greatly
    appreciated.

  • Flash menu in DW, how do I link the buttons?

    Hi there!
    I have a problem, i'm creating a site in dreamweaver with a
    lot of flash objects. For examlpe I'm making a flash menu, wich is
    the hole problem! I'm importing the flash file to the left frame in
    dreamweaver and i'm trying to link the buttons (on the menu) to ex.
    "home" or "about me", though it doesn't work! I can't link the
    buttons because they're in this flash object. I know i'm doing it
    wrong with trying to link the buttons on the flash object but I
    don't know what else to do. And the thing is that i don't wanna use
    the buttons already existing in DW, i've made my own ones. The
    buttons are moving so there is one more problem, they're coming in
    from the right side (in the left frame) and bounces once, and then
    they stop. And that's when I wan't them clickable. So how do I make
    the buttons linking to the pages??
    Would really appreciate an awnser!
    Thanks !

    Flash links are made in Flash, not DW.
    I trust these links are not important, as search engines
    can't see them
    "Sabyonei" <[email protected]> wrote in
    message
    news:f1ktus$ct9$[email protected]..
    > Hi there!
    > I have a problem, i'm creating a site in dreamweaver
    with a lot of flash
    > objects. For examlpe I'm making a flash menu, wich is
    the hole problem!
    > I'm
    > importing the flash file to the left frame in
    dreamweaver and i'm trying
    > to
    > link the buttons (on the menu) to ex. "home" or "about
    me", though it
    > doesn't
    > work! I can't link the buttons because they're in this
    flash object. I
    > know i'm
    > doing it wrong with trying to link the buttons on the
    flash object but I
    > don't
    > know what else to do. And the thing is that i don't
    wanna use the buttons
    > already existing in DW, i've made my own ones. The
    buttons are moving so
    > there
    > is one more problem, they're coming in from the right
    side (in the left
    > frame)
    > and bounces once, and then they stop. And that's when I
    wan't them
    > clickable.
    > So how do I make the buttons linking to the pages??
    > Would really appreciate an awnser!
    >
    > Thanks !
    >

  • Flash Menu Style Help

    I need to build a flash based menu and want to learn how to
    do the same cool functionality that I see on the
    http://grandcentral.com website.
    Notice on the "features" menu how when you click on an item
    the arrow will scroll down to that menu item. I'd like to learn how
    to make a pointer move across multiple other items to get to the
    one that is being clicked on like that. I hope it is easy enough
    that I can do it!
    Any help is most appreciated as I have a project I'm doing
    right now that would really benefit from this.
    Thanks in advance!
    I work on a mac running osx and flash 8 pro.

    Flash menus (Flash navigation, period) is a terrible thing from a functional standpoint. It looks really nice, but the honeymoon ends there. As far as SEO goes, your entire site, beyond the landing page, is invisible. A search robot will only see an embeded Flash object.
    You have to ask yourself a basic question.
    1. What is the purpose of building a website and putting it online?
    If it's for your own personal enjoyment and nothing more, then a Flash menu may be for you. If it's for a business or band, or a political group or social group, and you want people to be able to find it in Google, Yahoo, Bing, etc. then you want as many indexible links as possible on your landing page so they will show up in related searches like schedules, articles, galleries, etc.

  • Flash menu target help

    Well because I am only a year old to flash I bought a program
    called Flash Menu Labs which helps me create a horizontal menu with
    many branches. I have figured out how to import this into my
    project using the loader component but i have some other questions.
    I can add links to my menu items within Flash menu labs using
    the open method and _self, _blank, _top, _parent but not sure which
    one to use or how to get it to gotoandplay or how to open another
    swf within my current project. So when I click one of my menu items
    it will actually open or goto a frame in the project that i put the
    menu.
    Hope that makes some sense. I have enclosed some pictures to
    help make some sense of this. The first picture shows the Flash
    Menu Labs menu i created and you can see it works using the loader
    component. The second picture shows the actual Flash Menu labs
    layout screen.
    Picture 1
    picture
    2

    mikeoffy69 wrote:
    > Well because I am only a year old to flash I bought a
    program called Flash Menu
    > Labs which helps me create a horizontal menu with many
    branches. I have figured
    > out how to import this into my project using the loader
    component but i have
    > some other questions.
    >
    > I can add links to my menu items within Flash menu labs
    using the open method
    > and _self, _blank, _top, _parent but not sure which one
    to use or how to get it
    > to gotoandplay or how to open another swf within my
    current project. So when I
    > click one of my menu items it will actually open or goto
    a frame in the project
    > that i put the menu.
    >
    >
    > Hope that makes some sense. I have enclosed some
    pictures to help make some
    > sense of this. The first picture shows the Flash Menu
    Labs menu i created and
    > you can see it works using the loader component. The
    second picture shows the
    > actual Flash Menu labs layout screen.
    >
    This is not fully featured Flash application but tool
    designated to crate just menus
    and out put them into SWF format - Flash Player compatible .
    You don't have the freedom
    to add on your own action script, except the getURL requests.
    You need actual Adobe Flash
    authoring program to create Fla/SWF files and be able to use
    action script at will.
    I don't believe you will be able to even work on "Flash Menu
    Labs" files. Beside export
    to SWF, this tool has nothing to do with Adobe Flash. Using
    Flash you will need to make
    your menus entirely from scratch.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Wrong character encoding from flash to mysql

    Hi, im experiencing problems with character encoding not
    functioning correctly when sending from flash to mysql. What i am
    doing is doing a contact form in flash which then sends the value
    to a php file which takes the values and inserts them into a table.
    As i'm using icelandic charecters i need the char encoding to be
    either latin1 or utf8 in mysql, or at least i think so. But it
    seems that flash or the php document isn't sending in the same
    format as i have selected in mysql because all special icelandic
    characters come scrambled in the mysql table. Firefox tells me
    tough that the html document containing the flash movie is using
    utf-8.

    I don't know anything about Icelandic characters, but Flash
    generally really likes UTF-8. So it should be sending that if that
    is what it is starting with.
    You aren't using any kind of useCodePage? That will mess it
    up.
    Are you sure that the input method is Icelandic?
    In the testing environment can you list variables (from the
    debug menu) and see if they look proper? If they do then Flash is
    readying them correctly and the problem must be coming in further
    down stream.

  • Loading Flash Menu in Background?

    I've inherited a website with a huge (2.5MB) flash menu system and would like to know if there is an elegant way to load it in the background from maybe an intro page that redirects to the home page after a certain amount of time - or possible when the menu is done loading.  Thanks in advance.

    var mcl:MovieClipLoader=new MovieClipLoader();
    var lo:Object={};
    lo.onLoadInit=function(target){
    // loading is complete.  remove intro display
    target.play();
    mcl.addListener(lo);
    this.createEmptyMovieClip("targetMC",this.getNextHighestDepth());
    mcl.loadClip("yourmainswf.swf",targetMC);  // put an empty keyframe at frame 1 of yourmainswf.swf and add a stop();

Maybe you are looking for