FreeTextBox 插入flash
我在aspx页面中导入了两个js文件 FTB-FreeTextBox.js,FTB-Pro.js并且在js同一目录放入了zh-cn.xml文件在Pape_load事件中加入了如下代码:
FreeTextBoxControls.ToolbarButton tb = new FreeTextBoxControls.ToolbarButton("插入 Flash", "", "insertflash");
tb.CommandIdentifier = "insertFlash";
tb.ScriptBlock = "this.ftb.InsertFlash();";
this.ftbjianjie.Toolbars[4].Items.Add(tb); //ftbjianjie FreeTextBox的id
falsh按钮成功放入了FreeTextBox的工具栏,但是运行时报了两个js错误,
1 FTB_FreeTextBox.prototype.EditElementStyle = function(el) {
var styleWin = window.open("","propWin","width=530,height=420,status=0,易做图s=0");
if (styleWin) {
styleWin.focus();
} else {
alert("请关闭你的弹出窗口阻止软件。");
return;
}
//return; //--->这个地方出错说是 未结束的字符串常量
html = FTB_StyleEditorHtml;
2 new FTB_Button('ftbjianjie_4_3','insertFlash',function() { this.ftb.InsertFlash(); },null,false,null),//----->对象不支持此属性方法
--------------------编程问答-------------------- 是不是不支持呀
补充:.NET技术 , ASP.NET