flexbuilder

How to turn off the beep sound in Eclipse?

孤人 提交于 2019-12-06 18:09:37
问题 On Mac OS X, I am running Flex Builder (which is basically a customized Eclipse). When I do a Find it beeps if it cannot find the selected text and when it wraps the search to the top. Is it possible to turn off that beep? I've searched the internet and the preferences pane to no avail. 回答1: I managed to bypass Eclipse default "run beep" on windows, by setting setting the "beep" sound to a silent .wav file 回答2: You can get rid of it by turning down the alert volume system-wide in the Mac OS

Connecting any database directly from flex

こ雲淡風輕ζ 提交于 2019-12-06 09:52:54
Is it possible to connect any database from flex directly? Not unless you use Adobe AIR for desktop at which time you'd be using the SQLLite api's to create/connect to a sqlite database file. http://livedocs.adobe.com/flex/3/html/help.html?content=SQL_01.html Anything else is going to require a back end service to handle such transactions. You can use asSQL as mentioned by michael, or use the Adobe Air runtime. However, this must be said about using this library: It is EXTREMELY insecure to have a straight database connection from the client unless it's from Adobe Air since the db is local.

Are Flex charts available in the free Flex SDK?

时间秒杀一切 提交于 2019-12-06 06:53:08
Hmmmm... It appears that charts are only available through the Flex SDK that comes built-in with Flex Builder. This is a problem, since I want to use Flex 3.3, and Flex Builder came with 3.2. Eclipse is also ticking me off, and I prefer to use a different IDE (FlashDevelop). Any way around this? And is there anything else that isn't included the the free SDK that I should be aware of? The charts are only available with the professional Flex Builder plugin. If you have a FB license, however, there is no reason you can't use the libraries with FlashDevelop. You can download the Data

Why the is flexbuilder plugin for eclipse so slow to open and compile?

*爱你&永不变心* 提交于 2019-12-05 20:09:10
I've got a decent computer. ( something with dual-core in the name and a lot of ram ). Sometime FlexBuilder prompt the "builder project" loading bar only when i open a simple mxml file. It's look like he does some difficult jobs... i don't ask for anything fancy. I just want the file open, in text mode. Every time i hit ctrl+s, i fear the "building project who take forever" thing. I've disable the automatic build, but it's not convenient. Another thing, more understandable. I'v got a Ant task who compile our code with the flexBuilderSdk. It's take forever ( like 2 min for 100 .as file and 20

Flex builder3 is not generating html wrapper when targeting flex 4 sdk

时间秒杀一切 提交于 2019-12-05 19:32:41
In Flex builder 3 when I create a new flex application targeting the flex 4 sdk, it wont generate a html wrapper file. I have hunted around the web for answers, but no success. I have made sure the box is checked in the project properties to generate html wrapper. The only workaround is to target an older version of the sdk (i.e. 3.2), which will cause the wrapper to be generated. Then I can revert the project to sdk 4. This then means I can never do a clean of my project because this will result in the wrapper being deleted. Has anyone else come across this? Is this just a bug with

Flex Builder 3 executing old source codes

只谈情不闲聊 提交于 2019-12-05 13:52:24
I'm facing this problem again and again, but can't find any solution (except mine, which is not as a good one I guess). Don't know why, sometimes Flex Builder executes old source codes after making changes. While debugging I see how it steps through a source (e.g. changing local variables) which does not exist (even if I delete all that block or function). My way to solve that is to delete the project (backing up the source codes of course) and create a new one, add the backed up sources to the project and rebuild. It starts to work as it should work, but this way is not as comfortable,

How to turn off the beep sound in Eclipse?

谁都会走 提交于 2019-12-05 01:03:10
On Mac OS X, I am running Flex Builder (which is basically a customized Eclipse). When I do a Find it beeps if it cannot find the selected text and when it wraps the search to the top. Is it possible to turn off that beep? I've searched the internet and the preferences pane to no avail. I managed to bypass Eclipse default "run beep" on windows, by setting setting the "beep" sound to a silent .wav file You can get rid of it by turning down the alert volume system-wide in the Mac OS sound preferences (Sound -> Sound Effects -> Alert volume). On Linux you can disable this same (annoying) beep by

how can design picker in android using adobe flex views

北城余情 提交于 2019-12-04 19:30:42
i am implementing adobe flex application in this application i am using picker type view using adobe flex in adobe flex builder how can implement design in this view please forwrad some suggestion i am new in adobe flex development thanks in advance Narasimha 来源: https://stackoverflow.com/questions/7872826/how-can-design-picker-in-android-using-adobe-flex-views

How open pdf in Air for Android/Black berry

倾然丶 夕夏残阳落幕 提交于 2019-12-04 16:53:31
I want to open pdf in Air for Android/Black berry. How i do that? I use AIR 2.6 and IDE is Flash Builder 4.5. StageWebView. http://help.adobe.com/en_US/as3/dev/WS901d38e593cd1bac3ef1d28412ac57b094b-8000.html Example copied from the link above: package { import flash.display.MovieClip; import flash.media.StageWebView; import flash.geom.Rectangle; public class StageWebViewExample extends MovieClip{ var webView:StageWebView = new StageWebView(); public function StageWebViewExample() { webView.stage = this.stage; webView.viewPort = new Rectangle( 0, 0, stage.stageWidth, stage.stageHeight );

How to update a MySql DB using Flex

瘦欲@ 提交于 2019-12-04 04:53:59
问题 Just got developing with Flex, and i like it. I've done some simple apps to get the felling of it, nothing involving updating a file or a database. I wanted help, how to do a query to a MySql DB from a Flex application (thats gonna be running in a web server). I didn't saw any duplicated questions, sorry if any exists, just point me to it. EDIT: Using PHP to do the query on the server. 回答1: While I've never done this myself I have read and watched tutorials about it. The tutorial can be found