RE: [flexcoders] Re: Constraining the DragManager

2009-11-19 Thread Alex Harui
The DragProxy listens for the mouse in capture phase so it beats out any target phase listener no matter what the priority. I would think you would want to be last though, and shove the dragIndicator after the DragProxy logic tries to move it where you don't want it. Alex Harui Flex SDK Develo

RE: [flexcoders] Re: how to enable stack traceback?

2009-11-19 Thread Alex Harui
I'm running both 9 and 10 on Windows. When you run without the debugger could you be launching a different player? Try displaying Capabilites.version and isDebugger. Could be a Mac thing. I don't have a Mac. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http:/

[SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
yes/no is looking for a boolean value. when the checkbox in the flex ui is checked the value recorded in database is yes but remember yes/no in access is a checkbox in the database column so if in the flex ui the checkbox is checked then the checkbox is also checked in the access table and if it

RE: [SPAM] [flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread Tracy Spratt
Sorry I don't know CF and it has been 20 years since I did any Access. But I suspect a data type problem. Exactly what is a "yes/no" field looking for? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.co

RE: [SPAM] Re: [SPAM] Re: [SPAM] Re: [SPAM] Re: [flexcoders] XML e4x error

2009-11-19 Thread Tracy Spratt
If you have a case that works and one that doesn't, start changing the one that works into the one that does not, one piece at a time, until it breaks. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]

[flexcoders] Re: How to tell when column visiblity change is done?

2009-11-19 Thread tntomek
--- In flexcoders@yahoogroups.com, "turbo_vb" wrote: > > You could extent DataGridColumn and add two methods. One to set the visible > property to false and dispatch a hide event, and the other to set the visible > property to true and dispatch a show event. > > -TH > > --- In flexcoders@ya

[flexcoders] Validation Error !!!!

2009-11-19 Thread criptopus
I have a custom mxml component that is added using a popUpManager in the component which is a TitleWindow sits a Form and when I try to add a Validator to the form i get this compile error. Component declarations are not allowed here. (Note: visual children must implement mx.core.IUIComponent)

[flexcoders] Re: Installed Flash Player Is Not a Debugger

2009-11-19 Thread cuttenv
If it happens again I recommend first downloading the flash player uninstaller. Then uninstall flash player and reinstall the most recent version. This way you have a fresh install of the flash player. --- In flexcoders@yahoogroups.com, Joel Stransky wrote: > > Everytime I debug in Flex Builde

Re: [flexcoders] Re: Flex SDK Open Source

2009-11-19 Thread Matt Chotin
When we upgraded to Subversion 1.6 I think the nice web viewer broke. We're looking at getting that rebuilt for the newer Subversion but it's going to take our IT folks a while since they're swamped with other things. Might be worth getting an SVN client that can browse the repository. You ca

[flexcoders] Re: Flex SDK Open Source

2009-11-19 Thread cuttenv
yah it's been like this for a couple days. I guess I'll try using svn later tonight --- In flexcoders@yahoogroups.com, "steveb805" wrote: > > No, I get a "Oops! This link appears to be broken." message (chrome) > > --- In flexcoders@yahoogroups.com, "cuttenv" wrote: > > > > Hey guys, > > Can a

[flexcoders] Re: Flex SDK Open Source

2009-11-19 Thread steveb805
No, I get a "Oops! This link appears to be broken." message (chrome) --- In flexcoders@yahoogroups.com, "cuttenv" wrote: > > Hey guys, > Can anyone browse the source for the flex sdk on adobe's site? > http://opensource.adobe.com:81/svn/opensource/flex/sdk/ > > I followed the link from the confl

[flexcoders] Flex SDK Open Source

2009-11-19 Thread cuttenv
Hey guys, Can anyone browse the source for the flex sdk on adobe's site? http://opensource.adobe.com:81/svn/opensource/flex/sdk/ I followed the link from the confluence site: http://opensource.adobe.com/wiki/display/flexsdk/Get+Source+Code

[flexcoders] Best Pattern for a Complex Application Options/Settings Box

2009-11-19 Thread steveb805
On the verge of creating a non-Trivial Dialog screen/box for my app where a User creates categories, chooses settings (warn when deleting), Default behaviour, etc... It'll have 3 tabs. I'll be pulling the settings from a MySql "Options" table. Is it common practice, even for Complex dialog's,

[flexcoders] Re: How to tell when column visiblity change is done?

2009-11-19 Thread turbo_vb
You could extent DataGridColumn and add two methods. One to set the visible property to false and dispatch a hide event, and the other to set the visible property to true and dispatch a show event. -TH --- In flexcoders@yahoogroups.com, "tntomek" wrote: > > I have a datagrid with a lot of col

[flexcoders] Re: ASDoc & MXML

2009-11-19 Thread turbo_vb
Google: "Flex ASDocs MXML" -TH --- In flexcoders@yahoogroups.com, "Amy" wrote: > > > > --- In flexcoders@yahoogroups.com, "turbo_vb" wrote: > > > > Three dashes for the comment: > > > > http://www.adobe.com/2006/mxml";>-TH--- In > > flexcoders@yahoogroups.com, "Amy" wrote: > > > > > > When

[flexcoders] Re: ASDoc & MXML

2009-11-19 Thread Amy
--- In flexcoders@yahoogroups.com, "turbo_vb" wrote: > > Three dashes for the comment: > > http://www.adobe.com/2006/mxml";>-TH--- In > flexcoders@yahoogroups.com, "Amy" wrote: > > > > When you give a component defined in MXML an ID, you essentially make > it a public property of your componen

[flexcoders] How to tell when column visiblity change is done?

2009-11-19 Thread tntomek
I have a datagrid with a lot of columns. Sometimes I may hide/show 20 of those at a time, this takes up a few seconds and I'd like to give the user some feedback when its ready. Is there any way to get "visibilityChanged" event or something along these lines? If there is no solution like this

[flexcoders] combining multiple styles

2009-11-19 Thread Joel Stransky
In a Flex .css document, is there any shorthand for using the same value on multiple styles? For instance: .leftTab{ selectedUpSkin, selectedOverSkin, selectedDownSkin: Embed(source="myImage.png"); } -- --Joel Stransky stranskydesign.com

Re: [flexcoders] Re: id css selectors

2009-11-19 Thread Joel Stransky
Thank you for the clarification. On Thu, Nov 19, 2009 at 2:00 PM, valdhor wrote: > > > You need to read the section titled "Summary and Background". > > In that section it states "Cascading Style Sheets (CSS) are used in Flex to > apply styles to visual components on the application display list.

[flexcoders] Re: ASDoc & MXML

2009-11-19 Thread turbo_vb
Three dashes for the comment: http://www.adobe.com/2006/mxml";>-TH--- In flexcoders@yahoogroups.com, "Amy" wrote: > > When you give a component defined in MXML an ID, you essentially make it a public property of your component, so I want to document all of these properties. Unfortunatley, I'm no

[flexcoders] flex 3 builder project setting with server on another box

2009-11-19 Thread flexdev
I have a livecyle DS (or BlazeDS) server which is different from my workstation where I am writing flex codes using flex builder 3. When creating a new flex 3 project, I need to specify Root folder/Root URL/Context root in "Configure J2EE SErver" screnn. It seems this screen is always assuming t

[flexcoders] Re: Copy or enumerate a CSSStyleDeclaration? (Flex 3.4)

2009-11-19 Thread Amy
--- In flexcoders@yahoogroups.com, "graham.t...@..." wrote: > > > How did you resolve this without access to the protected > CSSStyleDeclaration.overrides property? IIRC, if you look at the code to CSSStyleDeclaration, you can see how to use the factory property to create an object that has

[flexcoders] ASDoc & MXML

2009-11-19 Thread Amy
When you give a component defined in MXML an ID, you essentially make it a public property of your component, so I want to document all of these properties. Unfortunatley, I'm not sure how to "inline" ASDOC comments on them. Has anyone done this before? TIA; Amy

[flexcoders] Re: Subclassed DataGridColumn does not render in FB3 design view mode

2009-11-19 Thread Amy
--- In flexcoders@yahoogroups.com, "fourctv" wrote: > > Amy, > > it is already in a swc library. > > what do you mean by 'program for the design time view'? > all my DGC subclass does is add a couple extra properties. no changes or > overrides of any sort. > > tia > julio http://blogs.digit

[flexcoders] Re: Wonky alignment in mx:htmlText property (Flex 3)

2009-11-19 Thread Amy
--- In flexcoders@yahoogroups.com, "droponrcll" wrote: > > I think the MXML is more readable for a TextArea if you use the mx:htmlText > property, but I found that I got a giant left indent on the first line and > unexpected line breaks in the TextArea (with a giant indent again) when I > use

[flexcoders] Re: Copy or enumerate a CSSStyleDeclaration? (Flex 3.4)

2009-11-19 Thread graham.t...@rocketmail.com
How did you resolve this without access to the protected CSSStyleDeclaration.overrides property? --- In flexcoders@yahoogroups.com, "droponrcll" wrote: > > > > --- In flexcoders@yahoogroups.com, "droponrcll" wrote: > > > > I have a custom class that extends Canvas. I'd like this class to h

[SPAM] Re: [flexcoders] Passing an object to a rendererProvider

2009-11-19 Thread droponrcll
--- In flexcoders@yahoogroups.com, Jeffry Houser wrote: > > Tracy, > > I understood from the original e-mail that he was using a component as > an itemRenderer. If his 'item object' is being used an itemRenderer he > would have to create numerous mods to the list based classes to pass in >

[flexcoders] Re: id css selectors

2009-11-19 Thread valdhor
You need to read the section titled "Summary and Background". In that section it states "Cascading Style Sheets (CSS) are used in Flex to apply styles to visual components on the application display list. To-date we've supported simple type selectors and universal class selectors. Customers hav

[flexcoders] Re: Installed Flash Player Is Not a Debugger

2009-11-19 Thread turbo_vb
You could try re-instsalling the debug player plugin: http://download.macromedia.com/pub/flashplayer/updaters/10/flashplayer_1\ 0_plugin_debug.dmg -TH --- In flexcoders@yahoogroups.com, Joel Stransky

[flexcoders] Re: TabNavigator changes page (html) title

2009-11-19 Thread ynotob
Thanks, I'll give that a try, appreciate the detailed response. Do you know if it is fixed in more recent SDK releases? I've been meaning to upgrade the SDK for a while but have delayed because I'm not sure how painful / painless the process is. --- In flexcoders@yahoogroups.com, "Flex Boy"

Re: [flexcoders] Installed Flash Player Is Not a Debugger

2009-11-19 Thread Pete
I get that on Windows too, same scenario FB3 and debugging flash player v10, I usually have to restart FB to make it go away. Happens intermittently after a long (all day) programming session, memory leak maybe? Pete Joel Stransky wrote: Everytime I debug in Flex Builder I get this aler

[flexcoders] Re: Any issues with Windows 7(64bit) and Flex Builder

2009-11-19 Thread seanmcmonahan
Had an issue when using copylocale.exe with JRE not being installed. Never had this problem on Vista x64 but it was easily fixed by installing Java. Aside from that everything seems fine to me. --- In flexcoders@yahoogroups.com, Jeffry Houser wrote: > > > I've had no issues. ;) > > Greg He

[flexcoders] Re: Installed Flash Player Is Not a Debugger

2009-11-19 Thread Joel Stransky
Weird, just reinstalled FP10 debugger and it went away. On Thu, Nov 19, 2009 at 12:40 PM, Joel Stransky wrote: > Everytime I debug in Flex Builder I get this alert box. > > /Library/Internet Plug-Ins/Flash Player.plugin > > Flex Builder cannot locate the required debugger version of Flash Player.

[flexcoders] Installed Flash Player Is Not a Debugger

2009-11-19 Thread Joel Stransky
Everytime I debug in Flex Builder I get this alert box. /Library/Internet Plug-Ins/Flash Player.plugin Flex Builder cannot locate the required debugger version of Flash Player. You might need to install the debugger version of Flash Player 9 or reinstall Flex Builder. Do you want to try to debug

Re: [flexcoders] Re: id css selectors

2009-11-19 Thread Joel Stransky
I'm using 3.4 That article I linked to was last edited april 4th 2009. I'm new to flex so I just assumed that was an accurate spec. On Thu, Nov 19, 2009 at 9:36 AM, valdhor wrote: > > > What version of the SDK are you using? > > From what I can ascertain, ID selectors are new as of FB4. > > > ---

RE: [flexcoders] [SPAM] Re: Passing an object to a rendererProvider

2009-11-19 Thread InvertedSpear
Bumping to see if anyone can help me. I unserstand the concept of sending an object instead of a string, or sending the additional string. If Flex could read my mind I would be there. I just can't figure out how to execute that concept. Thanks to those that have provided me with help already, and

RE: [flexcoders] [SPAM] Re: Passing an object to a rendererProvider

2009-11-19 Thread InvertedSpear
Bumping to see if anyone can help me. I understand the concept of sending an object instead of a string, or sending the additional string. If Flex could read my mind I would be there. I just can't figure out how to execute that concept. Thanks to those that have provided me with help already, and

Re: [SPAM] Re: [SPAM] Re: [SPAM] Re: [flexcoders] XML e4x error

2009-11-19 Thread Daniel Freiman
Ok, that fixes the problem, but it doesn't explain why the problem was happening in the first place. Or it doesn't explain why the first three examples ever worked. Nowhere in my application did I ever define a default namespace. In all 4 cases when I trace "data.namespace().uri" I get " http://

[flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
here is were it fails in my cfc i have the following INSERT INTO homes(pool) VALUES("#arguments.pool#") the column in the table is pool and the id of the check box in the flex ui is also pool. in flex i have the following private function insertHandler():void{

[flexcoders] Re: how to insert checkbox value into database

2009-11-19 Thread stinasius
here is were it fails in my cfc i have the following INSERT INTO homes(pool) VALUES("#arguments.pool#") the column in the table is pool and the id of the check box in the flex ui is also pool. in flex i have the following private function insertHandler():void{

[flexcoders] Re: id css selectors

2009-11-19 Thread valdhor
What version of the SDK are you using? >From what I can ascertain, ID selectors are new as of FB4. --- In flexcoders@yahoogroups.com, Joel Stransky wrote: > > How is it that this page claims id selectors are valid yet Flex Builder > balks when I try to use them? > http://opensource.adobe.com/wik

[flexcoders] Re: how to enable stack traceback?

2009-11-19 Thread mitchgrrt
Yes I did try a simple case. I put some code that causes a null pointer exception into a screen's onCreationComplete handler. I see the traceback inside the debugger but nothing when running the program without the debugger. There seems to be a lot of confusion about this issue, and also just

[flexcoders] Re: using itemsChangeEffect when filtering a tilelist

2009-11-19 Thread stinasius
Guys any help...

[flexcoders] Re: TabNavigator changes page (html) title

2009-11-19 Thread Flex Boy
Yea I know, it's a bug in the historymangager(sdk 3.2), you have to set the pagetitle manual after pressing the tab.. work around: private var browserManager:IBrowserManager; private function initApp():void { browserManager = BrowserManager.getInstance(); browserManager.setTitle('your page titl

[flexcoders] Re: Constraining the DragManager

2009-11-19 Thread cuttenv
Hey Alex, That doesn't work. Grabbing the cursor from the system manager and then setting it's x value to a constant does indeed keep the cursor on a vertical line but the problem is then the drag proxy image is following your old mouse position (looks somewhat ghost like :). I then tried acces