"dinamic_menu" in Frameset?

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default "dinamic_menu" in Frameset?

    Hi
    I have tried a Flash menu, "dinamic_menu", and I hope someone can help me with
    linking the menu so it can be used in a Frameset. From one Frame with the menu
    in, to a another Frame in the Frameset, if that is possible?!

    The menu works fine without using Frames, but I would like to use Frames so
    that the menu don?t scroll up (stays in the "leftFrame") while the rest of the
    side (in "mainFrame") can scroll.
    For me it seems that the problem is that I can?t use on(release). It works
    with getURL ("test.htm", "main"), but the "test.htm" opens imediate in the
    Frame "main".

    Tom L?kka

    laksen Guest

  2. Similar Questions and Discussions

    1. Proj cannot run on LCDS 2.6 ES due to "Unable to resolveresource bundle "datamanagement" for locale "en_US"
      hi, all, We have developped an application on Flex Build 3 (run successfully), but failed when we try to deploy it on Tomcat with LCDS 2.5 ES...
    2. Frameset and "border"
      I am starting to use Dreamweaver and to begin with created a frameset with top, left and right frames. The problem is that under the top frame...
    3. CFINPUT type="radio" w/ "value" requires "label"
      On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'...
    4. "<table></table>" and "<frameset><frame></frame></frameset>" in perl/tk
      Dear my friends... Anybody would be so kind telling me what is similar in perl/tk to arrange the location of a form written in perl/tk? I want a...
    5. "Start" "Program" "Menu" list is empty
      For what ever reason my list of installed programs in my "Start" "Programs" menu is empty. Anyone know how to restore the list. Thanks for your...
  3. #2

    Default Re: "dinamic_menu" in Frameset?

    flash interacts well with named frames. Let's say you have a frameset with
    frames named "leftFrame", and "mainFrame".
    The source for your menuFrame will be dinamic_menu.swf.
    The source for your mainFrame will be "" (name=mainFrame src="")

    Now in your dinamic_menu.swf, you have your menu items... on each menu item,
    put this:
    on(release){
    getURL("test.html","mainFrame");
    }
    The first argument is the page you want displayed, so it will change from item
    to item. The second argument is the target.


    pazzoboy Guest

  4. #3

    Default Re: "dinamic_menu" in Frameset?

    Hi again.
    I am not sure I understand you, or maybe I?m not so good to explain my self so
    that you misunderstod me.
    Shall I somewhere put the code "" (name=mainFrame src="")?

    As I se it, I can?t use "on(release)"
    on(release){
    getURL("test.html","mainFrame");
    }
    because its not Buttons that links the URL?s. It is one MovieClip/Button for
    all the Submenues and it is defined as "Links" in the code/menu.
    links[1] = "test.htm";
    links[2] = "test2.htm";
    and so on.

    If I try
    links[1] = getURL ("test.htm", "main");
    the "test.htm" opens imediate in the Frame "main".
    And I not allowed to use
    links[1] = on(release){
    getURL("test.html","mainFrame");
    }
    because it is not a Button.

    Have you seen the fla-file?
    Could you paste the code for me?
    Hope I sucseed with Attaching the file.

    Tom

    laksen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139