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

  1. #1

    Default Button Linkage

    Hi, I'm having a bit of a problem here. I am currently creating my
    flash site and have almost completed it. I have also created the buttons. The
    problem which I have is linking one flash page to another. How do I do that.
    How do I create a link from one page to another.Thanks.

    com_craze Guest

  2. Similar Questions and Discussions

    1. linkage HELP!
      i need to know how it would be possible to make a html link that reffers to a frame in a *.swf file.. can someone please aid me?! thank you!!!
    2. AS 2.0 linkage question
      something like this, maybe? public function setText( newText:String ):Void { this._nameOfTextField.text = newText; } I think this will work..
    3. Loa d movie with linkage identifier
      How can i load a movie dynamically with a linkage identifier? I have 2 files. in sound file, a sound is attached with linkage ID In main file im...
    4. external casts linkage
      hi i have a dir program (consisting of many files), which uses an external cast. my job is to modify files according to the bugs report. To modify...
    5. external linkage
      Hello, I wrote a program that uses the zlib compression library, specifically the functions compress() and uncompress(). Though I could find the...
  3. #2

    Default Re: Button Linkage

    what do you mean by "page"? are these separate SWF files?

    if they are separate SWF files, do you want to keep your buttons when changing pages?
    rlc5611 Guest

  4. #3

    Default Re: Button Linkage

    yes they are different swf's. that's not my only problem now, i want to create
    a preloadr but i do not know how to create one, i've checked through the net
    for tutorials but there is nothing useful but i do know that it requries two
    scenes.

    com_craze Guest

  5. #4

    Default Re: Button Linkage

    First of all, nothing in Flash requires scenes for any reasons. My experience
    is that it is a big mistake to even talk about scenes - much less use them. A
    preloader is just an animation to give the user something to look at while the
    movie is loading. For reasons well documented in the posts, I make a preloader
    in its own movie. If this is the first SWF you load, then it goes to level 0.
    It then loads your next SWF. When you load new SWF's you load them to levels.
    Have your preloader load the navigation SWF to level 1
    (loadMovieNum("navigation.swf",1) for example.

    Your buttons that load other SWF's load their corresponding SWF's to higher
    levels.

    button 1's script could be:

    on(release) {
    loadMovieNum("first.swf",2); //loads at level 2
    }

    button 2's script could be:

    on(release) {
    loadMovieNum("first.swf",3); //loads at level 3 if you do not want to replace
    the movie at level 2
    }

    or

    on(release) {
    loadMovieNum("first.swf",2); //replaces the movie at level 2
    }

    Have you done a search in this forum on preloaders? It seems it is one of the
    most widely discussed topics. I am surprised you found nothing.



    rlc5611 Guest

  6. #5

    Default Re: Button Linkage

    Yes, I have tried searching through the forums but there is nothing which suits
    my needs. Now the thing is, I have managed to create my loader, the problem is
    this: I have a continue button on my loader. This button is supposed to link
    to my main page but when I test my entire movie, I noticed that it keeps going
    back to my preloader and my main page doesn't load up.
    I tried using the action command

    getURL("http://www.parrainfoweb.com/index1.html");

    but it doesn't work and I also made sure that it is not on loop.What went
    wrong. I tried some tutorials and followed and i did but it still goes back to
    my preloader.



    com_craze Guest

  7. #6

    Default Re: Button Linkage

    I plugged your URL (i.e. [url]http://www.parrainfoweb.com/index1.html[/url]) directly into
    my browser and I got a preloader. If you click on the "continue" in that movie,
    it changes to

    [url]http://www.parrainfoweb.com/index.html[/url]

    so it is changing the URL. Clicking on the Continue in the preloader with the
    black background does nothing.

    which also appears to be a preloader. Are you sure you uploaded the SWF file
    as well as the HTML?

    rlc5611 Guest

  8. #7

    Default Re: Button Linkage

    yes I am sure
    com_craze 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