[flexcoders] voodoo data bindings

2006-10-12 Thread Paul Hastings
i seem to be experiencing some sort of voodoo data bindings. i have several grids in an app that a user can drag rows of data between. i have a master ArrayCollection that's tracking all the data. when i set the master dataset like this: mapLayers=new ArrayCollection(updatedLayers);

Re: [flexcoders] FlexBuilder Flintstone

2006-10-12 Thread Ralf Bokelberg
To implement a plugin like Bjorn asked for, we would need documentation and maybe source of the flexbuilder plugin. Is it available somewhere? For example to mark occurences, we would need to be able to walk the syntax tree of the current class. CheersRalf. On 10/12/06, Matt Chotin [EMAIL

RE: [flexcoders] FlexBuilder Flintstone

2006-10-12 Thread Dirk Eismann
Hi Ralf, last time I checked the only publicly available information/documentation was the Code Model / Design Model API for Flex Builder 2. It in the Help System of FB2 (Help Help Contents Adobe Flex Builder 2 Extensibility) I agree that we need more documentation if Adobe wants

Re: [flexcoders] Re: [DateChooser] Emphasize specific days

2006-10-12 Thread Tom Chiverton
On Thursday 12 October 2006 02:31, Andrew D. Goodfellow wrote: select multiple dates, I want to indicate there is some data on certain dates _if_ one of those dates were to be selected by the user. So use the select or change events to update either selectedRanges, or some other control. --

Re: [flexcoders] Re: Cairngorm commands - best practise

2006-10-12 Thread Tom Chiverton
On Wednesday 11 October 2006 20:48, Tim Hoff wrote: WTF, since when do Delagates know about the ModelLocator? Tom, I'm sorry to disagree with you here, Go right ahead and disagree :-) a proxy for a service call; a layer of abstraction to help encapsulate the Commands. Delegates

[flexcoders] [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread João Fernandes
Hi there, I have a datagrid binded to an ArrayCollection which is filled by a DS destination. When I add an item and commit, my datagrid ID column doesnt get updated but if I check the value in my ArrayCollection, the ID property is correctly updated. If I sort my datagrid, the

[flexcoders] Internationalization best practices

2006-10-12 Thread Sergey Kovalyov
Hi All! Could you please share some approaches toward internationalization in Flex 2 applications? Any articles, tutorials and code samples are welcome! Sergey. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread nathanpdaniel
I see these are image ENcoders, are there any image DEcoders available? --- In flexcoders@yahoogroups.com, Rich Tretola [EMAIL PROTECTED] wrote: Thanks Darron, I had downloaded them from http://labs.adobe.com/wiki/index.php/Source:getearlier but they were very old files. Rich On

[flexcoders] Re: Clearing or resetting a datagrid bound to a web service

2006-10-12 Thread dsfhsdfjsdfj
Tracy, Thanks a ton, thats exactly what I needed, and it works perfect! This is my 1st flex app, and I have a background in CF for about 6 years now. I didnt even consider Flex 1.X due to its cost, but I got my company to purchase the Flex builder 2 without too much problem. Thanks again for

[flexcoders] DataGrid: How do I select and copy text for a DataGrid cell?

2006-10-12 Thread mukulneetika
Hi, How do I select and copy (to clipboard) text from a DataGrid cell? I don't want to use itemRenderer? Thanks, Mukul. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Re: Datagrid Checkbox binding to selectedItems?

2006-10-12 Thread haravallabhan
Try using itemRenderer inside a DataGridColumn. inside which you can add a check box. like mx:DataGridColumn mx:itemRenderer mx:Component mx:CheckBox/ /mx:Component /mx:itemRenderer /mx:DataGridColumn --- In flexcoders@yahoogroups.com, wayneposner [EMAIL PROTECTED] wrote: Howdy all...

[flexcoders] Help with class

2006-10-12 Thread Karthik J
Hi,I am new to Flex2. I have a class called test.as. I am trying to create object in mxml script tag by var t:test = new test();If I try to access any the prop of object itz throwing error.But if I define the same inside a function itz working fine.Why is it so? I cant use that object outside

Re: [flexcoders] Flex Documentation Team - Showing Related Technology

2006-10-12 Thread Alexander Lamb
Definitely Flex for Cocoa developers! Show the similarities or differences in the handling of events and bindings. --Alexander LambService d'Informatique MédicaleHôpitaux Universitaires de Genève[EMAIL PROTECTED]On Oct 12, 2006, at 7:13 AM, Matt Chotin wrote:Re the Addendum, if there are folks

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain
it seems good solution for .net custom class object and Flex http://blog.shrefler.net/?p=5but Why Adobe dont support :@ .net Tim Hoff [EMAIL PROTECTED] wrote: Hmmm, something about glass houses comes to mind. Matias, it's far more useful to make constructive comments.

[flexcoders] Problems with styles of type Class (embedded assets)

2006-10-12 Thread genuinexeal
Hello there, The styles used by Flex components can be specified either as properties of a component (i.e. paddingTop) or - even better - inside a Style tag, ideally linked to an external CSS file (i.e. padding-top). Well, I have this problem when I want to assign _nothing_ to a style of type

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain
HI to all ...hmm Thanks Guyz ... Matías Nicolás Sommi that links seems good but missing Flex code :) ,infact I read one article in Andrew Stopford's Weblog at http://weblogs.asp.net/astopford/articles/106476.aspxits about flex 1.5 butur given link code andhis structure is same ,but the

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain
HI to all ...hmm Thanks Guyz ... Matías Nicolás Sommi that links seems good but missing Flex code :) ,infact I read one article in Andrew Stopford's Weblog at http://weblogs.asp.net/astopford/articles/106476.aspxits about flex 1.5 butur given link code andhis structure is same ,but the

[flexcoders] cropping image...with Copypixels

2006-10-12 Thread learner
hello , Iam trying to do cropping of image which is dynamically assigned to a vbox componentand i have used following Code:var bd : BitmapData = new BitmapData(h,w);var m1 : Matrix = new Matrix();bd.draw (target, m1);var puzzlePieceBmp:BitmapData = new

[flexcoders] Howto create View Source

2006-10-12 Thread Teguh Mualim
Hi, I know viewSourceURL=url will turn on the view source right click. But I have no idea how to create those SouceTree.swf and stuff. How do I create those? Thanks. Teguh -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Re: DateField as itemEditor problem

2006-10-12 Thread Max
Any suggestion ??? Salud Max -- 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 your group on the web, go to:

[flexcoders] Re: Help with class

2006-10-12 Thread Teguh Mualim
Hi Katrik, Looks like it's a permission/scoping (whatever the term is) issue. Making it public might solve that. Teguh --- In flexcoders@yahoogroups.com, Karthik J [EMAIL PROTECTED] wrote: Hi, I am new to Flex2. I have a class called test.as. I am trying to create object in mxml script tag

[flexcoders] Calling View Stats of one component from another

2006-10-12 Thread big_mad_kev
Hi, Is it possible from one component to change the view state of another component in the same main page i.e: App comp:comp1 //I want an event in comp2 to change the view state of comp1 comp:comp2 /App Not sure if this is doable TIA Kev -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Help with class

2006-10-12 Thread Paul Andrews
A bit more code might help. Did you declare the property as private? Is the function you're talking about a method of the class? Paul - Original Message - From: Karthik J To: flexcoders@yahoogroups.com Sent: Thursday, October 12, 2006 1:04 PM Subject:

[flexcoders] [Flex2] DataGridItemRenderer displaying an image...

2006-10-12 Thread Thomas Rühl
Hello flexcoders, please, can anyone provide me with an example of how to implement an ItemRenderer for a DataGrid that displays an image or icon for each row...? Unfortunately, there is no example within the Docs at all and I am constantly failing all the way long... Cheers, Thomas

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Matias Nicolas Sommi
Hello, I fix the IIS configuration problem. Now I can consume NET webservice without problem.Thanks to all for the help.PD: for the IIS, isn't related to flex, and for that reason I marked with off topic. 2006/10/11, Tim Hoff [EMAIL PROTECTED]: Hmmm, something

[flexcoders] Re: [Flex2] DataGridItemRenderer displaying an image...

2006-10-12 Thread Teguh Mualim
Hi Thomas, You got to use itemRenderer. For example mx:DataGridColumn headerText=icon itemRenderer=mx.controls.Image dataField=icon / Teguh --- In flexcoders@yahoogroups.com, Thomas Rühl [EMAIL PROTECTED] wrote: Hello flexcoders, please, can anyone provide me with an example of how to

Re: [flexcoders] Howto create View Source

2006-10-12 Thread Hasan Otuome
Hi Teguh, Are you using FlexBuilder? If so, there's a "publish source" button on the toolbar. It creates the following structure: - srcview (SourceTree, etc) ---source (HTML pages of everything published) HTH...=) P E A C E Hasan Teguh Mualim wrote: Hi, I know

[flexcoders] Re: Help with class

2006-10-12 Thread karthik
Yes, I declared as private. That was the problem. Thanks for ur help... --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: A bit more code might help. Did you declare the property as private? Is the function you're talking about a method of the class? Paul -

[flexcoders] Re: Howto create View Source

2006-10-12 Thread Teguh Mualim
Hi Hasan, Is that a FlexBuilder only functionality? I am using FlashDevelop. Wonder if there is a plugin or command line tool to do that. Thanks for the quick response. Teguh -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] problem loading images with URLLoader

2006-10-12 Thread godsman4amy
We are building a bookstore and have one bug we can't figure out. Some of the items' thumbnail images are missing. We wrote some code that tries to load the image, and if it doesn't load correctly it replaces it with a default image. The problem is, the function is returning the string before

RE: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Trice
The files are old, but they still work. I had to modify JPGEncoder.asso that it would build correctly in Flex 2 release version. I'd attach it to this post, but I don't have the source on this computer. I'm not aware of any decoders. You could always try to use a loader object to

Re: [flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-12 Thread Ralf Bokelberg
Hi Thomas, i can't see a problem with that. Generally though, if you implement multiple independant frontcontrollers, you need to take care of the event names. Every event ends up in the global singleton instance of the CairngormEventDispatcher. If two events have the same name - boom, the last

Re: [flexcoders] Re: getting panel title field to wrap

2006-10-12 Thread Jaime Bermudez
Hey Wayne,Thanks for the tip. I just integrated the updateDisplayList code into my app and it works great! Sorry it took so long to reply but I had lost the thread.Anyway, thanks again!- Jaime On 10/10/06, wayne_badu_johnson [EMAIL PROTECTED] wrote: Hi JamieYou may need to set the width/height

Re: [flexcoders] [Flex2, Cairngorm] Several Cairngorm instances in one app...?

2006-10-12 Thread Thomas Rühl
Thanks Ralf, that's a great idea, I'll do so :) This seems a more transparent solution to me than starting to use ApplicationDomains in the middle of things. I am totally excited of how the project will look like in the end... Cheerio, Thomas Thomas

[flexcoders] Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Libby
I just installed Flex 2 on WebSphere 6. While doing the lessons in the introductory tutorial, I keep see the message above in the server log. Has anyone else see this, what does it mean, and how do I get rid of it? Thanks, Libby -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Flex Documentation Team - Showing Related Technology

2006-10-12 Thread jrunrandy
Hi Judah, I was not an original member of the Flex team so can't really comment on valid comparisons for dataprovider. I see where you're coming from, though and perhaps one of the developers can chime in. As far as server-specific stuff, it might be best to keep it on the web (the Flex

[flexcoders] Re: AS3 substitute for UIObject.destroyObject() ?

2006-10-12 Thread leo4beer
Thanks, will try this instead --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: removeChild() or removeChildAt(), which UIComponent inherits from DisplayObjectContainer. - Gordon From: flexcoders@yahoogroups.com

[flexcoders] Re: [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread Tom Ruggles
Hi João, I am unable to reproduce this behavior using assorted methods of inserting the new item. Can you provide more details on exactly how you are inserting, what your object looks like, how your destination is configured, etc? I paid close attention to this specific scenario throughout

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Sajid Hussain
Could u telll ...what was the problem ??Matias Nicolas Sommi [EMAIL PROTECTED] wrote: Hello, I fix the IIS configuration problem. Now I can consume NET webservice without problem.Thanks to all for the help.PD: for the IIS, isn't related to flex, and for that reason I marked with "off

[flexcoders] LabelFunction on DataGrid column wiping out Value

2006-10-12 Thread Mike Anderson
Hello All, I have an editable DataGrid - and one particular column contains currency values. With that said, I have a LabelFunction applied to this particular column - and when the Grid populates, all the values show up properly formatted($23.95 for example). BUT, whenever I click inside the

RE: [flexcoders] Re: [FDS] DataGrid not updated when ArrayCollection is updated from sync

2006-10-12 Thread João Fernandes
Hi Tom, Im using CF and CF generated assembler files for my CRUD. Im in fact replacing  CF inserts/updates/deletes by SAP webservices calls which do basically the same. SAP return all fields as CHAR and I first thought that was the problem, having a string as the key but when

Re: [flexcoders] Internationalization best practices

2006-10-12 Thread greg h
Sergey, Following below are links for two great starting points. Please post back as you find others. Also please post any hints and tips about the lessons you learn in internationalizing your application. hth, g Flex 2 Developer's Guide CHAPTER 25: Localizing Flex Applications

RE: [flexcoders] cropping image...with Copypixels

2006-10-12 Thread Andrew Trice
Instead of using copyPixels, try something like this This function crops the bitmapData to the width and height with respect to the center of the image. public function centerAndCrop( bitmapData : BitmapData, cWidth : Number, cHeight : Number ) : BitmapData { if(cWidth

[flexcoders] binding to an element of an array (Flex 1.5)

2006-10-12 Thread dgigon
Hi everyone, I saw in the documentation that one can't bind to elements of an arrays. Indeed, it seems that something like label text={someArray[1]}/ does nothing. I searched through the mailing list archive and made some tests myself, but couldn't find something really simple. - The first

[flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Tom Ruggles
Hi Libby, We are unaware of any cases of Flex causing this warning. What are you doing when it occurs? Thanks, Tom Ruggles FDS QA --- In flexcoders@yahoogroups.com, Libby [EMAIL PROTECTED] wrote: I just installed Flex 2 on WebSphere 6. While doing the lessons in the introductory tutorial,

Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Rich Tretola
The ones at the Adobe lab from the link Darron provided work fine without any changes.Richhttp://www.everythingflex.comOn 10/12/06, Andrew Trice [EMAIL PROTECTED] wrote: The files are old, but they still work. I had to modify JPGEncoder.asso that it would build correctly in

Re: [flexcoders] Re: Flex Documentation Team - Showing Related Technology

2006-10-12 Thread greg h
Maybe a working sample app for each server technology stack? For newbies to: a) know their config works; and, b) pick apart and learn from. I think Adobe did a good job providing ColdFusion developers sample apps and corresponding how-to articles. e.g. On support lists like this one, I have

RE: [flexcoders] Re: Datagrid Checkbox binding to selectedItems?

2006-10-12 Thread Tracy Spratt
Well, you can programmatically update the selectedItems array from the checkbox item renderer. I am not sure what the interaction of this will be with the default multi-select behavior, row highlighting, etc. I think you will just have to try it. Tracy From:

Re: [flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Daniel Wabyick
While I don't have Websphere experience, this sounds suspiciously like an error message that happens when a servlet or filter tries to set an HTTP response header for a response that has already been written to. I would inspect your web-app configuration and make sure you don't have any extra

[flexcoders] RemoteObject only accesses, cannot set

2006-10-12 Thread Brian Dunphy
Hello,Just starting to use RemoteObjects, but for some reason my RemoteObject can only retrieve information, it can't use any of the mutator methods in my class.My Java class is as follows:package com.testing.pojos ;import java.io.Serializable;public class HelloWorldMessage implements

[flexcoders] CFC to AS3 Class Mapping

2006-10-12 Thread Derrick Grigg
I was having a great deal of difficultly getting my CFC classes to map properly to my AS3 classes. I found a few posts here that dealt with the issue but nothing seemed to work properly. I discovered one key thing that made it all work. In the AS3 class file I needed two Remote Class mappings

[flexcoders] AccordionHeader

2006-10-12 Thread Maciek Wciślik
Hi list, I want to have custom Accordion header (found Waldo Smith old implementation - doesn't work in new Flex2) with two controls in it - Button which controls Accordion behavior (as normal AccordionHeader), and CheckBox to do something else. Does anybody did somethinglike that? br maciek

RE: [flexcoders] Problems with styles of type Class (embedded assets)

2006-10-12 Thread Gordon Smith
mx:Style .treeNoIcons { disclosure-open-icon: ClassReference(null); disclosure-close-icon: ClassReference(null); } /mx:Style - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of genuinexeal Sent: Thursday, October 12, 2006

[flexcoders] LabelFunctions for display purposes only correct??

2006-10-12 Thread Mike Anderson
Hello All, This is a continuation of my previous thread, regarding my CurrencyFormatter wiping out my UnitPrice value in a DataGrid cell. I figured out the problem, and that was, my ValueObject containing the particular Variable is cast as a NUMBER. This is for obvious reasons, since it's a

[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread klumikaze
It would appear I somehow figured this out on my own... I have a feeling it's that I needed to implement the Remote class (java.rmi.Remote)? Am I right? Thanks, hope this helps somebody else that's stumped on RemoteObjects. Brian --- In flexcoders@yahoogroups.com, Brian Dunphy [EMAIL PROTECTED]

Re: [flexcoders] Re: Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-12 Thread Matias Nicolas Sommi
He!, the first problem was metabase permission on the iis, and I download a microsoft tool to fix it (aspnet_iisreg or something like that). I run the command for give to the iis to read acces to the metabase. After this, I've got an extrange error, it's like the iis was reading an extrange

[flexcoders] Making StyleSheets and StyleManger work together.

2006-10-12 Thread Lance Linder
Something that I am finding a real pain in my Flex 2 projects is trying to apply StyleSheets to my text. I have found some information on fixing the problems with the TextArea component and I am in the process of applying these to the Text component as well. I think my biggest gripe

[flexcoders] Am I expecting too much from data binding?

2006-10-12 Thread Marlon Moyer
I've got an xml file that I read in as e4x format and create an interface from using repeaters. The interface looks like this: Accordion - Policy Accordion - Division TabNavigator - State Repeating Rows of classcodes Button to add a class code to the current state

RE: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Shannon Hicks
Hey, I'm interested in trying to build out something (in flex 2)that can accept an MJpeg stream. Basically, it's a stream of one jpg image after another. This would be useful to potentially a bunch of people who want to show their network webcams via Flash/Flex2. Anyone a tad more

[flexcoders] Article on setting up an Apache/Tomcat/FDS Server

2006-10-12 Thread Douglas McCarroll
Hi All, I just posted this article: http://www.brightworks.com/flex_ability/?p=15 Might be helpful to some... Douglas -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] where to place crossdomain.xml

2006-10-12 Thread sreedhar reddy
Hi ,I haveinstalled my Flex application on Tomcat\webapps\, and I am trying to access it from Remote Machine which is located in a different domain. The problem is, I can access the application using "http://domainname:8080/application/bin/application.html", but the functionality is not

RE: [flexcoders] Re: DateField as itemEditor problem

2006-10-12 Thread Shannon Hicks
I got it to (mostly) work... mx:DataGridColumn headerText="Date" itemEditor="mx.controls.DateField" editorDataField="selectedDate" dataField="myDBDate" editable="true" textAlign="center" labelFunction="mmddFormat" / Shan From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Re: custom outlined pie labels

2006-10-12 Thread Pan Troglodytes
For those who might find this thread useful: for each (var labelElement:UIComponent in labelElements) labelElement.filters = [new DropShadowFilter(1, 0, 0xFF, 1, 0, 0), new DropShadowFilter(1, 90, 0xFF, 1, 0, 0), new DropShadowFilter(1, 180, 0xFF, 1, 0, 0), new DropShadowFilter(1,

RE: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread Carson Hager
This has nothing to do with crossdomain.xml. Carson Carson HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 866-CYNERGYMobile: 1.703.489.6466 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

RE: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Trice
Id recommend using the socket class to stream the data to your application as a ByteArray. Then use the loader classs loadBytes method to render the images as you get them. Sorry, Im not familiar with MJpeg, so I cant get much more specific. -Andy

RE: [flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Dustin Mercer
I am working on websphere 6 and get this message as well. I get this whenever I call the mxml application (whether its a fresh compile or cached version). Does flex gzip the swf before it sends it out? I have seen this exact same message when using gzip. Just a thought. Dustin

[flexcoders] Calculating Values on The Fly

2006-10-12 Thread Akash
Hi, I have 2 comboBoxes, a text area and a label. Whenever a change occurs in any of the above said controls the resultant value of the label should come accordingly on the fly. Can anybody Tell me some example of this kind. Looking Forward to your cooperation, Akash

RE: [flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread Jeff Vroom
It sounds like you are using a request scoped remote object on the server side so for each invocation, it creates a new instance. Add scopeapplication/scope inside of your destination tags properties tag. The other option is session which is one per flex session typically one per

Re: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread Matias Nicolas Sommi
You must put the crossdomain.xml in the root directory, in your case: http://domainname:8080/Remember that this file must be placed in the machine who you want to access from flex. 2006/10/12, sreedhar reddy [EMAIL PROTECTED]: Hi ,I haveinstalled my Flex

[flexcoders] Alternative image file formats

2006-10-12 Thread Peterson, Chris
I would like to be able to show .tiff images, as well as possibly word doc's or adobe acrobat files, inside my flex app. Is this possible without a server-side converter (which I think would be too slow for my purposes)? Chris -- Flexcoders Mailing List FAQ:

Re: [flexcoders] where to place crossdomain.xml

2006-10-12 Thread hank williams
As Carson said, I dont think this problem has anything to do with crossdomain issues. It sounds like a regular access of a flex application on a tomcat server. I dont see the crossdomain issues.Hank On 10/12/06, Matias Nicolas Sommi [EMAIL PROTECTED] wrote: You must put the crossdomain.xml

[flexcoders] Re: Flex 2 - WARNING: Cannot set header. Response already committed.

2006-10-12 Thread Tom Ruggles
What about if you request the compiled swf directly? Does your app make HTTPService or WebService requests? --- In flexcoders@yahoogroups.com, Dustin Mercer [EMAIL PROTECTED] wrote: I am working on websphere 6 and get this message as well. I get this whenever I call the mxml application

[flexcoders] Re: RemoteObject only accesses, cannot set

2006-10-12 Thread Tom Ruggles
I see that you had application scope listed in your destination. Did you restart your web app after adding this? I was unable to reproduce your issue using your RO, destination and MXML on the FDS 2 GA build. Tom Ruggles FDS QA --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL

Re: [flexcoders] Calculating Values on The Fly

2006-10-12 Thread Clint Tredway
a simple solution is to create a function that is called on the change events of the combo boxes and set the text of the label to the selected Item of those combo boxes. I can create you a quick show and tell if you would like.. On 10/12/06, Akash [EMAIL PROTECTED] wrote:

Re: [flexcoders] Alternative image file formats

2006-10-12 Thread Darron J. Schall
With the ByteArray capability of Flash Player 9, "anything" is possible. Jim Cheng has an .xls parser that loads an .xls file, scans it, and then displays the results in a data grid. See here: http://www.psalterego.com/2006/05/17/parsing-excel-files-with-actionscript-30/ If you can find the

[flexcoders] Re: Calculating Values on The Fly

2006-10-12 Thread camlinaeizerous
mx:Application creationComplete=update() xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Script ![CDATA[ [Bindable] public var values: Array = [1,2,3,4,5,6,7,8,9,10]; public var total:Number;

Re: [flexcoders] Alternative image file formats

2006-10-12 Thread Paul Spitzer
http://www.ee.cooper.edu/courses/course_pages/past_courses/EE458/TIFF/ ... left over in my bookmarks from when I was experimenting with rendering TIFFs. Darron J. Schall wrote: With the ByteArray capability of Flash Player 9, anything is possible. Jim Cheng has an .xls parser that loads an

[flexcoders] Re: Cairngorm commands - best practise

2006-10-12 Thread Tim Hoff
I see what you're saying Tom. We just have different points of view concerning this matter. The choice is whether you want to scatter the arguments throughout your code or scatter unnecessary references to the ModelLocator similarly. The bottom line: if it works for you, that's all that

[flexcoders] e4x and namespaces

2006-10-12 Thread Diego Guebel
Hi all, I'm trying to read some nodes with e4x and was dealing with the syntax for the namespaces for a while without luck. I could read the node when it has only one namespace, but dont know how is the syntax when I have more I have an xml like this: MyXMLResponse

[flexcoders] FileReferenceList to a servlet

2006-10-12 Thread randomt2000
Is there anyone out there who has had luck sending multiple attachments, all-at-once, to a Servlet using FileReferenceList ? I am trying to create an email like functionality where a user can browse to multiple files and send them as attachments. The best I have come up with is keeping

[flexcoders] my event isn't sufficiently loaded to provide this information.

2006-10-12 Thread David Harris
This is a bit weird. (Every other time I have said this it's been me but...) I have a custom event that I am broadcasting on a button click. The Button is clicked, which then calls a function. When I put a trace of the event.target I get the The loading object is not sufficiently loaded to

[flexcoders] re:Creating SVG xml from within flex

2006-10-12 Thread Jeff Tapper
nevermind, i figured it out shortly after hitting send... [EMAIL PROTECTED] = colorGroup.selectedValue.toString(); [EMAIL PROTECTED] = none; path[@stroke-width]= lineThickness.selectedLabel; == im creating a flex widget which converts flash player drawing api graphics into svg. So

[flexcoders] Creating SVG xml from within flex

2006-10-12 Thread Jeff Tapper
im creating a flex widget which converts flash player drawing api graphics into svg. So far, this has gone well, but i hit an ugly snag. it seems the svg spec uses stroke-width as the attribute to specify the width of a line, however, the flex compiler doesn't allow for hyphens in an

[flexcoders] why does labelFunction need an...

2006-10-12 Thread Clint Tredway
an empty second param? I created a labelFunction for a datagrid column to format a date and i got an error saying that the function expected 2 parameters but only got 1. In the help docs inside FB, the 1 labelFunction example I found only passed in 1 param... so why is it telling me it needs 2? I

[flexcoders] Re: why does labelFunction need an...

2006-10-12 Thread Doug Lowder
The signature for labelFunctionuses an additional column parameterin the DataGrid and DataGridColumn classes. See the following: http://livedocs.macromedia.com/flex/2/langref/mx/controls/listClasses/ListBase.html#labelFunction --- In flexcoders@yahoogroups.com, "Clint Tredway" [EMAIL PROTECTED]

Re: [flexcoders] why does labelFunction need an...

2006-10-12 Thread Jeff Tapper
it wants to pass you a reference to the dataGridColumn which is being rendered... At 04:49 PM 10/12/2006, Clint Tredway wrote: an empty second param? I created a labelFunction for a datagrid column to format a date and i got an error saying that the function expected 2 parameters but only got

[flexcoders] Where to Download Eclipse 3.1.x?

2006-10-12 Thread Ronald Kinion
We're beginning the process here of migrating to Flex 2. As part of that we are also switching our java development from an old version of IntelliJ (the people who control the purse strings won't pay for all the new licenses for intellij we would require--especially since they just dug

[flexcoders] Binding scroll position to the selected index

2006-10-12 Thread Daniel Wabyick
I would like to configure a List class so that it will automatically scroll to show the selected item whenever the selected index/item changes. I can't see anyway to bind that using the standard List class, and it seems like I will have to subclass it in order to work. Am I missing an

Re: [flexcoders] why does labelFunction need an...

2006-10-12 Thread Clint Tredway
well, that helps. thanksOn 10/12/06, Jeff Tapper [EMAIL PROTECTED] wrote: it wants to pass you a reference to the dataGridColumn which is being rendered... At 04:49 PM 10/12/2006, Clint Tredway wrote: an empty second param? I created a labelFunction for a

[flexcoders] Now Shipping: ActionScript 3.0 Cookbook – Solutions for Flash Platform and Flex Application Developers

2006-10-12 Thread greg h
fyi ... O'Reilly is now shipping: ActionScript 3.0 Cookbook Solutions for Flash Platform and Flex Application Developers By Joey Lott, Darron Schall, Keith Peters http://www.oreilly.com/catalog/actscpt3ckbk/#top __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tim Hoff
Hi Daniel, On a click or change event you could use this: myList.scrollToIndex(myList.selectedIndex); -TH --- In flexcoders@yahoogroups.com, Daniel Wabyick [EMAIL PROTECTED] wrote: I would like to configure a List class so that it will automatically scroll to show the selected item

RE: [flexcoders] Binding scroll position to the selected index

2006-10-12 Thread Tracy Spratt
It sounds like you are setting the selectedIndex programmatically, so maybe you could use the valueCommit event to do: valueCommit=myList.verticalScrollPosition=myList.selectedIndex Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of

Re: [flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Daniel Wabyick
Ah, that was a good idea, but it doesn't work in my case. The list is being filtered and the selectedItem is being set via other code. Thus the need to bind to selectedItem, as the change handler won't be called. I should be able to whip something up fairly easily via a subclass ... -D

[flexcoders] Re: mx_internal_uid and Tree issues

2006-10-12 Thread elleones63
--- In flexcoders@yahoogroups.com, haravallabhan [EMAIL PROTECTED] wrote: Possible cause for this could be that you populate the tree with the objects in the collection. try to get the property name in it. Its The variable is used to hold the items. These items are added based on the user's

[flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tim Hoff
Ok, subclass yes. Or, you could watch for the change of the selectedIndex with the Observe tag. Alex Uhlmann has a good article here: http://weblogs.macromedia.com/auhlmann/archives/2006/09/using_binding_s.cfm#more -TH--- In flexcoders@yahoogroups.com, Daniel Wabyick [EMAIL PROTECTED] wrote:

[flexcoders] Rotate Items in HorizontalList

2006-10-12 Thread bulldog65mustang
Is it possible to rotate the items in a HorizontalList? I have used the mx:Sequence and mx:AnimateProperty tag to move through the items one at a time, but once it reaches the end its done. I need to continually cycle the items in the List. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Re: Binding scroll position to the selected index

2006-10-12 Thread Tracy Spratt
Did you try the commitValue event? Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff Sent: Thursday, October 12, 2006 6:23 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Binding scroll position to the selected

RE: [flexcoders] Rotate Items in HorizontalList

2006-10-12 Thread Dustin Mercer
Do you need to only have one rotating at a time, rotating after one another and then starting again, or do they all need to rotate at once? What is the exact behavior you want to see? One thing you can try is setting the repeatCount on your sequence effect. That should make the

Re: [Junk E-Mail - LOW] Re: [flexcoders] Re: JPEGEncoder.as

2006-10-12 Thread Andrew Bourne
Hi Shannon, I currently do almost exactly what you are after. I have a socket class that I use to stream the binary data which I then split into the image packets and then decode the jpegs via the Loader.loadBytes method. We use a custom protocol with normal jpegs as the data, so for mjpeg

RE: [flexcoders] Where to Download Eclipse 3.1.x?

2006-10-12 Thread Aurélien BLOND
You can find old Eclipse releases on this web site: http://archive.eclipse.org -- Aurélien BLOND De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] De la part de Ronald Kinion Envoyé: jeudi 12 octobre 2006 23:30 À: flexcoders@yahoogroups.com Objet:

  1   2   >