Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/flash/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
flash横幅中的https链接不工作_Flash_Https_Hyperlink_Banner - Fatal编程技术网

flash横幅中的https链接不工作

flash横幅中的https链接不工作,flash,https,hyperlink,banner,Flash,Https,Hyperlink,Banner,各位晚上好,, 我对这个具体问题束手无策。我有一个flash横幅,我使用的是AS 2.0。嵌入在flash横幅中的代码可以与我试图嵌入的url以外的任何url一起工作 以下是我正在使用的代码: 新闻组 { getURL(“https://wcc.webeventservices.com/eventRegistration/EventLobbyServlet?target=registration.jsp&cb=&tile=false&eventid=277065&sessionid=1&key=

各位晚上好,, 我对这个具体问题束手无策。我有一个flash横幅,我使用的是AS 2.0。嵌入在flash横幅中的代码可以与我试图嵌入的url以外的任何url一起工作

以下是我正在使用的代码:

新闻组 { getURL(“https://wcc.webeventservices.com/eventRegistration/EventLobbyServlet?target=registration.jsp&cb=&tile=false&eventid=277065&sessionid=1&key=2BB8C95B8767FEFAC57D086296B4BE6D&cb=blank&sourcepage=register “,”空白“); }

flash不喜欢https链接。它可以与其他链接配合使用。有什么想法吗? 提前感谢您对此问题的帮助。

在Html页面:

您需要将allowScriptAccess设置为sameDomain,即使sameDomain不执行此任务,也需要设置为始终

当然,对于对象和EmbeddeTag都需要这样做。例如:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="295" height="240">
    <param name="allowScriptAccess" value="always" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="http://server/flash.swf">
    <param name="quality" value="high">
    <embed src="http://server/flash.swf" quality="high" allowScriptAccess="always" allowFullScreen="false"  pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="295" height="240"></embed>
</object>