|
-
Fullscreen possible in koolmoves??
Hi peeps!
I'm wondering, is it possible to make a website in flashfullscreen with koolmoves. Example: http://www.skopje.nl/

Thanks for the help!
-
It's possible to do this using a little actionscript.
What they probably are doing is to set the scaleMode to noScale so the size of the content stays the same and center the content.
-
Thanks for your reply.
Do you know where you can find that in Koolmoves? Wich step i must take to do that?
-
For now i found something, i use this, maybe helpfull for others:
Its not exactly what i've been looking at. But i can live with that :-P
It's get close to what i've been searching for.
If someone do know the exact code. Let me know if you want to.
Thanks,
PHP Code:
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
<style type="text/css">
</style></head>
<body bgcolor="#000000" marginwidth="0" marginheight="0" topmargin="0">
<div align="center">
<!--url's used in the movie-->
<a href="http://www.YOURFILENAME.nl"></a>
<!--text used in the movie-->
<!--
1
-->
<!-- saved from url=(0013)about:internet -->
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '1000',
'height', '638',
'src', 'YOURFILENAME',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'YOURFILENAME',
'bgcolor', '#000000',
'name', 'YOURFILENAME',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'YOURFILENAME',
'salign', ''
); //end AC code
}
</script>
<noscript>
<table width="1000" height="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="1000" height="640" align="center" valign="top"><script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0','width','1000','height','638','align','middle','src','YOURFILENAME','quality','high','bgcolor','#000000','allowscriptaccess','sameDomain','allowfullscreen','false','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','YOURFILENAME' ); //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,0,0" width="1000" height="638" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="YOURFILENAME.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<embed src="YOURFILENAME.swf" quality="high" bgcolor="#000000" width="1000" height="638" align="middle" allowscriptaccess="sameDomain" allowfullscreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object></noscript></td>
</tr>
</table>
</noscript>
</div>
</body>
</html>
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|