是否可以從Flash電影中打開JQuery燈箱?是否可以從Flash電影中打開JQuery燈箱?
1
A
回答
3
嘗試Calling any JS lightbox from Flash using jQuery
閃光燈:
import flash.external.ExternalInterface;
button.addEventListener(MouseEvent.CLICK, external, false, 0, true);
function external(evt:MouseEvent):void {
ExternalInterface.call("external", "lightbox/photos/image1.jpg");
}
的Javascript:
function external(path) { // pass in the correct path to the function so we only need one <A> for infinite amount of calls from flash
// if the lightbox does not exist we will make it
if ($('a#lightbox').length == 0) {
$("body").append("</A><A id="lightbox" style="visibility: hidden; position: absolute; left: -9999px;" href="http://www.thetruetribe.com/+path+">calling js lightbox from flash</A>");
$('a#lightbox').lightBox();
// if it already exists but the path is different we will set the new path
} else if ($('a#lightbox').attr("href") != path) {
$('a#lightbox').attr("href", path);
}
// now we will simulate the click here.
$('a#lightbox').trigger("click");
}
,或者你可以端口flashLightBoxInjector Start Lightbox from Flash一個PrototypeJS類jQuery框架沒有太多的麻煩,如果你有點自信在寫作javascript
0
是的,你可以做到。
要調用javascript函數doIt方法(),你寫的:
getURL("javascript:doIt()");
不過說真的,如果你有這樣做,可能有更好的方法來解決你的問題。
jrh
相關問題
- 1. 使用jquery燈箱打開html頁面
- 2. 在沒有雙擊的情況下在Featherlight.js燈箱中打開燈箱 - 是否有可能?
- 3. 打開pirobox燈箱,而不是點擊
- 4. 燈箱僅打開一次
- 5. Flash和javascript,燈箱
- 6. 在Flash中嵌入外部電影剪輯是否可行
- 7. 是否可以用ffmpeg創建示例電影(迷你電影)?
- 8. 可以通過jQuery的燈箱
- 9. 燈箱,可以自動打開,具體取決於url路徑
- 10. 使用燈箱,可以打開另一個文件
- 11. 我可以從Flash電影中調用java類方法嗎?
- 12. 打開現有的jQuery燈箱長廊從鏈路
- 13. Flash電影(SWF)中的文本元素是否可以使用網頁字體?
- 14. 是否可以在PrettyPhoto燈箱中禁用身體捲動?
- 15. colorbox不會打開燈箱,而是直接打開網址
- 16. 燈箱在新頁面中打開
- 17. 在頂部框架中打開燈箱
- 18. 在燈箱中打開網頁
- 19. 在燈箱中打開外部網址
- 20. 關閉當前燈箱後打開新的Bootstrap燈箱
- 21. 從JavaScript控制Flash電影
- 22. 燈箱javascript/flash的頁面
- 23. 在彈出的窗口中打開照片Jquery(燈箱)
- 24. 是否有可能僅從ActionScript中創建Flash影片?
- 25. 是否可以從JavaScript打印Flash動畫的屏幕?
- 26. 燈箱 - 是否可以強制調整圖像大小?
- 27. 是否可以打電話在qpython
- 28. jQuery - 鉻燈箱
- 29. 非jQuery燈箱
- 30. 燈箱jquery api
謝謝你......我也想過使用ExternalInterface.call。但它只是在AS3的權利?我想將jquery添加到用AS2編寫的代碼中。任何機會? – Dubaigenius 2009-06-17 11:57:39