使用 JSFL 获取舞台上所选项目的名称

发布于 2024-12-12 06:29:37 字数 235 浏览 1 评论 0原文

我希望能够选择已添加到 Flash 舞台中的项目(图像、影片剪辑等)并访问其文件名。

因此,如果我将名为“imageOne.png”的图像拖到舞台上,我希望能够访问其名称“imageOne.png”,并将其传递给我正在构建的 Flash 扩展。

我知道我可以从图书馆获取详细信息,但不能从舞台上选择的项目获取详细信息。

谁能告诉我如何使用 JSFL 访问此信息。

谢谢

斯蒂芬

I want to be able to select a item (image, movieclip etc) that has been added to the stage in Flash and access its file name.

So if I drag a image called 'imageOne.png' onto the stage, I want to be able to access its name, 'imageOne.png', and pass it to a Extension for Flash that I'm building.

I know I can get details from the library, but not from the items selected on the stage.

Can anyone tell me how to access this information using JSFL.

Thanks

Stephen

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

月下伊人醉 2024-12-19 06:29:37
fl.getDocumentDOM().selection[0].libraryItem.name
fl.getDocumentDOM().selection[0].libraryItem.name
薆情海 2024-12-19 06:29:37

您可以使用以下方法选择库项目:

fl.getDocumentDOM().library.selectItem('name')

选择库后,您可以访问几乎所有您需要的内容。

另外,有关 JSFL 中可用内容的更多信息:http://help.adobe.com/en_US/flash/cs/extend/WS5b3ccc516d4fbf351e63e3d118a9024f3f-7ff8CS5.html

You can select a library item with the following method :

fl.getDocumentDOM().library.selectItem('name')

After selecting a library, it's possible to access pretty much everything you need.

Also, more about what's available to you in JSFL : http://help.adobe.com/en_US/flash/cs/extend/WS5b3ccc516d4fbf351e63e3d118a9024f3f-7ff8CS5.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文