FRIHOSTFORUMSFAQTOSBLOGSDIRECTORY
You are invited to Log in or Register a Frihost Account!

Strange flash intro problem

 


asianwannabe999
Hi all,
I'm very confused at what's happening here.

If you look at this page:

http://www.pwn3rstc.com

the Enter button at the end of the flash intro links you to the home page. However, if you look at the same page loaded without the "www" in the address, like

http://pwn3rstc.com

the Enter button no longer functions. What is going on?!?!?!
Dougie1
Weird? The www. bit may just because you did not put that part of the url in when making the flash intro.

Seen as I am such a great guy I tried to edit your flash to make it work. You can download it and see if it works:

http://www.randomredirection.com/Storage/Flash%20intro.php

Also seen as I did this for you please visit my site here and have a look around. It is not fully finished yet.
asianwannabe999
Can you explain what you mean by that? For my button all I have written is the following:

on (release) {
getURL("http://pwn3rstc.com", "_self");
}
meejoku
Code:
on (release) {
getURL("http://pwn3rstc.com", "_self");
}

perhaps it because the flash call the same url.
try to use www and see what happend.

Code:
on (release) {
getURL("http://www.pwn3rstc.com", "_self");
}


or try use '/' at the end of url.

Code:
on (release) {
getURL("http://pwn3rstc.com/pwn3rstc/", "_self");
}
asianwannabe999
I tried both suggestions and it still does not work. Is it not an actionscript problem at all?
JinTenshi
try linking to http://pwn3rstc.com/pwn3rstc/ instead.

Code:

on (release) {
getURL("http://pwn3rstc.com/pwn3rstc/", "_self");
}
asianwannabe999
JinTenshi, thanks for the reply, but I tried it and it doesn't work. Anyone have any suggestions?

I have uploaded the .fla file to
http://www.pwn3rstc.com/ptc_flash_intro.fla

Thank you.
meejoku
hmm... perhaps, the key is not in flash, but in html.

could you please try to change the way of embedded object.
from value="http://www.pwn3rstc.com/PTC_Intro_Movie.swf"
to become value="PTC_Intro_Movie.swf"

before:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="550" height="400" align="absmiddle" title="fsdfsdf">
      <param name="movie" value="http://www.pwn3rstc.com/PTC_Intro_Movie.swf" />
      <param name="quality" value="high" />
      <param name="LOOP" value="false" />
      <embed src="http://www.pwn3rstc.com/PTC_Intro_Movie.swf" width="550" height="400" loop="false" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
    </object>


after:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="550" height="400" align="absmiddle" title="fsdfsdf">
      <param name="movie" value="PTC_Intro_Movie.swf" />
      <param name="quality" value="high" />
      <param name="LOOP" value="false" />
      <embed src="PTC_Intro_Movie.swf" width="550" height="400" loop="false" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
    </object>


hope this could help.
asianwannabe999
It worked like a charm! Thank you very much.
Reply to topic    Frihost Forum Index -> Scripting -> Html, CSS and Javascript

FRIHOST HOME | FAQ | TOS | ABOUT US | CONTACT US | SITE MAP
© 2005-2007 Frihost, forums powered by phpBB.