[flexcoders] Simple Panel Resizer

2006-08-09 Thread tr.coffey
This works ok but performs terribly. I just can't get the panel update fast enough to follow the mouse. Any help? ?xml version=1.0? mx:Application initialize=setListeners(); frameRate=36 xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% mx:Script ![CDATA[

Re: [flexcoders] Flex Libs Source Code

2006-08-09 Thread Eduardo Dias
Thank you Gordon Smith, but of fact i would like access a source code of the classes that are inside the flash package. For example, i want access the source code (.as) of the class flash.events.DataEvent.Thank you for your timeEduardo DiasOn 8/8/06, Gordon Smith [EMAIL PROTECTED] wrote:

[flexcoders] Matt Chotin please help -- keeping scroll position in a datagrid to the last position after updating dataprovider with new data

2006-08-09 Thread Chaitu Vadlapatla
my scroll stays at the previous position on refreshing data or bring in new data to the dataproviderbut throws an error when i try to scroll to the top and also has lots of blank rows of data. is this some sort of bug? public var listScrollPosition:Number = 0; public function

RE: [flexcoders] Re: WSDLError:Element not resolvable = LoadEvent doesn't imply service ready

2006-08-09 Thread Franck de Bruijn
Hi Kaleb, Cool! Great stuff. My guess is that the delay is machine dependent, but not necessarily network dependent. I do believe that the LOAD event does indicate that the WSDL actually has loaded successfully. Flex will not need any more access to the network in order to

RE: [flexcoders] Re: Clarification needed on how WSDL affects conversion of AS objects to SOAP

2006-08-09 Thread Franck de Bruijn
Hi Ben, Lets try not to be too pessimistic, although you might be right that Adobes focus is more on the FDS part than the webservices part. It must be a hell of a complicated module and indeed, more money to be gained. I have quite some experience now with webservices, and they

[flexcoders] linux 64bit server

2006-08-09 Thread Cristian Riseri
Hi all, this is the frist time for me, I have a big problem, I'm using a beta server that is: linux RHAS 4 64bit WLS 9.x JRockit 1.5 R26.4 I don't know why my masks went on until 5 days ago, that all my packages stop working, the requirements page doesn't tell anything about linux 64bit

[flexcoders] Does ComboBox support paging?

2006-08-09 Thread Dirk Eismann
I use a ArrayCollection that is managed by a DataService, the destination uses paging. Paging works fine when I use this ArrayCollection as the dataProvider for a DataGrid. However, if I assign it to a ComboBox then only n items get displayed where n is the pageSize of the destination. So - does

Re: [Junk E-Mail - MED] Re: [flexcoders] PopUpMenuButton icon not working?

2006-08-09 Thread Samuel Reuben
Can you send a screen shot please(or another write up)? I don't seem to understand what you are seeing. Thanks, -sam On 8/8/06, Carlos Rovira [EMAIL PROTECTED] wrote: Anyone notice the bug with menu's icons in this control?I see the dataprovider in the examplehas: mx:Object label=Print:

[flexcoders] Re: itemRenderer/dataGrid rollOverColor question

2006-08-09 Thread msloumac
I am also having the same issue with an itemrenderer losing my datagrid rollover colours .. i have tried inline itemrender v external mxml renderer with no difference .. it seems to be related to the public override of set data function ... any ideas ? I have also tried setStyle(rollOverColor,

Re: [flexcoders] Tweening graphics

2006-08-09 Thread Tom Chiverton
On Tuesday 08 August 2006 14:01, Tom Chiverton wrote: What would be a good way to tween this to a different width ? One way is to create a new Tween: var t:Tween=new Tween(this,from,to,duration); this will then call two functions in 'this' - onTweenUpdate and

[flexcoders] Re: elliptical pie charts anyone?

2006-08-09 Thread Ramanarayanan K
--- In flexcoders@yahoogroups.com, Paul BH [EMAIL PROTECTED] wrote: Hi there, just wondering if anyone has made an elliptical piechart, or if there is a uick way I'm missing to do that? ta PBH Hi, You can customize the itemrenderer for a Pie Chart. One option is to create an

[flexcoders] Flex dataservices: fill vs asynctoken

2006-08-09 Thread Jonas Windey
Hi, Im new to flex dataservices (using WebORB), and I like to know whats the difference between: ds = new DataService(contact); ds.fill(contacts); and ds = new DataService(contact); var token:AsyncToken = AsyncToken(ds.fill(contacts)); token.kind = fill; Thanks! Jonas

Re: [flexcoders] Re: itemRenderer/dataGrid rollOverColor question

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 08:51, msloumac wrote: Not only are the rollover colours missing but also the click function call for the datagrid In this case, in case this helps anyone else, it was because we had overridden the data setter method to case the data object to a VO, but not also

[flexcoders] DateChooser does not show selected day when using DateField component

2006-08-09 Thread Bas J. Brey
Im working with DateField components a lot and when i set the selectedDate of the DateField component the connected DateChooser does show the correct Year and Month, but does not highlight the selected Day! Any clues on how to work around this? __._,_.___ -- Flexcoders

[flexcoders] integrating ASP JSP with Flex

2006-08-09 Thread dilsedil4u
Hi, Could anyone help me in integrating serverside code for data access with Flex 2. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit

Re: [flexcoders] Re: How to let RichTextEditor export valid HTML?

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 06:34, Stefan Schmalhaus wrote: The textformat tag and its attributes (indent, leading, etc.) are not HTML standard. Also, Flash/Flex HTML only supports the li tag without supporting ul or ol. It uses the deprecated font tag for setting the font, the font size, etc.

RE: [flexcoders] Flex dataservices: fill vs asynctoken

2006-08-09 Thread Dirk Eismann
Asynchronous methods like fill() return an AsyncToken instance which you can use to add custom data to it (i.e. mark that ypu invoked a fill operation). In the result handling function the AsyncToken is available again, so you can add additional logic to your result handler, e.g. private

[flexcoders] Re: FlexBuilder refusing to Build newer versions of .mxml files !!!

2006-08-09 Thread yaagcur
Brian may have provided you with the solution but I had same problem and hacked it by creating a new mxml file and copy-pasting the code from the problem file. That always seems to work AndyC -- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: Mike, I had the same problem

[flexcoders] VideoDisplay playheadTime problem

2006-08-09 Thread bal_ketan
I have a VideoDisplay component on my page. I need a forward functionality for the video. When i click on forward button it should go to the last frame of the video and stop there. Heres my code: myVideo.playheadTime = myVideo.totalTime; myVideo.validateNow(); myVideo.pause(); // not using

Re: [flexcoders] DateChooser does not show selected day when using DateField component

2006-08-09 Thread Samuel Reuben
test... reply for Anand... On 8/9/06, Bas J. Brey [EMAIL PROTECTED] wrote: I'm working with DateField components a lot and when i set the selectedDate of the DateField component the connected DateChooser does show the correct Year and Month, but does not highlight the selected Day!

Re: [flexcoders] RichTextEditor (rte)

2006-08-09 Thread Samuel Reuben
Test for Anand... He's onto this... On 8/9/06, app.developer [EMAIL PROTECTED] wrote: Why, when you set the format you wish to type in the RichTextEditor (RTE), after the first letter typed (letters after the first)?Example: I click the BOLD button then start typing I am bold, the only

[flexcoders] Test Message

2006-08-09 Thread Muruganandh Ramadass
Test Message __Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: How to let RichTextEditor export valid HTML?

2006-08-09 Thread daniel_croona
Well, IE tries to render practically anything... The problem is that what IE displays when rendering this code looks nothing like what I have created in the RichTextEditor. HTML and web page rendering is based on a rather strict set of rules to ensure that content is displayed likewise on all

[flexcoders] Re: RichTextEditor (rte)

2006-08-09 Thread flashanand77
Hi, It works fine. ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:RichTextEditor/ /mx:Application 1. Run this MXML 2. Click Bold Button 3. Now type- I am bold 4. All the characters are in bold --- In flexcoders@yahoogroups.com, app.developer [EMAIL PROTECTED]

[flexcoders] Re: DateChooser does not show selected day when using DateField component

2006-08-09 Thread flashanand77
?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ public function setDate():void{ myDC.selectedDate =new Date(2006,11,25); } ]] /mx:Script mx:DateChooser id=myDC/

[flexcoders] (unknown)

2006-08-09 Thread Muruganandh Ramadass
Test Mail Yahoo! Music Unlimited - Access over 1 million songs. Try it free. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

AW: [flexcoders] Plot Chart Performance

2006-08-09 Thread Frias, Roberto
It takes the same time even if you are working on the stand alone player. I am analysing a way to move the points through the ChartElement class instead of updating the ArrayCollection but not sure if that will work. Ive also tried with a simple Array but no improvements. Anyways if

[flexcoders] Re: DateChooser does not show selected day when using DateField component

2006-08-09 Thread flashanand77
Here is the code After u click the button the date is highklighted in blue. ?xml version=1.0? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ public function setDate():void{ myDC.selectedDate =new Date(2006,11,25);

[flexcoders] text_mc

2006-08-09 Thread moni_singhal
Hi, Actually i m migrating an application in flex1.5 to flex20 . In Flex1.5 we have using one of the variable text_mc in a class DateField extending tabnavigator. The code is somewat like this:(for class DateField) if (validator.hasErrors()) { text_mc.styleName = normalDTextInput; } else {

[flexcoders] Re: Camera.get([index]); useing mutiple cameras

2006-08-09 Thread willburforce82
Thank to both Andy and Jerermy I've gone through your replies and the closest i've got so far is:- var arr:Array = Camera.names; trace(arr[0]); trace(arr[1]); \\the output screen at this point returned the camera names which i \\ added to the following lines. localCamera1

[flexcoders] Problem to specify type property in a columnSet in actionScript (urgent)

2006-08-09 Thread olivier
Hi, I'm trying to create a chart (cartesian) with an areaset, a columnset and some lineseries. Here is the relative piece of mxml code (it works fine) mx:CartesianChart id=c1 showDataTips=true width=807 mx:horizontalAxis mx:DateTimeAxis displayLocalTime=true autoAdjust=true

[flexcoders] what is the class mapped to servlet object?

2006-08-09 Thread Satish
Hi, Anybody know what is the class mapped to "servlet" object? mx:RemoteObject id="loginidObj" source="servlet" result="loginIdResult(event)" showBusyCursor="true" fault="mx.controls.Alert.show(event.fault.faultstring, 'Error')"/ because my compiled swf file is not recognizing servlet

[flexcoders] Re: Camera.get([index]); useing mutiple cameras

2006-08-09 Thread willburforce82
Dear jeremy i think your right about establishing an array first, but i keep getting problems with this .getCamera (here is no method with the name 'getCamera'.) I can't get it to work but everyone keeps telling me it's the correct code but it's not working for me? --- In

Re: [flexcoders] Re: XMLList with a single item as a dataprovder

2006-08-09 Thread Rick Root
Doug Lowder wrote: Here's the answer: http://livedocs.macromedia.com/flex/2/langref/XMLList.html#toXMLString http://livedocs.macromedia.com/flex/2/langref/XMLList.html#toXMLString() Thanks Doug.. so I was just using the wrong method. rick -- Flexcoders Mailing List FAQ:

[flexcoders] Re: How to force validation and what should be used instead of deprecated isVa

2006-08-09 Thread gotgoose09
If you put all your validators in an Array you can do this: var results:Array = Validator.validateAll(arrayOfValidators); if (results.length == 0) { // all are valid! } --- In flexcoders@yahoogroups.com, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! How to perform validation when it is

Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-08-09 Thread wayneposner
I was having the same problem until I added: pp.width=printjob.pageWidth; pp.height=printjob.pageHeight where pp is the object that I want printed. Not to hijack this thread, but is there a limitation in Flex that prevents the printing of jpegs that have been loaded dynamically onto a canvas?

[flexcoders] newbie poblem

2006-08-09 Thread erixuss
Hi, I'm testing Flex 2 from 2 weeks and I have one big problem. I'm using tutorial that is reading rss channel with datagrid and everything is fine when the url is original, but when I copy this file to my project folder or to my server (with crossdomain.xml file) and change url nothing happens,

[flexcoders] FW: Flex Developers

2006-08-09 Thread Torben Nielsen
Hi, I got this request. If anybody are interested on working on this UK based project, please contact Shazia Hussain. You can find all her contact details below. Torben From: Hussain, Shazia [mailto:[EMAIL PROTECTED] Sent: 9. august 2006 13:26 To: [EMAIL PROTECTED] Subject:

[flexcoders] Re: Camera.get([index]); useing mutiple cameras

2006-08-09 Thread willburforce82
Thanks Again both Andy and Jeremy, i'm still not able to define between the two cameras on my computer, i've added traces to help identify whats going wrong, but this is the closest i've got:- var arr:Array = Camera.names; trace(arr[1]); trace(arr[0]); //these traces return the "Digital

RE: [flexcoders] Re: Camera.get([index]); useing mutiple cameras

2006-08-09 Thread Andrew Trice
What version of Flex are you using?  In Flex 2, it is Camera.getCamera().  All of the help we have provided is for Flex 2. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog:

RE: [flexcoders] Re: Camera.get([index]); useing mutiple cameras

2006-08-09 Thread Andrew Trice
You can get flash player 9.0.16 from: http://www.adobe.com/support/flashplayer/downloads.html Make sure you get the debug version. -Andy _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com Blog:

[flexcoders] Re: Clarification needed on how WSDL affects conversion of AS objects to SOAP

2006-08-09 Thread ben.clinkinbeard
Hi Franck, I am also impressed at how powerful Flex + web services seem like they could be and I don't think my issue is related to a bug. My complaint is that, as far as I know, there are zero Adobe sponsored articles or tutorials about using web services in anything but the most basic and

[flexcoders] Webservices help needed! Please

2006-08-09 Thread dinger0007
It is driving me crazy. I figure this awsome group can point me in the right direction. I keep getting this error. ReferenceError: Error #1069: Property cdr not found on String and there is no default value. I do the webservice call and can even display the results in this label: mx:Label

[flexcoders] cant find the finger cursor that appears over some buttons

2006-08-09 Thread hank williams
I want to activate the finger cursor that appears over some buttons but not others. Specifically, if appears over the buttons in a link bar, but not over regular buttons. I have certain regular buttons I want it to appear over but I cant find any references to it in the documentation. Does anyone

Re: Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-08-09 Thread Tom Chiverton
On Wednesday 09 August 2006 11:13, Samuel Reuben wrote: On 7/19/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 19 July 2006 10:39, Samuel Reuben wrote: Does this happen even when the object height/width is set? Does what happen ? The Silent failure ( Actually here nothing was

RE: [flexcoders] cant find the finger cursor that appears over some buttons

2006-08-09 Thread Dirk Eismann
Try: mx:Button useHandCursor=true buttonMode=true mouseChildren=false label=Click me! / Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hank williams Sent: Wednesday, August 09, 2006 3:01 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] cant find the finger cursor that appears over some buttons

2006-08-09 Thread hank williams
Thanks! But it is wierd that you have to tell a *button* that it should be in buttonMode. lol. Hank On 8/9/06, Dirk Eismann [EMAIL PROTECTED] wrote: Try: mx:Button useHandCursor=true buttonMode=true mouseChildren=false label=Click me! / Dirk. -Original Message-

[flexcoders] accessing item data in an XMLList

2006-08-09 Thread Rick Root
So far, I've been unable to find examples of using a tree control and sending its data to a web service, remote object, etc. Lots of example code on using the tree control, enabling drag and drop, putting different kidns of data INTO the tree control- but nothing about getting the data out of

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Thomas Rühl
Hey folks, to keep up the thinking ;) After some days of testing, testing and well... testing the UML tools out there, I think I finally found something that might work well for me. My tool of choice is Enterprise Architect by SparxSoftware: http://www.sparxsystems.com Some of the others,

[flexcoders] accessing the container? [ backgroundColor in a cell for an itemRenderer ]

2006-08-09 Thread Paul Dale
Hi all, I have a fairly simple itemRenderer that is working properly. I have some basic logic to change the color of the text based on the data in the cell. I've run into a bit of a stumper by trying to get access to the cell that contains the itemRenderer, to set the backgroundColor. Is there

[flexcoders] passing data to a datagrid

2006-08-09 Thread s_hernandez01
Hey Flexers, I am trying to send specific data from a datagrid to another datagrid and am having trouble with my actionscript. I can manage to send data if the index is selected, but I only want to send certain data to the other datagrid. Can anyone help? Here is what I have so far...

[flexcoders] Logging in Flex2 - Please help

2006-08-09 Thread santharao246
Hi, We have a created a customTarget which will log the messages to a Debug Console. In the console, we need to display the message and the object that is passed to the logger. For eg: 1)res:Object ; // asuume it is initialized some where else myLogger.info(This is a {1}

[flexcoders] which event?!

2006-08-09 Thread arnold_charming
Hi! I'm currently using ViewStack to scroll between different windows. I'm now looking for an event which will be triggered every time when a user enters a specific view. I tried creationComplete but it is only runned at the beggining of creating every container. -- Flexcoders Mailing List

RE: [Junk E-Mail - LOW] [flexcoders] which event?!

2006-08-09 Thread Shannon Hicks
"show" should do what you need."hide" might be useful too. Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of arnold_charmingSent: Wednesday, August 09, 2006 9:01 AMTo: flexcoders@yahoogroups.comSubject: [Junk E-Mail - LOW] [flexcoders] which event?! Hi!I'm

Re: [flexcoders] Fwd: Pre selecting a combo box

2006-08-09 Thread Marlon Moyer
Thanks Shannon, that did the trick. It looks relatively familiar to the way you do it with _javascript_. I really thought there would be an easier way to do it. I guess you could extend the component to include a method that would do that same thing though. On 8/8/06, Shannon Hicks [EMAIL

Re: [flexcoders] which event?!

2006-08-09 Thread Joan Garnet
Maybe the show event. Cheers arnold_charming escribió: Hi! I'm currently using ViewStack to scroll between different windows. I'm now looking for an event which will be triggered every time when a user enters a specific view. I tried creationComplete but it is only runned at the beggining

Re: [flexcoders] which event?!

2006-08-09 Thread Clint Tredway
I normally have a function that changes the viewStack order and put logic there in I need it.On 8/9/06, arnold_charming [EMAIL PROTECTED] wrote: Hi! I'm currently using ViewStack to scroll between different windows. I'm now looking for an event which will be

[flexcoders] Re: adding icons to buttons on button bars.

2006-08-09 Thread s_hernandez01
To insert an icon in each individual button on the buttonbar you need to embed it. Example: mx:ButtonBar id=viewButton width=80 mx:dataProvider mx:Array mx:Object icon=@Embed(source='assets/icon1.png')/ mx:Object icon=@Embed(source='assets/icon2.png')/

[flexcoders] ComboBox doesn't update display unless 'activated' first

2006-08-09 Thread ben.clinkinbeard
Hello, I have a ComboBox that is bound to an ArrayCollection. The problem is that if I programmatically remove the item that is currently being displayed in the CB from the source ArrayCollection, the CB doesn't update its display. It removes the item from the list so that its not there if I open

[flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Dave Wolf
Thomas, Yes EA is a quite nice product. The price is even nicer! This was the product I suggested in my reply to this thread. -- Dave Wolf Cynergy Systems, Inc. Adobe Flex Alliance Partner http://www.cynergysystems.com http://www.cynergysystems.com/blogs Email: [EMAIL PROTECTED] Office:

[flexcoders] Re: adding icons to buttons on button bars.

2006-08-09 Thread s_hernandez01
If you want to use icons instead of buttons I would try skinning them. The adobe flex site has an example of how you skin in the getting started section. http://www.adobe.com/devnet/flex/ --- In flexcoders@yahoogroups.com, mthielman11 [EMAIL PROTECTED] wrote: I am wanting to use icons

Re: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Thomas Rühl
Dave, I know. Thanks for the hint :) Thomas Rühl Design, Programming Concepts akitogo OHG Hanauer Landstrasse 188 60314 Frankfurt Telefon +49 (0) 69 800 69 445 Fax +49 (0) 69 800 69 449 Mobil +49 (0) 179 750 75 87 E-Mail

[flexcoders] Re: Problem to specify type property in a columnSet in actionScript (urgent)

2006-08-09 Thread olivier
I saw in the debugger that the property Stacker is null. the problem seems to be here but when I set the stacker it doesn't work. As there is few documentation and no example for creating columnset or areaset in actionscript, is anyone able to help me or to give me the way I have to do it ?

[flexcoders] Timeout on RemoteObject (flex 1.5)

2006-08-09 Thread digital_eyezed
Hi, I have a simple remoteObject that returns no problem unless the remoteObject takes longer than 1 minute to return, then flex never picks up the return. Has anyone seen this before? i.e. If I run a query over a time period of 2 weeks it return no problem in about 35 seconds (it's a big

[flexcoders] Combobox - truncate to fit

2006-08-09 Thread Tom Fitzpatrick
The truncate-to-fit attribute works beautifully on labels. Is there a way to invoke the truncate to fit functionality on combobox labels - so that long labels on a fixed-width combobox would get an ellipsis, with the full label appearing in a tooltip? If this is possible, what would be the

[flexcoders] Re: Timeout on RemoteObject (flex 1.5)

2006-08-09 Thread Doug Lowder
The underlying HTTP connection may be timing out. You can try writing a test JSP page that executes the same large sql query - if that times out as well, then the problem is not specific to Flex. Or, if you're running Tomcat as your server you can just take a look at server.xml and bump the

[flexcoders] Re: HTTPService GET method issue

2006-08-09 Thread isvibilsky
Hi Seth, Thanks for the reply. Yes, my request has no data. I think this is the case. I went ahead and replaced the HTTPService with URLRequest for the time being. The second one worked fine. I will test it again according to your input. Regards, Igor. --- In flexcoders@yahoogroups.com, Seth

[flexcoders] Re: Timeout on RemoteObject (flex 1.5)

2006-08-09 Thread digital_eyezed
Thanks, I 've tried all what you have suggested and I do get a return in a JSP app. I also tried changing the connectionTimout value, but that didn't work either. It's really weird as I can see Tomcat returning the object (an ArrayList)in the console (eclipse) but flex just sits their saying

[flexcoders] Re: ComboBox doesn't update display unless 'activated' first

2006-08-09 Thread ben.clinkinbeard
SOLVED: This is weird, but I've got it working. // shortcut var var arr:ArrayCollection = ModelLocator.getInstance().arr_selectedPlans; // if ComboBox is selected, add its label to the AC // if not selected, remove its label from AC if(evt.cb.selected) { // prevent dupes

RE: [flexcoders] integrating ASP JSP with Flex

2006-08-09 Thread Tracy Spratt
Sure. I have a sample app that uses either Flex 1.5 or 2.0 Beta 3 (I havent quite finished porting it to the release), JSP (am working on a simple aspx page) to retrieve an xml file from the server, edit it, and save it back. Send me an email and I will send it to you. tspratt

RE: [flexcoders] passing data to a datagrid

2006-08-09 Thread Tracy Spratt
In general terms, build an ArrayCollection from the data you want to pass, and assign that ArrayCollection to the dataprovider property of the second grid. Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of s_hernandez01 Sent:

[flexcoders] [Flex 2] Dynamic Loading: forcing default skins to be included

2006-08-09 Thread astgtciv
When creating an MXML application (with Application as the top tag), the Style classes for all the components referenced in the Application (e.g., a Panel) are included in the resulting swf, and the styles are initialized. What I am trying to do, however, is to dynamically load a custom

[flexcoders] Simple Date Stuff

2006-08-09 Thread richmcgillicuddy
With the DateField MXML component, how would I initialize the dates of 2 date components to today and 30 days ago. I've tried the following: var aDate :Date = new Date(); var aSecondDate : Date = new Date(); // Does not work below //aSecondDate -= 30; // Does not compile below

[flexcoders] Re: Timeout on RemoteObject (flex 1.5)

2006-08-09 Thread Doug Lowder
Yes, sounds like there is something different going on. So the same result handler that works for a smaller query hangs on a large query, where the only difference is the amount of data being returned by the service? --- In flexcoders@yahoogroups.com, digital_eyezed [EMAIL PROTECTED] wrote:

Re: [flexcoders] Simple Date Stuff

2006-08-09 Thread Jeff Tapper
how about this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=horizontal mx:DateField id=one selectedDate={date1} / mx:DateField id=two selectedDate={date2}/ mx:Script ![CDATA[

Re: [flexcoders] integrating ASP JSP with Flex

2006-08-09 Thread Alan Rother
Sure, Scrap JSP and ASP and use Cold Fusion. Flex 2 has native access to data created by it.-- Alan RotherMacromedia Certified Advanced ColdFusion MX 7 Developer __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] [Flex2] Setting Legend direction programmatically?

2006-08-09 Thread Tariq Ahmed
So I have a legend: mx:Legend id=chartLegend direction=horizontal / And depending on certain events, I programmtically manage the legend items (new Legenditem(), chartLegend.addChild type deal). And that all works fine. The only issue is that the direction is always vertical. Doing a

[flexcoders] Re: TitleWindow Text colors

2006-08-09 Thread sufibaba
Hi Sam, Appreciate your help. I ended up using a VBox control instead of the Titlewindow and in place of the title, I used a text control. I was able to do a customise the VBox to look like the TitleWindow. Cheers, -Tim --- In flexcoders@yahoogroups.com, Samuel Reuben [EMAIL PROTECTED]

[flexcoders] Problems with ExternalInterface

2006-08-09 Thread Joost Nuijten
Hi there, I'm having a problem with the ExternalInterface. After a certain screens fires its creationComplete event an ExternalInterface.call is executed to a js-functions. This functions opens a HTML popup. The user has to fill in some fields there. The result is sent back to Flash

RE: [flexcoders] Re: [Flex2] What do you use for modelling a Flex2 application...?

2006-08-09 Thread Joost Nuijten
I have worked with for about a year (a year ago). I think it was ok, though I haven't done very advanced things... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Thomas Rühl Sent: woensdag 9 augustus 2006 15:31 To:

[flexcoders] Re: Timeout on RemoteObject (flex 1.5)

2006-08-09 Thread Doug Lowder
Can you post the RemoteObject declaration? If you haven't already done so, try setting remote-objects-debug to true in WEB-INF/flex/flex-config.xml, just to see if there's any debug info that might be useful. --- In flexcoders@yahoogroups.com, digital_eyezed [EMAIL PROTECTED] wrote:

[flexcoders] tip: putting an outline on text

2006-08-09 Thread Pan Troglodytes
After a good bit of tinkering, I found a combination of settings I really liked for outlining text. Thought I'd share it in case anyone else was interested. Also thought it might be a good change for someone to tell me what a horrible idea it was. :D someLabel.filters = [new DropShadowFilter(1,

[flexcoders] Break in the datagrid

2006-08-09 Thread s_hernandez01
Hey Flexers Would anyone know how to insert a break (similar to br in html) in the datagrid using an xml file? For example, if I were to have this xml data called into a datagrid how would I break up specific parts of the sentence so that I won't get a scrollbar 20 miles long? descriptionThe

Bug in printing with test case (was Re: [flexcoders] Flex print jobs)

2006-08-09 Thread wayneposner
Tom, I set the width/height for the whole component. I also tried setting it for the image. Setting it for the image actually gives me nothing but a blue background when I view the print via Microsoft Document Imaging. Adding a callLater to the mix still does not yield a jpeg in the print

[flexcoders] Flex 2 - Using removeChild/addChild to move children with removeEffect/addEffect

2006-08-09 Thread thunderstumpgesatwork
Hi guys, I'm trying to add an effect when changing the positioning (order) of some GridItems in a GridRow. In my move function, I remove the child, and add it back at a different index. This works fine with no effect, however if I have a removeEffect and addEffect, I get an error. If I comment

[flexcoders] replacing with \n in Flex Builder

2006-08-09 Thread Pan Troglodytes
I'm trying to figure out how to put a \n in the replace box in Flex Builder. Even in regular _expression_ search mode, it doesn't seem to treat it right. Is there a way?-- Jason __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Re: [flexcoders] Break in the datagrid

2006-08-09 Thread Anatole Tartakovsky
Try DataGridColumn width and wordWrap attributes and make sure DataGrid has variable row height Hope this helps Anatole On 8/9/06, s_hernandez01 [EMAIL PROTECTED] wrote: Hey FlexersWould anyone know how to insert a break (similar to br in html) inthe datagrid using an xml file? For

RE: [flexcoders] 30 day trial that lasts forever

2006-08-09 Thread Matt Chotin
Were aware of the issue. I believe it shouldnt cause a registration problem. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Derek Vadneau Sent: Wednesday, August 09, 2006 12:21 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] 30 day

[flexcoders] Proper way to transition from Login Screen, to Main Application

2006-08-09 Thread Mike Anderson
Hello All, I am not sure about the best practice, for transitioning a typical application from an initial Login Screen, into the Main front-end... Could this be something as simple as using a ViewStack Container - simply with 2 States? The 1st State obviously showing the Login Screen (with a

Re: [flexcoders] [Flex 2] Dynamic Loading: forcing default skins to be included

2006-08-09 Thread Anatole Tartakovsky
This topic is covered in the upcoming book on Flex via self-initializing modules. Please contact me offline as the process is well defined but not automated yet - so it takes about 4 pages to describe itin reasonable way. Regards, Anatole On 8/9/06, astgtciv [EMAIL PROTECTED] wrote:

Re: [flexcoders] [Flex2] Setting Legend direction programmatically?

2006-08-09 Thread Tariq Ahmed
Uhh ignore this posting. I seem to have a habit of figuring it out a minute after a post a question. :) Tariq Ahmed wrote: So I have a legend: mx:Legend id="chartLegend" direction="horizontal" / And depending on certain events, I programmtically manage the legend items

[flexcoders] Loading Unicode values from XML and viewing in Flex components as HTML

2006-08-09 Thread Michael Ritchie
In a recent project, I wanted to load the Unicode values for special characters from an external XML file. I wanted these values to show up in a label or text box using something like label.htmlText = \ul00A9, which would produce the copyright symbol. However, when I loaded the values from a

[flexcoders] Re: Proper way to transition from Login Screen, to Main Application

2006-08-09 Thread Stefan Schmalhaus
--- In flexcoders@yahoogroups.com, Mike Anderson [EMAIL PROTECTED] wrote: Could this be something as simple as using a ViewStack Container - simply with 2 States? The 1st State obviously showing the Login Screen (with a blank application background), and the 2nd State being the Main

Re: [flexcoders] accessing item data in an XMLList

2006-08-09 Thread Rick Root
ping... 7 hours later I haven't come up with a solution.. anyone? I suppose I could send the whole XMLList object to coldfusion as a string and have Coldfusion parse it, but that seems like an unnecessary use of network bandwidth when all I really want are the labels compiled into an array and

[flexcoders] Re: Runtime skinning with an SWF

2006-08-09 Thread alariccole
Thanks for the reply, but I'm looking for a way to use skinning at runtime. That is, I want to load an external swf at runtime (not compile-time through an Embed). The Kiwi article shows it is possible if the external swf is compiled via Flex into a class; since Flash 9 can also compile assets

RE: [Junk E-Mail - LOW] Re: [flexcoders] accessing item data in an XMLList

2006-08-09 Thread Shannon Hicks
With the final release of Flex 2, you now need to add a root XML node to your data... it can be anything, it just has to be there... somekindofroot node label="One item with subitem" node label="Subitem"/ /node /somekindofroot and somekindofroot node label="One Item Only"/

[flexcoders] Re: Break in the datagrid

2006-08-09 Thread s_hernandez01
Thanks Anatole, I didn't see that WordWrap there in the properties box...worked out great. Thanks again. --- In flexcoders@yahoogroups.com, Anatole Tartakovsky [EMAIL PROTECTED] wrote: Try DataGridColumn width and wordWrap attributes and make sure DataGrid has variable row height Hope this

RE: [flexcoders] Re: Proper way to transition from Login Screen, to Main Application

2006-08-09 Thread Mike Anderson
Okay, sounds good to me! I am just a stickler about doing things the right way - even know that there are many ways to accomplish the same thing - especially in the programming world. My thought process reflects precisely the same thing you mentioned, so based on that, I guess it's as simple as

Re: [flexcoders] Re: Proper way to transition from Login Screen, to Main Application

2006-08-09 Thread Sergey Kovalyov
Actually, the best way is to create AuthenticationManager singleton that handles all authentication business logic and notifies subscribed views using events with types SIGN_IN and SIGN_OUT. Due to the fact there could be some authentication views in application (e. g. form and window), you should

RE: [flexcoders] Flex Libs Source Code

2006-08-09 Thread Gordon Smith
I'm afraid that we're not currently making those source files available. However, I just looked at DataEvent.as and there is nothing interesting there -- it's just like the event classes in Flex that we do make available. It has a static const, DATA, for the event type, a standard

  1   2   >