[flexcoders] Autogenerated CFC Wizard creating folder structure error

2008-04-06 Thread flexuser1
Hi guys, I used the coldfusion CFC wizard to map a DB table to an AS class + LiveCycle cfcs but it gives me this error in Flex builder when I try to compile. 1172: Definition mx.data:IManaged could not be found. Would someone be able to remote login to my server and take a look? I can

[flexcoders] Re: How to keep a text font smooth when rotated

2008-04-06 Thread m88e24
Use embedded fonts or embed the font you use. Although this does not guarantee absolute pixel perfection. Try different font-grid-fit-type setting see if it differs much in rotated position. Brgds, Eduard --- In flexcoders@yahoogroups.com, Mario Falomir [EMAIL PROTECTED] wrote: Hi, Im

[flexcoders] How to keep a text font smooth when rotated

2008-04-06 Thread Mario Falomir
Hi, Im building an app. where I need to be able to rotate texts, they way Im doing it is to convert the text label to bitmap, but when I rotate the bitmap, the text seems to be a little bit distorted, when it has no rotation it looks smooth, is there any way to make it look smooth at every angle ?

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-06 Thread hworke
I also do have same kind of problem. But I never tried to refresh the array collection. I tied a button to the Httpservice and once the array is populated if you press the button, which send the httpservice request, all the data disappear. Now if you press the button second time, that

[flexcoders] Positioning error tips when using Validators

2008-04-06 Thread Dave Glasser
I have some TextInputs along the right side of the stage, and the error tips popped up by the Validators are clipped off the right side. Is there any way to make them appear to the left of the TextInputs?

[flexcoders] Problem dropping data from list to list

2008-04-06 Thread Yossi Gordin
Hi, I have a problem with drag and drop operation from list to list. I want to drag a row from one list and drop it on a row in another list without selecting one item in the target list first. How can i identify which row i am dropping the target? the dragDrop, dragEnter, dragOver events

[flexcoders] Cannot change Loader object's width and height in constructor.

2008-04-06 Thread mouhong.lin
Hi. I create an instance of Loader class. Then use it to load a png file. However, I cannot change the loader's width and height. Code: var _url:URLRequest = new URLRequest(a.png); var _loader:Loader = new Loader(); _loader.load(_url); this.addChild(_loader); If I just type the code above,

Re: [flexcoders] How to display a button's icon from a remote source?

2008-04-06 Thread Daniel Gold
Sure switching on the type of an argument to a setter would work, for some reason I thought the 'source' on an image was a style instead of a property. I try to expose as many styles as possibly for custom components so they're easily skinnable in CSS, but I guess there's no way to expose a style

Re: [flexcoders] Drop anywhere to remove

2008-04-06 Thread Daniel Gold
I would think you'd have to write completely custom drag functions that listen for mouse down on your component, and then on mouse move keep listening for the target to not be your container, as soon as it isn't, accept the DragDrop and start listening for mouse up to handle the removal. I keep

[flexcoders] Re: how can i access an object in a for

2008-04-06 Thread cavi21
thanks alex for the reply, so do you mean, that if I have a panel (insidePanel_1 obtained by a for in some function) inside some panel (rootPanel) that is locate in the main application, the way a can access is like this: rootPanel[insidePanel_1].someProperty I tried this but I

Re: [flexcoders] weird NumericStepper question / script

2008-04-06 Thread Ganesh Suyampirakasam
http://www.ziddu.com/download.php?uid=aaqdm5apZbKgluKnYaqhkZSpXqqfnZim1 - Original Message From: grimmwerks [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, 6 April, 2008 3:19:44 AM Subject: [flexcoders] weird NumericStepper question / script I've got 4

Re: [flexcoders] how can i access an object in a for

2008-04-06 Thread Agustin Cavilliotti
Alex, thanks for the reply, so you mean that I¹ve to write: this[³name_²+i].property. Or how? Thanks On 4/5/08 11:30 PM, Alex Harui [EMAIL PROTECTED] wrote: That syntax should still work. Note that there are no _levels anymore. From: flexcoders@yahoogroups.com

[flexcoders] Re: Why MouseEvent.Click Event doesn't work

2008-04-06 Thread mouhong.lin
Thanks very much! :) --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Shapes are not InteractiveObjects so they don't emit mouse events. Use Sprite instead From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] RIA Developers - Golden Opportunity

2008-04-06 Thread uttam.sanghi
Hi, Hi , This is Uttam ( [EMAIL PROTECTED] )here I represent a head-hunting firm called WengerWatson. Currently for positions in a renowned US based company I am looking for RIA professionals having atleast 4 years of experience in a product development company as a developer. We have

Re: [flexcoders] Drop anywhere to remove

2008-04-06 Thread Daniel Gold
Well after trying to write a quick example now I'm not so sure. The document I linked to earlier has this statement: A control must define a handler for a dragEnter event to be a drop target. That leads me to believe every other container in the application would have to add a dragEnter handler

Re: [flexcoders] Partial result from HTTPService call

2008-04-06 Thread p_repetti
OK then, I rewrote it with URLLoader, avoiding the HTTPService.send() call, using an URLRequest instead: now all of the image bytes get to the client. Thanks to all who helped. P. Dmitri Girski wrote: Hi Pier, I said that I am not sure about getting binary data via HTTPService as I

[flexcoders] Re: Problem dropping data from list to list

2008-04-06 Thread Yossi Gordin
Couldn't find a workaround and i needed a solution fast, so i created a custom item renderer and moved all the drag and drop logic there. If any of you have a better solution, please post it. Regards, Josef --- In flexcoders@yahoogroups.com, Yossi Gordin [EMAIL PROTECTED] wrote: Hi, I

[flexcoders] Scrollbars not appearing for big image display

2008-04-06 Thread p_repetti
Why aren't scrollbars appearing when I set a very large image into a container ? MXML is as follows: mx:Canvas id=vizImageCV left=0 right=0 top=0 bottom=0 clipContent=false mx:Image left=0 right=0 top=0 bottom=0 id=vizImage scaleContent=false/ /mx:Canvas Image data is set afterwards, once

[flexcoders] how do you guys handle reporting?

2008-04-06 Thread Derrick Anderson
hi, i have a crm application that I am going to start adding reports to. I haven't done much with reports in flex, and i'm looking for a nice reporting solution. I know all about FlexReport but it seems very new in development and i need something more robust like the report builder included in

RE: [flexcoders] how do you guys handle reporting?

2008-04-06 Thread Pavel Cristian Gabriel
I am using Microsoft SQL Server Reporting Services. It is integrated to Microsoft SQL Server (Database), the deployment of the reports is on the Web and they have Excel, Word, PDF, TIFF, or .XML format files for exporting these reports. I want to mention some other features.

Re: [flexcoders] how do you guys handle reporting?

2008-04-06 Thread Derrick Anderson
can i ask how you integrate that with your flex app? do u just send them to another window that loads the sql reporting services? thanks, d. On Sun, Apr 6, 2008 at 4:18 PM, Pavel Cristian Gabriel [EMAIL PROTECTED] wrote: I am using Microsoft SQL Server Reporting Services. It

[flexcoders] Re: Scrollbars not appearing for big image display

2008-04-06 Thread Tim Hoff
Hi, By using constraints on the image itself (top, bottom, left, right), you are actually setting the size of the image. Take those out and your scrollbars should appear; assuming that the actual size of the image is larger than the size of the container. -TH --- In

[flexcoders] Flex Code Behind issue

2008-04-06 Thread firdosht
Hey guys, so I have created a simple flex proj mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute themeColor=#0EFF02 mx:Script ![CDATA[ private function onOver(evt:Event):void{ trace(onOver : +evt.currentTarget ); test.setStyle(backgroundColor,0xff00ff);

[flexcoders] Flex Code Behind issue

2008-04-06 Thread firdosht
Hey guys, so I have created a simple flex proj mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute themeColor=#0EFF02 mx:Script ![CDATA[ private function onOver(evt:Event):void{ trace(onOver : +evt.currentTarget ); test.setStyle(backgroundColor,0xff00ff);

[flexcoders] Re: Force skin state

2008-04-06 Thread jfrumar
Do we have an answer to this yet? I want to know too! I know you can call currentState='state' on an embedded flash component, but how can you do the same thing with a skin? --- In flexcoders@yahoogroups.com, rleuthold [EMAIL PROTECTED] wrote: Hi, Is there a way to force a component to

[flexcoders] Datatip in datagrid not working properly

2008-04-06 Thread stuartward
I have enabled showDataTips in the columns of a datagrid. The datatips show up for all cells regardless of whether the text is clipped or not. According to the Flex 3 documentation: If you enable data tips, they only appear for fields where the data is clipped. I only want to show the datatip

[flexcoders] Flex Code Behind issue

2008-04-06 Thread firdosht
Hey guys, so I have created a simple flex proj mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute themeColor=#0EFF02 mx:Script ![CDATA[ private function onOver(evt:Event):void{ trace(onOver : +evt.currentTarget ); test.setStyle(backgroundColor,0xff00ff);

[flexcoders] Flex Code Behind issue

2008-04-06 Thread firdosht
Hey guys, so I have created a simple flex proj mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute themeColor=#0EFF02 mx:Script ![CDATA[ private function onOver(evt:Event):void{ trace(onOver : +evt.currentTarget ); test.setStyle(backgroundColor,0xff00ff);

[flexcoders] Flex Code Behind Issue

2008-04-06 Thread firdosht
Hey guys, so I have created a simple flex proj http://www.actionscript.org/forums/showthread.php3?t=166539

[flexcoders] Remote Object w/ Spring

2008-04-06 Thread ron_mori
The goal is to build a simple Remote Object access of a Spring DAO bean. The Spring bean construction is good - a tool I've worked with before. The simple class (Test.class) accessed via Remote Object works fine too (I can pass parms into a simple method and grab the returned value). I've

[flexcoders] Loading Flex apps into Flash (AS3)

2008-04-06 Thread bick
I have an AS3 Flash app that successfully loads a very simple Flex app into a movieClip contained in the Flash app. There's a button that unloads it. And another that reloads the same Flex app. Doing this load, unload, load causes the flash player memory to increase the same amount upon each

[flexcoders] Re: How to remove space at the end of line chart when using disabledDays = [6,0]!

2008-04-06 Thread Craig
Hey Jim, I am ready to start in on this monkeypatch for disabled days white space... but don't know where or how to copy and paste the datetimeaxis class. Can you help me out? Also, what other specifics should I know? Should I call name it DateTimeAxis? I assume the program will not want

[flexcoders] Re: selecting a secure channel with RemoteObject

2008-04-06 Thread Aaron Miller
So is this not possible then? Can any one recommend an alternative solution? I could possibly create a standalone app that gets run in a pop up window, but that would create some complications with communication back to the main app. Any ideas? Thanks! ~Aaron On Mon, Mar 31, 2008 at 10:46 AM,

Re: [flexcoders] Re: selecting a secure channel with RemoteObject

2008-04-06 Thread Christian
I might be wrong, but it's my understanding that a channelset is simply a collection of channels to use in the event of a network failure or similar, so the way you're currently setting it up, it won't actually ever use the secure channel, because the default channel is working fine. (Again, I

[flexcoders] Re: Autogenerated CFC Wizard creating folder structure error

2008-04-06 Thread flexuser1
The project is one I downloaded from adobe's site on integrating CF+flex together. Somehow I can't compile it.

[flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-06 Thread jovialrandor
Alex, the HTTPService returns an empty arraycollection, but the datagrid still has the values from the last call. How do I in the code refresh the arraycollection, since the 'refresh ()' did not work? Thanks --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would think

[flexcoders] Browse files functionality

2008-04-06 Thread Remya Subramanyam
I have a Browse button in my present application. I need to implement the equivalent in Flex too. But, I couldn't get a clue in this matter yet. I came across FileReference and FileReferenceList class, but those classes doesn't help retrieving file locations. Moreover, I can't set a default

[flexcoders] Loading an SWF without adding it to a child

2008-04-06 Thread Austin Kottke
Hi, Im trying to just load in an SWF without having to immediately add the loader to the main stage. What happens is that I get an error immediately even using the example from the flex 3 docs. [SWF] C:\swf.swf- 681,227 bytes after decompression initHandler: [Event type=init bubbles=false

Re: [flexcoders] Drop anywhere to remove

2008-04-06 Thread dhay
Hi, Appreciate you taking time to try an example... that's what I was afraid of - anyone know of any other ways around it? cheers, David x54680 Daniel Gold [EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 04/06/2008 11:13 AM Please respond to flexcoders@yahoogroups.com To

[flexcoders] Re: Remote Object w/ Spring

2008-04-06 Thread ron_mori
Is it bad to reply to your own post? Sorry for my impatience. I have found an answer to my problem and maybe I can save others the reply effort. From Christophe Coenraets fine post on the matter ( http://coenraets.org/flex-spring/), I quote: So, if Flex clients can remotely access Java

[flexcoders] Re: Passing complextype parameter to webservice

2008-04-06 Thread kellis5137
Cool! I'll give it a try and see what happens. Thanks for the advice! Keith

Re: [flexcoders] Need to change the viewstack from a child container

2008-04-06 Thread Daniel Gold
if your structure is that simple, in the child you could do parent.selectedChild = newChild. It depends in what scope the code is executing. If your viewstack and children are defined in a single MXML file, then in a script block myviewstack would still be in scope and myviewstack.selectedChild

Re: [flexcoders] Fail to apply UITextFormat to UITextField in custom Component

2008-04-06 Thread brianrusseldavis
This thread seems to be the only help out there for UITextField and Formatting it via UITextFormat. The Adobe documentation fails to provide a working example. So I guess I will pose the question here with a very very simple example. Why is the following code wrong? The text displays but the

Re: [flexcoders] Flex newbie stuck with DataGrid headerRenderer

2008-04-06 Thread Daniel Gold
I've seen a few different approaches to the checkbox grid. Alex has a clean implementation, but without the select all header renderer. I believe Josh Tynjala has a few checkbox list components as well http://www.zeuslabs.us/ My take on the checkbox datagrid with a header renderer can be found

RE: [flexcoders] Loading an SWF without adding it to a child

2008-04-06 Thread Alex Harui
Flex apps must be loaded by a Loader that is on the display list. Flex Modules are more flexible From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Austin Kottke Sent: Sunday, April 06, 2008 5:35 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: How can I clear an ArrayCollection or Datagrid

2008-04-06 Thread Alex Harui
If the service returned an empty AC, I would verify that the DG has really been assigned that empty AC. Read back the dataProvider on the DG and see what its length is. You can also try to manually reset the DG to an empty AC and see if it refreshes that way.

RE: [flexcoders] Datatip in datagrid not working properly

2008-04-06 Thread Alex Harui
If you used dataTipFunction, it will show up regardless of clipping. Otherwise, it should require clipped text. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of stuartward Sent: Sunday, April 06, 2008 2:34 PM To:

RE: [flexcoders] Re: how can i access an object in a for

2008-04-06 Thread Alex Harui
All id's are on the document/this object. If you have: mx:Panel id=rootPanel mx:Panel id=insidePanel_1 / mx:Panel id=insidePanel_2 / Then you would use this[insidePanel_ + i] From: flexcoders@yahoogroups.com

RE: [flexcoders] Cannot change Loader object's width and height in constructor.

2008-04-06 Thread Alex Harui
Because you are now working with flash.display.* classes, where the width/height are part of the transform properties and touching them when the object is empty resets the scale values to 0. It is one of the reasons UIComponent overrides width/height. From:

RE: [flexcoders] Positioning error tips when using Validators

2008-04-06 Thread Alex Harui
Tooltips/errortips have code that tries to detect that the tip would be clipped by the stage boundary and adjust the position accordingly. If you want to override that behavior, the TOOLTIP_SHOW event gives you the opportunity to move the tooltip. From:

[flexcoders] HttpService post error 2032:iostream error

2008-04-06 Thread longxjyh
When I use HttpService to send data by post method,I encounter a problem.I find if the length of the post data is over 1022,then flex rises the runtime error 2032.However the data is sended to server wholelly and the server has accepted all the data without any error.I can't understand why

[flexcoders] Re: Loading Flex apps into Flash (AS3)

2008-04-06 Thread bick
Looking in the debugger I see 5 new WeakMethodClosure listeners on the stage each time the Flex app is loaded. Unloading the Flex app does not remove these. The listeners refer to the mx.managers.FocusManager class. Is the Flex app's FocusManager is adding listeners to the stage that are not

[flexcoders] Re: Flex Project Metrics ?

2008-04-06 Thread maxdracon
Were you ever able to find anything? - Kevin --- In flexcoders@yahoogroups.com, r0main [EMAIL PROTECTED] wrote: Thanks for the reply, unfortunately I'm not yet in the dynamic metrics (usage of the application), but rather than in static metrics, code length, lines per packages, etc... To

RE: [flexcoders] Re: Loading Flex apps into Flash (AS3)

2008-04-06 Thread Alex Harui
A weak method closure with no backreferences can be a false positive from the profiler. If you are going to be loading just a few apps, the WMCs should be ignorable. If you're going to be loading lots of apps, you might want to load them into an intermediary Flex app