[flexcoders] Re: Flex Source Files are viewable! hehe...

2005-04-14 Thread r0main
Yep, I knew that the debugger (flexbuilder one) allows me to view mx.* source code... Useful to trace unexpected behaviours occuring on the mx.* side... Did that trick once : Inherit a "buggy" (my point of view) mx.* component and overwrite the "faulty" method by a cleaner one (at least in my opi

Re: [flexcoders] MXMXL Editor

2005-04-14 Thread Scott Barnes
PrimalCoder... I am actually drooling here :) hehehe. On 4/14/05, Hans Omli <[EMAIL PROTECTED]> wrote: > > In addition to FlexBuilder, I use Eclipse with the following plug-ins > installed: > > * OxygenXML for coding MXML (can also use JavaScript editor for > Actionscript) > * CFEclipse for CF

Re: [flexcoders] xml-combobox

2005-04-14 Thread ibibas
Thanks, Manish. Isaac Bibás Forado Manish Jethani

RE: [flexcoders] MXMXL Editor

2005-04-14 Thread Simon Fifield
Hi flexcoders,   I've been using FlexBuilder for my MXML/Actionscript and Eclipse for my Java RemoteObjects. FlexBuilder used to be stupidly slow until they put in the switch to disable MXML Design View (Preferences/General), now I don't have any problems with it no matter how many files

[flexcoders] Please a suggestion

2005-04-14 Thread [EMAIL PROTECTED]
Hi, i'don't know if this post it's OT. I'm using flex with j2ee architecture, i must to do when end user click "Transaction" i must write into a client machine an xml file. With a RIA this how is it possible? Please help. Devis PS now i'm testing a bad solution Client click "Transaction" and i

RE: [flexcoders] SharedObject across Applications

2005-04-14 Thread Erik Westra
It is also possible to share SharedObjects between applications running on a different domain, check this link for more information:   http://www.thoughtsabout.net/blog/archives/03.html     Greetz Erik From: peter blazejewicz [mailto:[EMAIL PROTECTED] Sent: donderdag 14 april 2005 0:

[flexcoders] Re: Flex Source Files are viewable! hehe...

2005-04-14 Thread zhfbanks
Is there any flex edit plugin for eclipse? --- In flexcoders@yahoogroups.com, "r0main" <[EMAIL PROTECTED]> wrote: > > Yep, > I knew that the debugger (flexbuilder one) allows me to view mx.* > source code... Useful to trace unexpected behaviours occuring on the > mx.* side... Did that trick once

[flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread erik katerborg
hi,   This may be a beginner's question but I just can't figure one thing out: how to send dynamic data to a custom flex component. what I want to do is the following:     the problem is that the function is not executed but simply passed as a string to the component. Another problem is th

[flexcoders] Re: Real World Opinions of Flex?

2005-04-14 Thread zfbanks
It seems to be interesting --- In flexcoders@yahoogroups.com, Mike Chambers <[EMAIL PROTECTED]> wrote: > The next version of Central, Gemini, will be out this summer. > > mike chambers > > [EMAIL PROTECTED] > > On Jun 30, 2004, at 12:46 PM, Hans Omli wrote: > > > MM also publicly announced fi

[flexcoders] Re: Flex Non Comercial

2005-04-14 Thread zfbanks
I subscribe my order, but I don't know how long time for shipping the copy to China... --- In flexcoders@yahoogroups.com, "Jeff Steiner" <[EMAIL PROTECTED]> wrote: > I have one for Flex Authority. > > It took about 3 days from the time I requested until I heard. > > Jeff > http://www.fl

Re: [flexcoders] MXMXL Editor

2005-04-14 Thread Rich Tretola
Primalscript, love it. Rich On 4/14/05, Simon Fifield <[EMAIL PROTECTED]> wrote: > > Hi flexcoders, > > I've been using FlexBuilder for my MXML/Actionscript and Eclipse for my Java > RemoteObjects. FlexBuilder used to be stupidly slow until they put in the > switch to disable MXML Design V

[flexcoders] Alert Listener

2005-04-14 Thread Fernando Barros
Hi there,   I have fixed the problems with yours helps but I still have some doubts.   Look this: import mx.controls.Alert; class classes.Confirmar{     public function Confirmar()     {}         public function click(evt):Boolean     {

RE: [flexcoders] MXMXL Editor

2005-04-14 Thread Erik Westra
A question about primascript. I have all my classes in a central location. In Flash MX 2004 I set a classpath. How can I set a classPath with primalscript? Greetz Erik -Original Message- From: Rich Tretola [mailto:[EMAIL PROTECTED] Sent: donderdag 14 april 2005 14:24 To: flexcoders

RE: [flexcoders] Alert Listener

2005-04-14 Thread Abdul Qabiz
Alert.show(sMensagem, sTitulo, Alert.OK | Alert.CANCEL, null, mx.utils.Delegate.create(this, click), '', Alert.OK);   It should solve your problem...   -abdul     From: Fernando Barros [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 5:56 PMTo: flexcoders@yahoogroups.comSubject:

RE: [flexcoders] MXMXL Editor

2005-04-14 Thread Abdul Qabiz
Why would you want to set classpath in PrimalScript? Are you compiling code from Primal script using JSFL? In that case, your classpath needs to be set for individual .fla file or globally in your Flash IDE. -abdul -Original Message- From: Erik Westra [mailto:[EMAIL PROTECTED] Sent: Th

RE: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Abdul Qabiz
Hi, Can you post the code so that we look at it? IMO this shouldn't happen?     -abdul   From: erik katerborg [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 3:10 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] beginners question about sending data to custom flex component

RE: [flexcoders] Please a suggestion

2005-04-14 Thread Abdul Qabiz
HI Davis, Is it really important that your application needs to be browser based? You can deploy Flex application in Macromedia Central platform... Macromedia Central can read and write files from file system. Check out macromedia.com for more... What's the purpose of writing xml on client mach

RE: [flexcoders] any ideas about flex client side caching?

2005-04-14 Thread Abdul Qabiz
Hi, You can cache object on client in SharedObject. So you can serialize a class to SharedObject on client and later deserialize to use in application. For example, you fetch a huge dataset from server(via xml, http or remoteobject), you can serialize it to SharedObject and show a part of it in

Re: [flexcoders] Please a suggestion

2005-04-14 Thread [EMAIL PROTECTED]
Hi it's not important that "run" into browser, but with i don't know how to work Macromedia Central platform. -->What's the purpose of writing xml on client machine? We have write a simple c++ program that read a xml file and comunicate with com of client for "external device", for examples

RE: [flexcoders] MXMXL Editor

2005-04-14 Thread Erik Westra
Well I want to be able to use 'primalsence' (codehinting) that primalscript offers on the classes I use on different projects. Greetz Erik -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: donderdag 14 april 2005 15:02 To: flexcoders@yahoogroups.com Subject: RE: [fl

RE: [flexcoders] Running FLEX standalone as a service?

2005-04-14 Thread Abdul Qabiz
Hi Scott, You can't run the integrated version of JRUN as service, though full version of JRUN can be run as service, you need to buy it. You can download the trail version from macromedia.com This has been discussed in past. I am attaching some threads with this mail Hope that helps.. -abd

RE: [flexcoders] Please a suggestion

2005-04-14 Thread Abdul Qabiz
You can still achieve this without using Macromedia Central. - Your Flex application writes data to SharedObject - Your C++/VB application embeds a swf that is downloaded from same webserver where Flex application is hosted. - SWF(inside C++ application) reads SharedObject and passes the data to

RE: [flexcoders] MXMXL Editor

2005-04-14 Thread Abdul Qabiz
You can probably check at Primalscript support forums, they might be knowing something... -abdul -Original Message- From: Erik Westra [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 6:50 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] MXMXL Editor Well I want to

RES: [flexcoders] Alert Listener

2005-04-14 Thread Fernando Barros
It was funny! So easy and I was doing a huge class! Abdul, thank you! Abdul and people, which books do you recommend?   Thks again!   PS: I don’t know but reading some articles from Macromedia and following the tutorial, I can notice there are a big difference between them. At the

[flexcoders] Curved surfaces in flex...

2005-04-14 Thread Clint Modien
I just had a question thrown at me about a globe type surface being done in flex.   My initial gut reaction to that was… “you can’t do that in flex”   You could if you used flash to create the globe component right?   Then embed that flash component in a flex app?   Just thought I

Re: [flexcoders] DataGrid performance

2005-04-14 Thread David George
Viraf - When you say "each cell in the grid contains 4 other objects that are displayed", it sounds like you are using a custom cell renderer. Is that right? Unfortunately, large DataGrids with custom cell renderers are a known performance issue. I'm afraid I can't completely solve your proble

Re: [flexcoders] Please a suggestion

2005-04-14 Thread [EMAIL PROTECTED]
Thanks Abdul, Your Flex application writes data to SharedObject it's ok - Your C++/VB application embeds a swf that is downloaded from same webserver where Flex application is hosted. - SWF(inside C++ application) reads SharedObject and passes the data to C++ program via FSCommand here soun

Re: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread JesterXL
Do you have a link towards a visual example of the desired effect?   - Original Message - From: Clint Modien To: flexcoders@yahoogroups.com Sent: Thursday, April 14, 2005 9:53 AM Subject: [flexcoders] Curved surfaces in flex... I just had a question thrown at me about a globe ty

[flexcoders] Rendering in background

2005-04-14 Thread viraf_bankwalla
Hi, I have an application that displays a splash page on startup. It then proceeds to load data for some grids. Once the data has been received, it selects the view to be displayed. The problem is that this view takes a considerable amount of time to load (it has two grids). I would lik

[flexcoders] how to make an object active?

2005-04-14 Thread cnewroth55
Here's a quickie that I am sure someone can answer pretty quickly; I have a radio group that has x number of items, and what I want to do is make a coulple of checkboxes either be greyed out (active) or in- active depending on which radiobutton a user clicks on; my code: if a user click on the

Re: [flexcoders] Rendering in background

2005-04-14 Thread JesterXL
Throw your splash page in a modal popup? import mx.managers.PopUpManager; splash = PopUpManager.createPopUp(mx.core.Application.application, YourSplashComponent, true); // later splash.deletePopUp(); - Original Message - From: "viraf_bankwalla" <[EMAIL PROTECTED]> To: Sent:

[flexcoders] Re: DataGrid performance

2005-04-14 Thread viraf_bankwalla
Thanks - I'll find out what code I can share, or try to put together a sample application to illustrate the fact. Could you please point me to the presentation on flex 2.0 and flash 8.0. Were release dates specifed ? Finally, how does one quantify large ? I consider my current datagrid as

Re: [flexcoders] how to make an object active?

2005-04-14 Thread JesterXL
Check out the enabled property, almost all controls support this gem. radioButton.enabled = false; - Original Message - From: "cnewroth55" <[EMAIL PROTECTED]> To: Sent: Thursday, April 14, 2005 10:10 AM Subject: [flexcoders] how to make an object active? Here's a quickie that I am

RE: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread David Mendels
Hi,   In general, you can do just about anything in Flex that you can do in the Flash authoring tool.  You have full access to Actionscript.  That said, you don't have the graphical tools that the Flash authoring tool provides, so you need to be proficient in AS.   Regards, David F

Re: [flexcoders] MXMXL Editor

2005-04-14 Thread jeff tapper
I'm a big fan of primal script, although, I'm starting to use Flex Builder a bit more now that you can disable design view... At 12:16 AM 4/14/2005, you wrote: >Has anybody tried any editors apart from from Flex Builder for mxml? >Flex Builder degrades the performance of my PC. > >-- >Regards, >

[flexcoders] MPEG4 streaming in Flash application?

2005-04-14 Thread Marcello Teodori
Hi, please excuse me if this is a rather naive question, but I am approaching Flex with a strong experience in Java, but almost no experience in Flash. I would like to embed within my Flash application an MPEG4 video stream, but as far as I know Flash allows only its own FLV Flash Video form

RE: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread Clint Modien
I don’t have an example no… It’s still in the “hey that would be kewl stage”   Basically they want a globe that’s able to rotate so that you can pick multiple points on it and bring up windows on those points with information about that particular point.    I’m 95% sure now that I’ll

[flexcoders] Cairngorm flex/AS2 framework naming convention

2005-04-14 Thread Valy Sivec
Hello, My undertanding is that this framework is free and was initiated by the guys from "iteration::two", and we all are gratefull for their kindness to share with us this framework. Although, I have a question about it... Why should the packages have been named using the company name? Shouldn

Re: [flexcoders] Flex Non Comercial

2005-04-14 Thread Jeff Steiner
Email. As far as I know there is no way to contact them to find out what the status of your request is. Jeff http://www.flexauthority.com - Original Message - From: "Francois Le Lay" <[EMAIL PROTECTED]> To: Sent: Wednesday, April 13, 2005 11:40 PM Subject: Re: [flexcoders] Flex Non Co

Re: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread JesterXL
There are a plethora of ways to integrate this with Flex.  You could do the SWC route, yes.  You could do the animations, and just control it with Flex.  You could do it in pieces, and let Flex have more control on how they are loaded in (popups in PopUpManager instead of standards contain

[flexcoders] Re: Rendering in background

2005-04-14 Thread viraf_bankwalla
Sorry - but I do not understand your response. My Splash page is part of a viewStack as is the application page. The data is loaded with the splash page being displayed. The performance problem is with the rendering of the application page. This page is initialized when I select it in the

Re: [flexcoders] Re: Rendering in background

2005-04-14 Thread JesterXL
Don't put your splash in the viewstack. - put a ProgressBar in the ViewStack's 1st view instead, set it to indeterminate - load your Splash page up in the popupmanager - use a doLater to change the ViewStack to the next child - use another doLater to remove the popup; since it'll take a frame for

Re: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread Seth Voltz
When you said "Globe" ebject I immediately thought wireframe. You could easily write a wireframe sphere function that takes in perspective and rotation information and spits back a series of lines... There is code all over the 'net on wireframe drawing. Seth On Apr 14, 2005, at 11:00, JesterXL w

Re: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Matthew Shirey
I'm fairly new at this data binding stuff... but I thought you were only able to bind properties, or getters/setters.  I have had mixed results when I try to bind to a function.  Is this wrong? -- MatthewOn 4/14/05, Abdul Qabiz <[EMAIL PROTECTED]> wrote: Hi, Can you post the code so

RE: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread Shell Bryson
It’s almost impossible to do this with normal Flash, let alone trying to do it in Flex. Sounds like a nightmare to me. Flash just isn’t suited (at the moment) for 3d (or pseudo 3d). Director has that sort of thing.   From: Seth Voltz [mailto:[EMAIL PROTECTED] Sent: 14 April 200

Re: [flexcoders] any ideas about flex client side caching?

2005-04-14 Thread Matthew Shirey
Just be careful about how much you store in the SharedObject.  By default the client is set to accept up to 100k  A 'Huge' dataset might exceed that.  If you exceed that about I think the client then asks the user if more space can be allocated.  I've just started using a SharedObject; I'm a lit

RE: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Tracy Spratt
Abdul will probably be able to figure out how to do this but there are several other options: Have the data in an Object or Array and pass that. Pass in a reference to the parent, and in the component do myParent.getData() Pass in a typed reference to the paren and use

RES: [flexcoders] Re: Popup only works once

2005-04-14 Thread Rafael M. Martinelli
I'm facing the same problem. Did you find what's wrong? Thanks -Mensagem original- De: cazzaran [mailto:[EMAIL PROTECTED] Enviada em: sexta-feira, 8 de abril de 2005 13:37 Para: flexcoders@yahoogroups.com Assunto: [flexcoders] Re: Popup only works once That didn't seem to change my

Re: [flexcoders] Re: DataGrid performance

2005-04-14 Thread David George
> Thanks - I'll find out what code I can share, or try to put together > a sample application to illustrate the fact. Thanks. > Could you please point me to the presentation on flex 2.0 and flash > 8.0. Were release dates specifed ? I know that Flash Player 8 has been presented at some

RE: [flexcoders] Re: Popup only works once

2005-04-14 Thread Tracy Spratt
Post a simple sample app. Half the time, just the process of doing that reveals the problem. Tracy -Original Message- From: Rafael M. Martinelli [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 11:37 AM To: flexcoders@yahoogroups.com Subject: RES: [flexcoders] Re: Popup only wo

RE: [flexcoders] Re: Popup only works once

2005-04-14 Thread Robert Stuttaford
If you're using the cairngorm currently available, your view helper is not being deregistered. Search the archives for 'cairngorm' and 'deregister'. -Original Message- From: Rafael M. Martinelli [mailto:[EMAIL PROTECTED] Sent: 14 April 2005 05:37 PM To: flexcoders@yahoogroups.com Subject

RE: [flexcoders] Re: Popup only works once

2005-04-14 Thread Ben Elmore
Are you guys using the Cairngorm Framework? If so, does your popup window have a viewHelper assigned to it? -Original Message- From: Rafael M. Martinelli [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 11:37 AM To: flexcoders@yahoogroups.com Subject: RES: [flexcoders] Re: Popu

RE: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread Abdul Qabiz
Hi,   Creating pseudo 3d is possible in Flash, yea it might get slow if there are lots of lines/polygons...But its possible...     see this:   http://mx3d.com/   -abdul From: Shell Bryson [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 8:59 PMTo: flexcoders@yahoogroups.comSubjec

RE: [flexcoders] Re: Rendering in background

2005-04-14 Thread Tracy Spratt
I have not done any of this but you might look into "progressive instantiation". You set the creationPolicy="none" on your containers, then use methods that explicitly cause the children to be instantiated. There is a white paper or technote about this somewhere. Tracy -Original Message---

Re: [flexcoders] Cairngorm flex/AS2 framework naming convention

2005-04-14 Thread Matthew Shirey
It's just a namespace... and they did make it afterall... M.On 4/14/05, Valy Sivec <[EMAIL PROTECTED]> wrote: Hello, My undertanding is that this framework is free and was initiated by the guys from "iteration::two", and we all are gratefull for their kindness to share with us this framewor

Re: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread JesterXL
Flash is definately suited to displaying 3D.  Depends on if the 3D needs to be real or not and if there is any value gained from it being true 3D:   http://www.billybussey.com/main.html   http://www.gskinner.com/blog/archives/2005/04/new_3d_flash_ga_1.html   Click center screen when it comes

[flexcoders] Great Abdul

2005-04-14 Thread [EMAIL PROTECTED]
Very Very Very Very Very Very thank Abudl, Without Macromedia Control and with your suggestion , SWF(inside C++ application) reads SharedObject and passes the data to C++ work fine. Then for all front end it's pure flex, but with integration with com/lpt1 client side with fscommand work n

RES: [flexcoders] Re: Popup only works once

2005-04-14 Thread Rafael M. Martinelli
Yes, we're ussing the Cairngorm Framework and we're using a viewHelper in the TileWindow. How can I solve this problem? I can't use the viewHelper in this situation? Thanks. -Mensagem original- De: Ben Elmore [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 14 de abril de 2005 12:49

Re: [flexcoders] Curved surfaces in flex...

2005-04-14 Thread jeff tapper
Anything you can do in code in flash studio you can also do in flex. If your up for the challange, you can using the drawing API and the curveTo method to create any curved surface you want, im generally more likely to import a graphic already created, whether im using it in flex or flash. At

RE: [flexcoders] Please a suggestion

2005-04-14 Thread Abdul Qabiz
Hi, You can search macromedia.com or google regarding embedding flash in C++ shell. But I will suggest you that you also look at Visual Basic, you can quickly embed Flash in Visual Basic shell. There used to be openswf.org, a nice site but it doesn't work any more... Macromedia.com has some arti

[flexcoders] Whitepaper on Application Deployments

2005-04-14 Thread JesterXL
I found these: http://www.macromedia.com/software/flex/whitepapers/ It'd be helpful to snag a huge client if any of da boyz from Iteration::two had any they've made, or anyone else; anything is helpful! Thanks if you have any whitepapers you can share! --JesterXL Yahoo! Groups Links <*

RE: [flexcoders] Great Abdul

2005-04-14 Thread Abdul Qabiz
Thanks... I must say, you are very fast...You made the program, before I replied... :) -abdul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 9:28 PM To: Flex Coders Subject: [flexcoders] Great Abdul Very Very Very Very Very Very

RE: [flexcoders] Great Abdul

2005-04-14 Thread Tracy Spratt
Devis, this requirement gets requested a lot! If you have a working solution and are willing to post it, It will be very helpful to many! Tracy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 11:58 AM To: Flex Coders Subject: [flexcod

RE: [flexcoders] Alert Listener

2005-04-14 Thread Abdul Qabiz
Hi Fernando, Frankly speaking, I generally don't read books cover-to-cover. I refer product help and a few books sometimes, when I need to brush up concepts. But I believe, I learnt more by doing than reading. And yes, Flexcoders is the best place to learn about Flex by trying & helping out othe

RE: [flexcoders] Re: Popup only works once

2005-04-14 Thread Ben Elmore
The issue is that each time the Popup opens, the ViewHelper attempts to register itself to the ViewLocator. The framework has a rule that a ViewHelper must be unique in its 'handle' (done by the ViewLocator checking if the View Name is already registered to it) otherwise it raises and Error. (Code

RE: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Abdul Qabiz
Hi Matthew,   It would really help, if you can give me a test-case where you see mixed result...It would really help us...   Thanks   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 8:57 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexco

RE: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Ben Elmore
Title: Message I could be wrong, but from my experience I found that binding with functions doesn't work if there are no arguments that are passed into the function that Flex can watch.   So.   myClass.myFunc() -> Flex doesn't know that it should recheck the function myClass.myFunc( myCla

Re: [flexcoders] beginners question about sending data to custom flex components

2005-04-14 Thread Matthew Shirey
That's actually more difficult than it sounds...  Any time it has happened I have coded around it.  If the problem occurs again, I'll be sure to share.  At this point though, I simply avoid using functions for data binding because of the problems I've had.  If another situation comes up where a

RE: [flexcoders] Hibernate

2005-04-14 Thread Ryan Scott Jones
Hi Steve,   Thanks for the help.  I have all of my collections mapped as lazy=”false”.  Everything I’ve tried ends with:   - could not initialize proxy - the owning Session was closed org.hibernate.LazyInitializationException: could not initialize proxy - the owning Session was close

RES: [flexcoders] Re: Popup only works once

2005-04-14 Thread Rafael M. Martinelli
Thanks Bem. It helped a lot. I was thinking about the second option and that's what I'm going to do. Thanks again. -Mensagem original- De: Ben Elmore [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 14 de abril de 2005 13:24 Para: flexcoders@yahoogroups.com Assunto: RE: [flexcoders

[flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread jwaknitz
I went back to the script and changed the if statement to create a RadioButton directly to the app and not grab a component. This fixed the group problem but is not the fix that I wanted. Components is much nicer for what I want as the other way has generated a few problems with my design.

[flexcoders] Re: Flex Bug or Not?

2005-04-14 Thread dchilcoat
I have a similar problem. Did you find a solution? --- In flexcoders@yahoogroups.com, "gevgelija50" <[EMAIL PROTECTED]> wrote: > > While attempting to run in Debug mode, I received the following > message: > > 2 Errors found. > > Error generated version of _watcherSetup:260 > Branch bet

RE: [flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread Deepa Subramaniam
I don't see a tag in your code anywhere. This tag is what defines the group which your RadioButtons will work as a single control under. You can also use this tag to specify the labelPlacement for all the RB's in the group. So I think what you need is outside of your Repeater this: Check out

[flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread jwaknitz
I tried that, to no avail. :( --- In flexcoders@yahoogroups.com, Deepa Subramaniam <[EMAIL PROTECTED]> wrote: > I don't see a tag in your code anywhere. This tag is > what defines the group which your RadioButtons will work as a single control > under. You can also use this tag to specif

RE: [flexcoders] Re: Flex Bug or Not?

2005-04-14 Thread Tracy Spratt
There is no single simple solution. See my post in this thread. Also search the list for 32k Tracy -Original Message- From: dchilcoat [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 1:56 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Flex Bug or Not? I have a s

RE: [flexcoders] Hibernate

2005-04-14 Thread Harris Reynolds
Ryan, I'd suggest that you post some of your hibernate code here [1] with the same question. You'll get a lot better Hibernate support there. That said, one important thing to keep in mind from the Flex perspective is your service interface. You should design the integration point as a course-

[flexcoders] Re: Flex Bug or Not?

2005-04-14 Thread dchilcoat
Thanks. I did look at your post. I will try the solution. I guess I am asking whether you have implemented your solution and you know that will fix the problem. --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > There is no single simple solution. See my post i

RE: [flexcoders] Cairngorm flex/AS2 framework naming convention

2005-04-14 Thread Alistair McLeod
Hi Valy,   From the 0.99 release, the framework will have non-iteration::two package structure.   Cheers,   Ali   -- Alistair McLeodDevelopment Director iteration::two[EMAIL PROTECTED]   Office:  +44 (0)131 338 6108   This e-mail and any associated attachments transmitted with it may co

RE: [flexcoders] Re: Flex Bug or Not?

2005-04-14 Thread Tracy Spratt
Again, there is no single solution to "implement", and no general fix. Mainly just keep included or in-line script blocks small, put script in helper classes, use custom components. Try the bogus code route. Tracy -Original Message- From: dchilcoat [mailto:[EMAIL PROTECTED] Sent: Thu

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Robert Stuttaford
Abdul, I don't suppose you'd be willing to share a c# app that allows local connection access ? :) Thanks Robert -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: 14 April 2005 09:22 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Great Abdul (c++/flex) s

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Abdul Qabiz
Hi, > I don't suppose you'd be willing to share a c# app that allows local > connection access ? :) Why not? :) I have not yet made it, in my case it's going to be straight forward. A flash movie embedded in C# app would communicate with Flex app via LocalConnection... I can guess, why you ask

RE: [flexcoders] Re: Rendering in background

2005-04-14 Thread Jason Szeto
This should help: http://www.macromedia.com/devnet/flex/articles/prog_layout.html -Original Message- From: Tracy Spratt [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 9:10 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Rendering in background I have not done

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Robert Stuttaford
You're exactly right! Since you seem to be a little closer to macromedia, would you be in a position to find out if you can share this with us? If you can ... PLEASE DO!! :) :) I'd LOVE to play with this! -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: 14 April 200

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Abdul Qabiz
I am sorry, I am *not supposed to talk about anything which is not public. I can surely help you build things with public API or public information IMO, Darron is also holding things with him because he knows that reverse engineering of softwares is not legal... -abdul -Original Messa

Re: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Darron J. Schall
Abdul Qabiz wrote: >I have not yet made it, in my case it's going to be straight forward. A >flash movie embedded in C# app would communicate with Flex app via >LocalConnection... > > Yeah, you can embed Flash in C# and then have the Flash movies talk to each other via LC, however in the examp

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Robert Stuttaford
Fair enough :) Damn, it just seems like such a benefit - C#/Flash integration would truly be seamless, and all sorts of new wonderful real-time things could be done. XML Socket it is, I guess... Robert Totally not a C++ programmer -Original Message- From: Darron J. Schall [mailto:[EMAI

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Abdul Qabiz
Nope, Darron is doing very low-level stuff, reading/manipulating a part of memory that's shared between instances... Hope in future someone doesn't have to do such hacks for such things... -abdul -Original Message- From: Robert Stuttaford [mailto:[EMAIL PROTECTED] Sent: Friday, April 1

RE: [flexcoders] Great Abdul (c++/flex) source c++ <--> flex

2005-04-14 Thread Robert Stuttaford
Perhaps there is room for a .NET and/or Java components package here, for use with those respective platforms? Kinda like Remoting for FMX2K4 was done. Who knows... -grin- -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: 14 April 2005 10:16 PM To: flexcoders@yahoogr

[flexcoders] Re: Flex Cairngorm question

2005-04-14 Thread flexcoding
Hi Agha, Thanks for your response... With your help I found that "event.call.methodName" gives the method name that was invoked in the execute method of command. I see the command to be closer to the UI. So I am thinking of doing everything in response to a user action from within a single

[flexcoders] Repeater with Checkboxes

2005-04-14 Thread Mohanraj Jayaraman
Hi All, I have a repeater with checkboxes. I want the checkboxes to be checked/unchecked based on the data I receive from a RemoteObject. What I receive from the remote object is a string with list of State ID's like '100,400'. Now based on this list I want check/uncheck the corresponding check

RE: [flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread Jason Szeto
Let me explain what is going on here and why it has been done this way. Let's say you've got a MXML Component called myChoice. It contains three RadioButtons, called rA, rB, & rC. You assign each of these a groupName called myGroup. It also has a member variable called dataProvider. The way that

Re: [flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread Matthew Shirey
That does make sense. It's a bit of pain for what we're trying to do. But we'll find a workaround. We're dealing with a ton of dynamic data that is being used to generate in turn a dynamic interface. We'll just have to figure out a way to get the RadioButtons grouped in the same container. Th

RE: [flexcoders] Parsing date time returned from a webservice cal l

2005-04-14 Thread Matt Chotin
You may have already solved this but I’m finally catching up on flexcoders…   I believe the DateFormatter will be able to parse the Date string and therefore allow you to place it in your DataGrid.  The formatString would probably be something like: “-MM-DD HH:NN:SS”   Then you gi

RE: [flexcoders] question about the import statement and action s cript files

2005-04-14 Thread Matt Chotin
Something like this?   Component1.mxml     Class Component2 {   Public var comp1 : Component1;   … }   App.mxml         From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 6:59 AM To: flexcoders@yahoogroups.com Subject: Re: [fl

RE: [flexcoders] Re: Radio Button Custom Component

2005-04-14 Thread Jason Szeto
You can try using the group property of RadioButton. I've coded up a simple example. The only issue with my sample is that the RadioButtons get added in the wrong order. You'll need to add some logic to get them attached in the correct order. Jason -Original Message- From: flexcoders@yah

RE: [flexcoders] Re: nodeName

2005-04-14 Thread Matt Chotin
You can iterate through an object and get its properties (and therefore the names) using a for..in loop.   for (var p : String in myObj) {   trace(“myObj[‘” + p + “’] = “ + myObj[p]); }   It’s harder to take a given property and find out its own name, but you could try by taking t

RE: [flexcoders] Menubar control Anybody?

2005-04-14 Thread Matt Chotin
Can you try setting the labelField to “name”?  Your XML is not formatted in the way the Menu expects so you may need to use a labelField or a labelFunction to get it formatted correctly.   Matt   From: nithya karthik [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 11:

RE: [flexcoders] Charts and fields

2005-04-14 Thread Matt Chotin
I’m not having any luck looking for how to do this either.  Any chance you can put a getter on your myObjectX that will do the right thing?   function get myOtherObjectMyNumber() : Number {   return myOtherObject.myNumber; }   Matt From: Mika Kiljunen [mailto:[EMAIL PROTEC

RE: [flexcoders] how to get the windows domain user id of the loc al machine?

2005-04-14 Thread Matt Chotin
The flash player doesn’t have access to this information for security reasons.  What are you looking to do?   Matt   From: youngceflex [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 7:25 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to get the windows

RE: [flexcoders] how to display the HashMap data in flex ?

2005-04-14 Thread Matt Chotin
I’m not sure what you’re trying to do.  If you have the accessMap you can index into it using names (accessMap[‘foo’]).  Are you trying to make the hashmap the dataProvider of the DataGrid?  That’s not going to work, you need a linear list for that to happen (which you could create pretty

  1   2   >