PDA

View Full Version : Windows Vista Protected Mode


pop32
02-13-2008, 12:34 AM
I am using a script that dynamically resizes a flash movie on click using JavaScript. For some reason, Windows Vista will not present the site correctly (does not resize correctly, or load in smoothly). I was able to figure out that when Windows Vista "protected mode" in the internet options is set to "OFF," the site presents itself flawlessly.

My question is, has anyone ever experienced problems with Windows Vista and flash, and also, could it be the "resize" script that's causing the problem?

Here is how I'm coding the flash andf I've attached the JavaScript file to this post. Any help would be greatly appreciated.

<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=8,0,0,0',
'width', '100%',
'height', '100%',
'src', 'index',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'top',
'play', 'true',
'loop', 'true',
'scale', 'noscale',
'wmode', 'transparent',
'devicefont', 'false',
'id', 'index',
'bgcolor', '#000000',
'name', 'index',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'index',
'salign', 'lt'
); //end AC code
}
</script>

jsebrech
02-13-2008, 09:44 AM
First result for a google search for "flash protected mode":
http://www.cnettv.com/8301-13415_53-9711507-11.html

Perhaps that will fix your problem.

pop32
02-17-2008, 10:52 PM
I understand how one can "fix" the problem from the user end. But it doesn't help much when you want to present a website without bugs.

This post was in reference to this thread:
http://www.actionscript.org/forums/showthread.php3?t=157306

The above link's problem and solution doesn't work in Windows Vista "Protected Mode"

jsebrech
02-19-2008, 09:31 AM
In that case, sorry I can't be more helpful. You may want to contact adobe support for this one.