[flexcoders] Simple text vs htmlText length question

2008-07-02 Thread cmalartre
Why does the simple code below output: - text.length : 4 textField.length : 4 text : '1 2' textField.text : '12' - and not: - textField.text : '1 2' - ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Am I the only one who trace like this?

2008-02-21 Thread cmalartre
Dear pro-coders, I would like to know if you trace like this all your function: public function deleteNote(uid:String):void { trace(SQLiteDb.as - deleteNote() - uid: + uid) (...) } I find it very usefull in conjunction with the Flex Console or a custom debugging Window. I admit my

[flexcoders] What could make a deleted modal popup redraw the whole screen?

2008-02-20 Thread cmalartre
Dear good fellow coders, Simple problem with modal popups: 1) Right-click Show redraw region 2) Only part of the app are bordered red 3) Create popup with modal=true 4) Delete popup with PopupManager.removePopup(this) 5) Right-click Show redraw region 6) Whole app is always redrawn. The stage's

[flexcoders] Re: Rich Text Editor

2008-02-15 Thread cmalartre
Hi Gordon Smith all, I thought that the Buzzword aquisition was directly related to Flash Player code named Astro: http://labs.adobe.com/wiki/index.php/Astro Adobe is also developing a library of ActionScript-based text layout components based on these new APIs to provide easy-to-integrate

[flexcoders] Simple questions for an SQLite specialist

2008-02-15 Thread cmalartre
Hi, SQLite documentation is a bit lite ;-) I'm developping my first Air app. I did some test and now I have some basic questions: 1) Two SQLConnection Would it be a good strategy to open two SQLConnection on the same DB? One Asynchrone and one Synchrone. - Could it lock the db? - What happens