A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: button frame targeting?

  1. #1
    Junior Member
    Join Date
    Mar 2002
    Posts
    13
    i need to know how i can have a button open a page in a different frame and still sit in its own frame..
    like a flash menu..
    i must be a real noob if i can't figure it out.
    peeeez help

  2. #2
    Senior Member william_tropico's Avatar
    Join Date
    Nov 2001
    Posts
    429
    Put this on your Button actions, but change the
    one to the frame you want it to go to

    Code:
    on (release) {
        tellTarget (_root) {
            gotoAndPlay (1);
        }
    }

  3. #3
    Junior Member
    Join Date
    Mar 2002
    Posts
    13

    it didnt' work.
    here, take a look
    http://shift_one.tripod.com/shift1.html
    thats what im working on right now, the menu at the bottom won't open the pages in the above frame.
    this is a bummer

  4. #4
    Senior Member william_tropico's Avatar
    Join Date
    Nov 2001
    Posts
    429
    Originally posted by MeNtAlLy iLL

    it didnt' work.
    here, take a look
    http://shift_one.tripod.com/shift1.html
    thats what im working on right now, the menu at the bottom won't open the pages in the above frame.
    this is a bummer
    well, what is the frame you want it to open. is it
    the same as the menu?

  5. #5
    Junior Member
    Join Date
    Mar 2002
    Posts
    13
    i think were talking about two different frames, hehe.
    im talking about frames in html, not in flash.
    i just want the button to open a different .html document in the frame window above. get it kinda?

  6. #6
    Moderator enpstudios's Avatar
    Join Date
    Jun 2001
    Location
    Tampa, Fl.
    Posts
    11,282
    Target Frames:

    Code:
    on (release) {
        getURL ("http://www.yourdomain.com/yourpage.html", 
    "yourframesnamehere");
    }

  7. #7
    Junior Member
    Join Date
    Mar 2002
    Posts
    13

    !

    holy **** your my hero.
    thank you both for helpin me out.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center