Flash Builder / Flex:使自动完成像 Flash Develop 一样工作(字符串模式)

发布于 2024-11-19 23:40:10 字数 798 浏览 4 评论 0原文

是否有某种方法可以使 Flash Builder / Flex 的自动完成行为与 Flash Develop 在您键入的 var/method/property 中获取模式的智能方式(即使不完全相同)类似?

例如,当前 Flash Builder 和 Flex 要求您逐个字符地键入要使用的类名、属性或方法:

/*
 still won't read your mind whether you're looking for URLRequest or URLLoader at
 this point, might even be an UncaughtError perhaps?
*/
var myURL:U... [???]

但在 FlashDevelop 方式中,您可以键入一部分,但它仍然可以让您了解所要使用的内容。正在尝试完成并过滤自动完成列表以仅显示最相关的项目:

/*
 Hurray! Only had to type "UReq" and it automatically picks it up as we expected.
*/
var myURL:UReq...   [URLRequest]
var myURL2:Req...   [URLRequest, maybe some other classes...]
var myURL3:quest... [URLRequest, and maybe some other 'quest' matches...]

Flash Builder、Flex 或 Eclipse 中是否有任何插件可以通过这种方式扩展自动完成功能?

谢谢!

Is there some way to make the Auto-Completion of Flash Builder / Flex behave similarly, if not exactly the same, as Flash Develop's smart way of picking up the patterns in the var/method/property that you type?

For instance, currently Flash Builder and Flex requires you to type character-for-character the class name, property or method that you want to use:

/*
 still won't read your mind whether you're looking for URLRequest or URLLoader at
 this point, might even be an UncaughtError perhaps?
*/
var myURL:U... [???]

But the FlashDevelop way, you could type a portion and it would still make some sense of what you're attempting to complete and filters the auto-complete list to show only the most relevant items:

/*
 Hurray! Only had to type "UReq" and it automatically picks it up as we expected.
*/
var myURL:UReq...   [URLRequest]
var myURL2:Req...   [URLRequest, maybe some other classes...]
var myURL3:quest... [URLRequest, and maybe some other 'quest' matches...]

Is there any plugins available in Flash Builder, Flex or Eclipse to extend the Auto-Completion functionality this way?

Thanks!

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

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

发布评论

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

评论(1

倾城花音 2024-11-26 23:40:10

是的,Flash Builder 仍然缺少很多功能。如果您需要其他 IDE,您可能需要考虑 FDT 或 IntelliJ。或者你也可以看看SourceMate,一个非常好的Flash Builder插件,可以添加你需要的FB没有的功能不给你:)

Yeah, still a lot of features lacking in Flash Builder. You might want to look at FDT or IntelliJ if you want another IDE. Or you can also look at SourceMate, a very good Flash Builder plugin to add the features you need that FB doesn't give you :)

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