Will browser "BACK BUTTON"ever work??

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

  1. #1

    Default Will browser "BACK BUTTON"ever work??

    Is there I can build a flash site that will alllow a user to use the "back or forward button" in their browser to navigate through a flash site.
    I know I can make seperate swf files and put them into seperate htm files but is there any way these browser buttons can work within a single swf file? I am aware you can asign an action script to the left and right arrow key but what I'm looking for is someone who is actually mouse-clicking on the back button.



    zaggleme webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. Simulate Browser "BACK" button
      Hello, There are many situations on my site that the user has the option of retunring to the prior page. Rather than adding text that reads...
    2. Disabling the "Back" button
      Hi All: Well, now I have another question. I have created a rather large application that is handled through one script. What I would like to...
    3. Question: How can I "expire" a web page (prevent BACK button)
      I know some sites will display the following message if you click on the BACK button in your browser. How do I implement this feature? Warning:...
    4. Creating a "back" button
      Sorry for the simple posting, but my brain is fried at this moment. How do I create a back button to my asp form. I have three pages form pages...
    5. "Back Button" and populated dropdown lists
      Hi, I have done some research about my problem I have when using the "back button" in IE to go back to a page with two dropdown lists. The...
  3. #2

    Default Re: Will browser "BACK BUTTON"ever work??

    Here it goes. Place this code into any button made in Flash:

    on (release) {
    getURL("javascript:history.go(-1)");
    }

    Hope it helps :)

    Cordially,
    Abelius

    worldkit.com
    Abelius Guest

  4. #3

    Default Re: Will browser "BACK BUTTON"ever work??

    Thanks! Its not quite working the way I hoped but I will play around with it.

    zaggle



    zaggleme webforumsuser@macromedia.com 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