Flash problem

Veryl Mikagoh

New Member
Messages
3
Reaction score
0
Points
0
I saw with search some more topics about problems with flash, but or they were closed, or i wasn't sure it was the same problem... My site is pretty flashy. But The brower refused to load any of flash files... Though it works offline when I preview with dreamweaver, in firefox and iexplore 7... So this is pretty enoying...
Ive uploaded everything in public_html, and it only shows the background picture...
Could anyone help me?

Many thanks in advance, Veryl Mikagoh

Edit: owyeah: moonwailers.x10Hosting.com ;)
 
Last edited:

GamingX

Executive Team
Messages
6,355
Reaction score
3
Points
38
Did you also upload the flash files or the folder you created for the flash files.....
 

alfren

New Member
Messages
207
Reaction score
0
Points
0
i think the problem is your code....

the code in your site on your flash is this:

Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','400','height','500','title','Veryl','src','Veryl Top','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','wmode','transparent','movie','Veryl Top' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="400" height="500" title="Veryl">
    <param name="movie" value="Veryl Top.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="Veryl Top.swf" width="400" height="500" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent"></embed>
  </object>
</noscript>
you should remove this code:

Code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','400','height','500','title','Veryl','src','Veryl Top','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','wmode','transparent','movie','Veryl Top' ); //end AC code
</script><noscript>

</noscript>
so the remaining code will be:
Code:
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="400" height="500" title="Veryl">
    <param name="movie" value="Veryl Top.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <embed src="Veryl Top.swf" width="400" height="500" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" wmode="transparent"></embed>
  </object>
Do this in all your flash html codes i'm sure it will work.....
 

alfren

New Member
Messages
207
Reaction score
0
Points
0
Your welcome.... i'm glad i can help... and by the way i just checked your site and its very awesome... nice work on the design man did you make it?? keep it up man ... ^_^
 

Veryl Mikagoh

New Member
Messages
3
Reaction score
0
Points
0
Yep I totaly did ;P not bad hea, for a 16 old stupid xD Macromedia flash ftw...
though its not hard.. I just like to make flash transparent, in Parameters: wmode, Vallue: Transparent, and et voila, you get a nice site ;) many thx again on your help! :D
 
Top