RE: [flexcoders] Re: Set the height of a custom itemRenderer to its children

2009-06-23 Thread Alex Harui
Assuming you have set variableRowHeight=true, the List will ask the VBox for its explicitHeight then its measuredHeight. Make sure you haven't set explicitHeight or height on the VBox tag. Then the VBox's measurements should work correctly unless you have mx:Text or some other flow-based

RE: [flexcoders] prevent text from scrolling

2009-06-23 Thread Alex Harui
That problem occurs when the TextWidget is a few pixels too short. Pad the height by a few pixels and your problem should go away. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] need votes for adobe bugs

2009-06-23 Thread Kun Janos
Hi all, I need votes for the following adobe bugs: http://bugs.adobe.com/jira/browse/FP-1419 http://bugs.adobe.com/jira/browse/FP-1946 Thanks, Janos

Re: [flexcoders] need votes for adobe bugs

2009-06-23 Thread Tom Chiverton
On Tuesday 23 Jun 2009, Kun Janos wrote: I need votes for the following adobe bugs: Why :-) -- Helping to challengingly entrench users as part of the IT team of the year, '09 and '08 This email is sent for and on behalf of Halliwells LLP.

Re: [flexcoders] need votes for adobe bugs

2009-06-23 Thread claudiu ursica
Probably to get them up in the fixing queue since many votes gain you attention ... :) C From: Tom Chiverton tom.chiver...@halliwells.com To: flexcoders@yahoogroups.com Sent: Tuesday, June 23, 2009 12:50:16 PM Subject: Re: [flexcoders] need votes for adobe

[flexcoders] to get a handle when a flex component fully loaded.

2009-06-23 Thread Retheesh
Hi, I need to do some process (like create an image out of the display object) from my swf component after it is fully loaded(fully displayed). Is there a way to get a handle when the component is fully initialized and aligned. thanks Retheesh

[flexcoders] Updating WITHOUT human intervention

2009-06-23 Thread Raymond Brown
Say your school has a remote system collecting data miles away and you need to update it with no one there to help click through the dialog. Is there a way to do an update in adobe air without human intervention? Meaning we post a new update on the server and the next time the remote app

[flexcoders] Re: Pure MVC

2009-06-23 Thread sandrea83
Hi, I was just wondering since my existing framework application is using org.springextensions.actionscript.puremvc.patterns.mediator.IocMediator; it that considered as singleton, is that possible to convert it to multiton? Please guide me and advise. thanks in advance. --- In

[flexcoders] Modular application

2009-06-23 Thread sandrea83
Im involved in a framework development project, we use flex 3 ,action scripts, spring pure MVC pattern(mediator,proxy command) for our front end, GraniteDS as data services, and ejb3 as server classes. As part of effort to optimize the performance of application, we're taking into consideration

[flexcoders] I can't understand pureMVC

2009-06-23 Thread vladakg85
I try to learn this framework for a month, and I always stack somewhere, and now I need help. What I know: to make view, to make mediators, to make commands.. But, I don't understand proxy at all. First what should be there. I think that this is the place where I store service call methods and

Re: [flexcoders] prevent text from scrolling

2009-06-23 Thread thomas parquier
Thank you for your answers, Andriy, I've overriden the Text component to use the workarounds you mentionned on textField property, but they didnt work. Alex, a style padding doesnt work, but the following code in commitProperties() did the trick : uiDescription.validateNow();

Re: [flexcoders] I can't understand pureMVC

2009-06-23 Thread Simon Bailey
1) What should I do/type to store data in proxy and in what var? Is there any special var? Typically the proxy is storing an Object with your data which could as your quite rightly state, be a result from a service call of some type. For example, an ArrayCollection containing all your

[flexcoders] Re: Performance improvement recommendation

2009-06-23 Thread Amy
--- In flexcoders@yahoogroups.com, yial2 allen2...@... wrote: One thing the OP might want to try in addition to lightening the repeated components is to use a repeater and start out by just loading 5 (or however many are visible without scrolling), and then add to the collection after

[flexcoders] flex component into papervision - bad quality

2009-06-23 Thread duncmcm
Hi I have used the following code to add a flex component into a papervision primitive in this case a plane. The flex component is added through the papervision material then added to the plane and is interactive ok, IE I can still click the button. But the quality of the flex button is very

Re: [flexcoders] Updating WITHOUT human intervention

2009-06-23 Thread Pedro Sena
A little old, but may help you. http://blog.everythingflex.com/2007/03/20/apollo-self-updating-applications/ HTH On Mon, Jun 22, 2009 at 10:50 PM, Raymond Brown silenttr...@yahoo.comwrote: Say your school has a remote system collecting data miles away and you need to update it with no one

Re: [flexcoders] Re: Pure MVC

2009-06-23 Thread Simon Bailey
I have not used the Spring PureMVC stuff but looking at the Mediator class that IocMediator extends its using the standard version and not multicore which means it will not be based on multitons. However, I am not familiar enough with Spring as I said and therefore cannot suggest the

[flexcoders] Granite Data Services 2.0.0.GA (final) was released

2009-06-23 Thread fwolff999
Hi, Just to let you know that GraniteDS 2.0.0.GA (final) was released. Granite Data Services is a free, LGPL’d, alternative to Adobe LiveCycle Data Services for Java Entreprise platforms. This final 2.0 release is a major update, bugfix, and repackaging of all GraniteDS technologies. It also

[flexcoders] Re: domain problem in remoteobject application

2009-06-23 Thread valdhor
Inside your amfphp directory you will find a file globals.php. Change the $servicesPath variable to the full path to your services directory. HTH Steve --- In flexcoders@yahoogroups.com, Vikram Singh vikisingh...@... wrote: I am not getting excetly what you are trying to say me. Can

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
Hi, thank you so much, I did something that I was trying for whole month :( ddd :) But now I have one more problem, this one is small :) 1) I make remote call to .NET to login user, everything is fine retrive data, check if user exists its ok, data from service are in proxy, this is my code

Re: [flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread Simon Bailey
In your onResult method try assigning the data like: data = evt.result as User; // cast result to a User Object and assign to data Then you need to either: a) Have you mediator access the loginUserData directly (you may need to set it up as Bindable and dispatch an updated event - see

[flexcoders] Re: Radio Button in DataGrid urgent Plz

2009-06-23 Thread djhatrick
The flex 3 Cookbook covers this pretty well. --- In flexcoders@yahoogroups.com, Harish Sivaramakrishnan hsivaramakrish...@... wrote: Use a boolean property (ex: selected) in the dataProvider Object and bind the CheckBox in the itemRenderer's 'selected' property to {data.selected} Cheers

[flexcoders] Re: IP Adress

2009-06-23 Thread djhatrick
Only with the help of a server telling you it's ip address. --- In flexcoders@yahoogroups.com, christophe_jacquelin christophe_jacque...@... wrote: Hello, Is it possible to get the IP adress or the computer name on the client side from a flex application ? Thank you, Christophe,

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
I tried this data = evt.result as User; and its not work. I also tried to send User data with notification, same again. LoginCommand [code] override public function execute(notification:INotification):void { var myUser:User = notification.getBody() as User;

Re: [flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread Simon Bailey
Also I would use the onRegister() method to setup your RemoteObject i.e. override public function onRegister(){ loginRemoteService = new RemoteObject(fluorine); loginRemoteService.source = BL.Sample; loginRemoteService

Re: [flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread Simon Bailey
Debug man, check the datatype of the object coming back from your remote request, maybe there is a problem with the cast. Is the Object from your remote result datatyped? Try assigning it to a var first and then debug to see if the cast works. If on debug you cast the result successfully

[flexcoders] Re: Sticky Scroll bars

2009-06-23 Thread djhatrick
I use Firefox, like most in our office. Is this possible with the the help of a javascript library, similar to the way the mouse scroll wheel library works in javascript? if it's just missing a mouseUp, maybe I can add that event and send it into flex, would that work? By the way, Alex, so

[flexcoders] Module height and width

2009-06-23 Thread djhatrick
Modules seem to get their height from the screen rect bounds and not the parent container. What I've done to work around this, is make my container follow my vScroll Position so it won't allow my module to get cut off, since it's a non-modal container... Any ideas is this is going to

[flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread vladakg85
http://img37.imageshack.us/i/debug1.jpg/ this is debug from mediator. loginUserData is always null :( --- In flexcoders@yahoogroups.com, Simon Bailey si...@... wrote: Debug man, check the datatype of the object coming back from your remote request, maybe there is a problem with the cast.

[flexcoders] [Shared Object] Save XML

2009-06-23 Thread thelordsince1984
Hi, i would know if is possible to save xml format into SharedObjects.. thanks Regard Lord

[flexcoders] Adobe Flex 4 / Coldfusion 9 Pre-Release Tour hits Phoenix This Thursday (6/25/09)

2009-06-23 Thread Alan Rother
Hey Everyone, This Thursday the premier Flex event of the year is happening in Tempe. If you attend one user group meeting this year, *this is the one! * *What is this event?* The Phoenix ColdFusion User Group is part of Adobe's Summer user group tour, and we will be hosting Ryan Stewart, Adobe

Re: [flexcoders] Re: I can't understand pureMVC

2009-06-23 Thread Simon Bailey
Something is wrong with your assigning the remote result to the data in your Proxy. The 'data' object has not been cast to User() and is instead typed as ObjectProxy? On 23 Jun 2009, at 16:15, vladakg85 wrote: http://img37.imageshack.us/i/debug1.jpg/ this is debug from mediator.

[flexcoders] subversion ? where do i start

2009-06-23 Thread luvfotography
Hi, I want to check out a google project, where do I start? Do I need to install subversion? or find a free subversion host? mucho thanks,

[flexcoders] Re: subversion ? where do i start

2009-06-23 Thread Anthony DeBonis
You can install SubClipse http://subclipse.tigris.org/ into FlexBuilder and follow instruction on pulling the src right into a Flex Project. Or install something like Tortois http://tortoisesvn.tigris.org/ --- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, I want to

Re: [flexcoders] subversion ? where do i start

2009-06-23 Thread Brad Bueche
Just go to your software updates and install Subversive. I've never checked out from a public server but I would guess that its not much different than a private server. If you want to use SVN locally, on windows, the easiest solution BY FAR is to install VisualSVN and get the TortoiseSVN

[flexcoders] MenuBar ItemRenderers on Sub-Menus

2009-06-23 Thread lampei
I'm trying to create a custom itemrenderer for the sub menus of an itemrenderer, but am running into some issues...the main one being that I cannot seem to access the sub menus to create them. The docs state: You can define an item renderer for the pop-up submenus of the MenuBar control.

[flexcoders] SWFLoader Autoplay

2009-06-23 Thread gmoniey22
I am trying to display a SWF (from within my app) using something like: var swf:SWFLoader = new SWFLoader(); swf.source = absolutePathToSwf; panel.addChild(swf); Now this seems to work fine, except for the fact that the swf starts playing immediately. I tried to put it inside a video display,

RE: [flexcoders] Module height and width

2009-06-23 Thread Alex Harui
I think you'll need to file a bug or post a test case. Modules do not normally check SystemManager.screen so I'm unclear what the situation is. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Re: Sticky Scroll bars

2009-06-23 Thread Alex Harui
It shouldn't require javascript. If you listen for MOUSE_LEAVE and dispatch a fake MOUSE_UP that should suffice. I think the fix may go into Flex 3.4 as well. In general, you cannot mix module versions. The SWF loading the module and the module must be compiled with the same version of Flex

RE: [flexcoders] Modular application

2009-06-23 Thread Alex Harui
See modules presentation on my blog Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sandrea83 Sent: Tuesday, June 23, 2009 3:04 AM To:

[flexcoders] Re: MenuBar ItemRenderers on Sub-Menus

2009-06-23 Thread Tim Hoff
An easy way would be to extend MenuBar: package { import mx.controls.Menu; import mx.controls.MenuBar; import mx.core.ClassFactory; public class MyMenuBar extends MenuBar { public function MyMenuBar() { super(); }

[flexcoders] Flex Browse File

2009-06-23 Thread reversible_82
Hi guys, I'm trying to browse and select a folder from the local file system,i was reading about the FileReferenceList class to browse a file, but that does not let me select a folder, just a file, do you know how can I get Around this, or some source to read. I need to select a folder from

[flexcoders] Flex Modules and chaching

2009-06-23 Thread Ben Densmore
I have broken my application up to use multiple modules, with each module having it's own set of remoting calls. For some reason when I go to deploy to my production server and swap out the services-config.xml and do a re-build of the Flex project the modules still try to access the Flex

[flexcoders] Re: Flex Browse File

2009-06-23 Thread Tim Hoff
Not sure if this available for flex, but for air: var file:File = new File(); file.addEventListener(Event.SELECT, dirSelected); file.browseForDirectory(Select a directory); function dirSelected(e:Event):void { trace(file.nativePath); } -TH --- In flexcoders@yahoogroups.com, reversible_82

[flexcoders] Re: Need help tranforming some XML

2009-06-23 Thread Jason
Well, so far no responses to this last part of my problem - but thanks very much to those of you who got me this far. I'm 90% there to the solution I need. So I'm moving this last part of my question to Flashcoders... unless someone has any idea how to solve this last part of the problem and

[flexcoders] Flex Ant Build Process

2009-06-23 Thread pratikshah83
Hi Folks, I am trying to automate flex build process using ANT build script. But I am facing an issue and cannot find any enough documentation. According to the flex docs compc output=${DEPLOY_DIR}/MyComps.swc include-classes=custom.MyButton custom.MyLabel source-path

[flexcoders] Re: subversion ? where do i start

2009-06-23 Thread kaspar.luethi
--- In flexcoders@yahoogroups.com, luvfotography ygro...@... wrote: Hi, I want to check out a google project, where do I start? Do I need to install subversion? or find a free subversion host? mucho thanks, as another option, outside eclipse on windows, use tortoisesvn. A Subversion client,

[flexcoders] Re: Flex Ant Build Process

2009-06-23 Thread kaspar.luethi
check this (-dump-config): http://kb2.adobe.com/cps/404/kb404341.html this will get you a xml config file with (hopefully) all includes, which you can use in your ant task: target name=compile depends=stamp-revision mxmlc file=${source.dir}/dummy.mxml

[flexcoders] Re: Flex Ant Build Process

2009-06-23 Thread kaspar.luethi
oh, i'm not sure if it will work the same when building a swc, never made any. k. --- In flexcoders@yahoogroups.com, kaspar.luethi kas...@... wrote: check this (-dump-config): http://kb2.adobe.com/cps/404/kb404341.html this will get you a xml config file with (hopefully) all includes,

[flexcoders] Displaying HTML page

2009-06-23 Thread vin.flex
Hi I have a html page(user agreement) which needs to be displayed in a popup as modal window. I am getting that html text as CLOB. I have binded the string to a text area component. It is not able to recognize all the html tags. I have tried using IFRAME, but somehow my page is not

Re:[flexcoders] flex component into papervision - bad quality

2009-06-23 Thread j2me_soul
I got the same problem. Can anyone give some suggestion? 在2009-06-23,duncmcm dunc...@yahoo.co.uk 写道: Hi I have used the following code to add a flex component into a papervision primitive in this case a plane. The flex component is added through the papervision material then added to the

[flexcoders] Re: MenuBar ItemRenderers on Sub-Menus

2009-06-23 Thread lampei
Thanks. This will give me a good starting point. --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: An easy way would be to extend MenuBar: package { import mx.controls.Menu; import mx.controls.MenuBar; import mx.core.ClassFactory; public class

[flexcoders] Flex corrupting certain UTF-8 characters

2009-06-23 Thread tessthyer
I am using an HTTPService to send XML to a java server. Most of what I send to the server arrives as expected, but certain characters are corrupted somewhere along the way, such as degree sign and the Euro currency symbol. What we are seeing is that those sort of symbols have an  (A +

[flexcoders] About Effect in Flex4

2009-06-23 Thread j2me_soul
Is there something like parallel or sequence in flex4 ? If not, how can I achieve the function like that ?

[flexcoders] Modular application :Data services

2009-06-23 Thread sandrea83
When it comes to structuring flex modular application, how should i structure thing like data services-Granite ? Language translater?