I changed the references in AC_Macromedia.js and it is fixed.  Thanks SO
much for the help!

My AC_RunActiveContent.js is different, though:
//v1.0
function AC_AddExtension(src, ext)
{
  if (src.indexOf('?') != -1)
    return src.replace(/\?/, ext+'?'); 
  else
    return src + ext;
}

function AC_Generateobj(objAttrs, params, embedAttrs) 
{ 
  var str = '<object ';
  for (var i in objAttrs)
    str += i + '="' + objAttrs[i] + '" ';
  str += '>';
  for (var i in params)
    str += '<param name="' + i + '" value="' + params[i] + '" /> ';
  str += '<embed ';
  for (var i in embedAttrs)
    str += i + '="' + embedAttrs[i] + '" ';
  str += ' ></embed></object>';

  document.write(str);
}

-----Original Message-----
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 30, 2007 10:46 AM
To: CF-Talk
Subject: Re: What's not secure?

Yeah but look in the AC_RunActiveContent.js file:

//v1.0

function AC_FL_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".swf", "movie",
"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
     ,
"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v
ersion="
     ,
"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=
ShockwaveFlash"
     , "application/x-shockwave-flash", "7,0,0,0"

    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}
function AC_SW_RunContent(){
  var ret =
    AC_GetArgs
    (  arguments, ".dcr", "src",
"clsid:166B1BCA-3F9C-11CF-8075-444553540000"
     ,
"http://fpdownload.macromedia.com/pub/shockwave/cabs/director/sw.cab#ver
sion="
     , "http://www.macromedia.com/shockwave/download/";
     , null, "8,5,0,0"
    );
  AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
}

All the links there are http, not https. I'll bet editing that fixes the
issue.

On 8/30/07, Matthew Smith <[EMAIL PROTECTED]> wrote:
> Which flash codebase are you referring to?  The flash javascript is
> relative links, as is the flash swf references...
>
> -----Original Message-----
> From: William Seiter [mailto:[EMAIL PROTECTED]
> Sent: Thursday, August 30, 2007 6:54 AM
> To: CF-Talk
> Subject: SPAM-LOW: RE: What's not secure?
>
> You also might consider the Flash 'codebase' is pulling from a
> non-secure
> site.
>
> William

-- 
mxAjax / CFAjax docs and other useful articles:
http://www.bifrost.com.au/blog/



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:287473
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to