[flexcoders] resizing an image with actionscript/flex 2

2006-10-17 Thread duccio del ministro
Hi all, i'm devoloping an application that has an image uploader. I'm wondering if there is a way to resize an image (jpg) before uploading to the server. Any examples or suggests? Thanks in advance best reagrds Duccio Del Ministro -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Multiline ComboBox

2006-10-17 Thread Samuel Reuben
Have you tried playing around with PopUpButton? it might be what you're looking for, -sam On 10/17/06, Michael Labriola [EMAIL PROTECTED] wrote: Michael,Problem is that ComboBase uses a textInput control to display thecurrently selected item. The TextInput is limited to displaying asingle

[flexcoders] does FLEX2 support text direction right to left?

2006-10-17 Thread shemeshkale
hello, can someone tell me if flex2 have an option of RTL text? i need to use hebrew and arabic in my flex app but i know the flash player do not have support for RTL text. or does it? is there any way to work with RTL texts ? -- Flexcoders Mailing List FAQ:

[flexcoders] Bug in Date() class math

2006-10-17 Thread Mike Crowe
Hi folks, I submitted this bug to Adobe today. I was trying to figure out why my Date routines wouldn't work. Here's a test function which fails: The following code appears to mis-compute the result date. This is adding 16 days to the current date: public function testMike():void {

[flexcoders] writing and using classes

2006-10-17 Thread amigo_fd
Hello, I want to make a class with a function I want to reuse in my application. This is new for me, so I need some help ... I've created a file CommonFunctions.as in the root of my application with this code: package { public class CommonFunctions { public function

RE: [flexcoders] Flex modules

2006-10-17 Thread Dimitrios Gianninas
Thats what I like to hear! Thanks! Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Matt Chotin Sent: Tue 10/17/2006 12:20 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex modules It's finished in the next

[flexcoders] Re: load date for DateField from database in correct format

2006-10-17 Thread amigo_fd
Ok, wrote a simple solution myself for a string in this format: -mm-dd hh:mm:ss public function String2Date(doString:String):Date { var doYear:int = Number(doString.substr(0,4)); var doMonth:int = Number(doString.substr(5,2)); var doDay:int = Number(doString.substr(8,2)); var doHour:int =

RE: [flexcoders] Wrapping components within a container

2006-10-17 Thread KP
Can we embed an Iframe in these fbox. I havnt tried this out but if we can I will surely give it a shot.. Thanks Kumar From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brian Dunphy Sent: Tuesday, October 03, 2006 9:14 PM To:

[flexcoders] resizing an image with actionscript/flex 2

2006-10-17 Thread duccio del ministro
Hi all, i'm devoloping a flex application that has an image uploader. I'm wondering if there is a way to resize an image (jpg) before uploading to the server. Any examples or suggests? Thanks in advance best reagrds Duccio Del Ministro -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: How do I recompile charts?

2006-10-17 Thread Tom Chiverton
On Monday 16 October 2006 08:34, d.tuppeny wrote: I've modified the defaultColors list in the HaloDefaults.as, to customise the colours that appear in pie chart wedges, but it Would it not be better to create your own skin rather than mucking with the defaults of an existing one ? -- Tom

RE: [flexcoders] Bug in Date() class math

2006-10-17 Thread Pekka Kola
Daylight saving time btw Oct 16 .. Nov 1?? BR, Pekka -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Crowe Sent: 17. lokakuuta 2006 6:32 To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug in Date() class math Hi folks, I submitted

[flexcoders] Re: Multiple classes per package

2006-10-17 Thread polestar11
--- In flexcoders@yahoogroups.com, Claus Wahlers [EMAIL PROTECTED] wrote: Use the 'internal' access modifier: // File mypackage/MainClass.as package mypackage { public class MainClass { // .. } } // File mypackage/HelperClass.as package mypackage { internal class

Re: [flexcoders] resizing an image with actionscript/flex 2

2006-10-17 Thread Muzak
quick demo http://www.muzakdeezign.com/flex2/image_resizer/ source view: http://www.muzakdeezign.com/flex2/image_resizer/srcview/index.html Saving file to server is disabled online. regards, Muzak - Original Message - From: duccio del ministro [EMAIL PROTECTED] To:

[flexcoders] Complex container sizing problem (100% height and measured maxHeight)

2006-10-17 Thread Sergey Kovalyov
Hi All! I want my container (e. g. Panel) to be sized by its children, though its height should not be greater than 100%. When I don't set height, the container is sized by its children endlessly, but when I set it to 100% it occupies all the space available, so that there is emptiness below the

Re: [flexcoders] Complex container sizing problem (100% height and measured maxHeight)

2006-10-17 Thread Michael Schmalle
Hi,I 'think' I just had the same issue as you although I don't quite understand what you wrote.Try setting your parent containers minWidth=100 and minHeight=100;See the long thread on the flexcomponents yahoo mailing list as it is to lengthy to describe what is happening.

Re: [flexcoders] resizing an image with actionscript/flex 2

2006-10-17 Thread duccio del ministro
Thanks a lot Muzak!!!Regards,Duccio2006/10/17, Muzak [EMAIL PROTECTED]: quick demo http://www.muzakdeezign.com/flex2/image_resizer/ source view: http://www.muzakdeezign.com/flex2/image_resizer/srcview/index.html Saving file to server is disabled online.

[flexcoders] Listen to changes of a bindable variable

2006-10-17 Thread Jonas Windey
Hi, Were using the riawave pattern (lightweight version of cairngorm), and Im trying to listen to changes to our ModelLocator. When I use a textfield that contains a direct reference to our model, everything is working fine: mycomp text= {model.currentUser.name} / .. Now I

Re: [flexcoders] Complex container sizing problem (100% height and measured maxHeight)

2006-10-17 Thread Sergey Kovalyov
Ok, in other words I want my panel to be sized by its children (no emptiness inside below the children), but this panel height must not be greater than 100% (vertical scroll would appear inside it when there are too much children). On 10/17/06, Michael Schmalle [EMAIL PROTECTED] wrote: Hi,I

Re: [flexcoders] Listen to changes of a bindable variable

2006-10-17 Thread Dima Ulich
Use Paul William's solution. It helps me alot. check it here http://weblogs.macromedia.com/paulw/ hope it helps Street - Original Message From: Jonas Windey [EMAIL PROTECTED]To: flexcoders@yahoogroups.comSent: Tuesday, October 17, 2006 4:39:01 PMSubject: [flexcoders] Listen to changes of

Re: [flexcoders] Grouping result set output

2006-10-17 Thread Tom Chiverton
So nest your TileList's, add styles where needed to move it further left/right in the indent. Or use a tree control. -- Tom Chiverton Helping to enthusiastically synthesize 24/365 clusters This email is sent for and on behalf of Halliwells

Re: [flexcoders] Bug in Date() class math

2006-10-17 Thread Darron J. Schall
While I'm not sure on the status of this as a bug, I would suggest anyway to use the setDate() and getDate() methods instead. On a date object, you can call setDate() with an arbitrary value and have the date automatically adjust to stay consistent. That is, consider this example: var

Re: [flexcoders] Complex container sizing problem (100% height and measured maxHeight)

2006-10-17 Thread Michael Schmalle
Yeah,that is what I thought.Did you try setting the Panel's minWidth and minHeight like I said? I know this sounds backwards but Alex explains why Adobe did this.I had the same problem, I wanted my workspace container to be the '100%' view. thinking a bit more...Now that I think about what you

[flexcoders] Binary Sockets, and Folder Browser

2006-10-17 Thread grunz1234
Hello I have some questions on Flex. 1. Is it possible to create a socket on a flash client? 2. Is it possible to open a file from the users OS and upload it? thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] CairngormStore for Flex 2

2006-10-17 Thread Bhuvan
I am trying to download CairngormStore for Flex 2from http://www.iterationtwo.com/cairngormstore/CairngormStoreWeb.war but the link is not working. If someone has a copy of this war, please email it to me at [EMAIL PROTECTED] TIA __._,_.___ -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Binary Sockets, and Folder Browser

2006-10-17 Thread Tom Chiverton
On Tuesday 17 October 2006 11:11, grunz1234 wrote: 1. Is it possible to create a socket on a flash client? Yes. 2. Is it possible to open a file from the users OS and upload it? Not without asking them first. -- Tom Chiverton Helping to ambassadorially reinvent second-generation

[flexcoders] Re: does FLEX2 support text direction right to left?

2006-10-17 Thread Michael Labriola
Unfortunately, no. This is an area where I have spent countless hours trying to work around. Flash player has absolutely no support for right to left natively. Further, while you can manually do *some* things to fix this, ultimately none of the text components (input, area, etc) allow editing in

Re: [flexcoders] Grouping result set output

2006-10-17 Thread Douglas Knudsen
On 10/16/06, rachelmaxim [EMAIL PROTECTED] wrote: Hello,I have a query result set that I am displaying with TileLists. I haveit working fine where the entire result set is in one tile list, butwhat I really need is to group the output into separate tile lists by a certain field.Something

[flexcoders] Re: writing and using classes

2006-10-17 Thread Michael Labriola
Frank, I think you might be approaching this from the wrong perspective. In particular, if you don't have object oriented programming experience, you may want to take a few minutes and read some of the many tutorials available online. As Flex is a pretty OO heavy environment, without this

RE: [flexcoders] Listen to changes of a bindable variable

2006-10-17 Thread Jonas Windey
Thanks man, that did the trick! From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dima Ulich Sent: dinsdag 17 oktober 2006 14:54 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Listen to changes of a bindable variable Use Paul William's

RE: [flexcoders] CairngormStore for Flex 2

2006-10-17 Thread Evan Gifford
You can find it on Andy Raynes blog: http://weblogs.macromedia.com/arayne/archives/2006/08/cairngormstore.cfm From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Bhuvan Sent: Tuesday, October 17, 2006 5:19 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Grouping result set output

2006-10-17 Thread Rachel Maxim
Thanks - it seems so obvious yet I didn't think of that :) yes, I'm a total noob at Flex!ROn 10/17/06, Tom Chiverton [EMAIL PROTECTED] wrote:So nest your TileList's, add styles where needed to move it further left/right in the indent.Or use a tree control.--Tom ChivertonHelping to

[flexcoders] Loosing focusedcell in datagrid

2006-10-17 Thread Tommy Mestdagh
Title: Loosing focusedcell in datagrid Hi all coders I have a problem with a checkboxrenderer in a datagrid. Situation: One datagrid with a xx number of columns, where the last two colums are checkboxrenderers changed and delete; When a cell in the grid is edited the checkbox

[flexcoders] Binding a List to an Array

2006-10-17 Thread stevex
I have a binding problem that seems simple, but I can't figure it out. Here's the deal: I have a class that I'm using as my model. It looks like this: [Bindable] public class MyModel { public var items:Array = new Array(); } I have a class whose objects populate the array:

[flexcoders] DataGrid CheckBox itemRenderer select all

2006-10-17 Thread Chad Callahan
I have a DataGrid and the first columns item renderer is mx.controls.CheckBox. I would like to be able to have a select all button that sets all of the CheckBox selected = true. I also need to be able to check which CheckBoxs are selected. Any suggestions? CHAD

RE: [flexcoders] Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread Hua Wei
John, here are a few examples that might be helpful. Adding drag-and-drop supporthttp://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ Adding Drag-and-Drop Drop Deny to DataGridhttp://thanksmister.com/?p=21 Simple Flex 2.0 Drag

[flexcoders] Re: Bug in Date() class math

2006-10-17 Thread Mike Crowe
Dude, you may be my new hero. I need to figure out how to handle this. Anybody coded for DST before? Pointers? Mike --- In flexcoders@yahoogroups.com, Pekka Kola [EMAIL PROTECTED] wrote: Daylight saving time btw Oct 16 .. Nov 1?? BR, Pekka -Original Message- From:

[flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread Derrick Grigg
There is a decent sample in the online Flex docs of dragging an image around. http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0967.html General overview of the drag manager and usage

[flexcoders] Font Embeding Problem

2006-10-17 Thread khelonium
I realize this topic is over discussed , but I have searched the archives and the documentation and could not find anything usefull. It seems to me embeding is a little bit problematic? I have manage to use my embeded fonts within the htmlText property and use them with the setStyle method.

Re: [flexcoders] CairngormStore for Flex 2

2006-10-17 Thread Greg Morphis
the link is broke there alsoOn 10/17/06, Evan Gifford [EMAIL PROTECTED] wrote: You can find it on Andy Raynes blog: http://weblogs.macromedia.com/arayne/archives/2006/08/cairngormstore.cfm From: flexcoders@yahoogroups.com

[flexcoders] Re: How do I recompile charts?

2006-10-17 Thread d.tuppeny
That's what I thought - and then I looked at the code :) The chart classes are littered with code referencing the Halo skin, so I wasn't sure applying a new skin would be easy, and this wasn't something I wanted to spend time on, it was just a it'd be nice if With some changes to the

Re: [flexcoders] Grouping result set output

2006-10-17 Thread Tom Chiverton
On Tuesday 17 October 2006 14:44, Rachel Maxim wrote: Thanks - it seems so obvious yet I didn't think of that Heh :-) Takes a while to adjust to the flex way if you've come from HTML. -- Tom Chiverton Helping to widespreadedly implement transparent deliverables

RE: [flexcoders] CairngormStore for Flex 2

2006-10-17 Thread Evan Gifford
Doh :^) Thats exciting .. . it probably means theyre updating the store. Ive posted it in a temporary location, you can download here for the next 24 hours http://www.cairngormdocs.org/CairngormStoreWeb.zip From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] LinkBar ViewStack Problem

2006-10-17 Thread Daniel
Hello all! I've been having this particular problem, I have 2 canvas inside a viewStack, lest say something like: mx:ViewStack id=viewStack width=100% height=100% mx:Canvas id=list label=List mx:DataGrid doubleClickEnabled=true

Re: [flexcoders] LinkBar ViewStack Problem

2006-10-17 Thread Clint Tredway
This is a creation issue. Basically, the input text field is not 'created' yet. You have a couple of options. The simplest, is just bind the text of the input to the value you want to store there.mx:TextInput text={ list.selectedItem.somevalue}/There are other options, but that should get you

RE: [flexcoders] Re: Is there a way to find an object if you know the name

2006-10-17 Thread Tracy Spratt
Yes, you should probably back up a little and think about what you are trying to do. Directly accessing elements of data-driven controls is usually a bad idea, mainly because the controls re-use the visual elements when you scroll. Tracy From:

[flexcoders] Consuming .NET Web Services with params

2006-10-17 Thread Robert Warburton
Hey all, Just though I would share with you all the answer to a problem I have been trying to solve for days. Problem: When my FLEX application connects to my .NET Web Service I could only read the values from the lastResult object for the first method in the service. All other

RE: [flexcoders] DataGrid CheckBox itemRenderer select all

2006-10-17 Thread Tommy Mestdagh
I also need to be able to check which CheckBoxs are selected This is wath you are looking for. I have a grid with a columnnamed "deleted".By clicking the checkbox you mark the item todelete (webmail style) This method pushes all marked items fromthe grid into a new array todelete. all

[flexcoders] Re: Binary Sockets, and Folder Browser

2006-10-17 Thread Nick
--- In flexcoders@yahoogroups.com, grunz1234 [EMAIL PROTECTED] wrote: Hello I have some questions on Flex. 1. Is it possible to create a socket on a flash client? 2. Is it possible to open a file from the users OS and upload it? thanks Looks like the Socket class in the flash.net

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
--- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: Thanks, binding is a solution. However, I keep thinking how is that the text field is not created 'yet'? Is there another way? Thanks again. This is a creation issue. Basically, the input text field is not 'created'

[flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread jrunrandy
There is a Quick-Start that covers Drag and Drop: http://www.adobe.com/devnet/flex/quickstart/adding_drag_and_drop/ Also, the Flex 2 Developer's Guide has a chapter, starting on http://livedocs.macromedia.com/flex/2/docs/0954.html HTH, Randy Nielsen Flex Documentation Manager --

Re: [flexcoders] Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
awesome thanks for the links everyone, I'll do some homework and let you know how it pans outThanks very much!\m/On 10/17/06, Hua Wei [EMAIL PROTECTED] wrote: John, here are a few examples that might be helpful. Adding drag-and-drop support

[flexcoders] Re: How do I recompile charts?

2006-10-17 Thread d.tuppeny
Thanks Ely, That's just the response I wanted - I know it's not nice modifying the source, but it seemed the easiest way! I did try your site, but couldn't anything (though I didn't really know what I was looking for), but I'll check again later. Thanks, Danny --- In

Re: [flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Clint Tredway
the canvas that holds the text input is a child of the Viewstack and the creationPolicy, I believe, auto sets to auto. this means that they get created when they are needed, not before. You can set the creation Policy to 'all', but that can get intensive as your app grows. On 10/17/06, Daniel

[flexcoders] Re: VO Mapping, some basic questions

2006-10-17 Thread Renaun Erickson
Julian, Thanks for clarifying. _explicitType is an AMFPHP only implementation. AMFPHP uses it to type the return value and then actually deletes the reference of _explicitType right off the object. For the AS3 side the BookVO looks like this: package com.renaun.samples.login.vo {

Re: [flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
Yeah I had wondered about what was going on with the drag proxy - I'm just getting into it, but this really helps DerrickOn 10/17/06, Derrick Grigg [EMAIL PROTECTED] wrote: There is a decent sample in the online Flex docs of dragging an image around.

RE: [flexcoders] LinkBar ViewStack Problem

2006-10-17 Thread Andrew Trice
Try setting creationPolicy=all on your viewstack. This will ensure that the child components have been created. FYI You do not want to use this approach too often, especially on deeply nested components. It can drastically increase the initialization time of your applications. It

[flexcoders] Predicting final swf size after embedding a SVG file ?

2006-10-17 Thread info dehash
I am looking for some guidlines for predicting how many kb embedding a svg will add to a swf ? I did a quick test just now here http://www.dehash.com/?p=35 and found it to be quite varied. Hoping that there are some tips that people can share. - d -- Flexcoders Mailing List FAQ:

Re: [flexcoders] CairngormStore for Flex 2

2006-10-17 Thread Bhuvan
Thanks alot. - Original Message - From: Evan Gifford To: flexcoders@yahoogroups.com Sent: Tuesday, October 17, 2006 9:03 PM Subject: RE: [flexcoders] CairngormStore for Flex 2 D’oh :^) That’s exciting .. . it probably means they’re

[flexcoders] Re: CairngormStore for Flex 2

2006-10-17 Thread greggohlke
Looks like all links to iterationtwo.com are no good, its like they dropped off the face of the earth. --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: the link is broke there also On 10/17/06, Evan Gifford [EMAIL PROTECTED] wrote: You can find it on Andy

[flexcoders] RSL

2006-10-17 Thread vitopn
I am trying to work out our strategy for breaking our client into separate modules that load when needed. I see mention of RSLs in the documentation but the documentation seems limited. For example, when exactly does the RSL get loaded? Is there a way to detect when it is loaded? In

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
Thank you very much Andrew. --- In flexcoders@yahoogroups.com, Andrew Trice [EMAIL PROTECTED] wrote: Try setting creationPolicy=all on your viewstack. This will ensure that the child components have been created. FYI... You do not want to use this approach too often, especially on deeply

[flexcoders] Not Receiving Flexcoder Posts

2006-10-17 Thread jwc_wensan
Moderator: I have not received any flexcoder posts since Sat. I have reverified my Yahoo Groups email address several times. Everything seems to be OK, yet I still do not get any posts. Can you assist? Or direct me to someone who can? This continues to happen at least once a month. Thanks,

Re: [flexcoders] Re: Is there a way to find an object if you know the name

2006-10-17 Thread Marlon Moyer
believe me, I've tried to attack this problem from a number of ways :)here's the quick description:My form design:Policy 1: accordionDivision 1: accordionState 1: TabVBox Code 1: text inputCode 2: text inputCode 3: text inputAdd Code: button/VBoxState 2: TabVBoxCode 1: text inputCode 2: text

[flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Daniel
Thank you Clint. --- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: the canvas that holds the text input is a child of the Viewstack and the creationPolicy, I believe, auto sets to auto. this means that they get created when they are needed, not before. You can set the

[flexcoders] Datagrid Drag Row

2006-10-17 Thread KP
Hi All, I have a datagrid which contains around ten rows I have drag enabled on datagrid and due to which I am able to drag corresponding rows. What should I do to remove particular row on to which I am dropping my current row which is selected. Thanks Kumar __._,_.___

[flexcoders] Re: Not Receiving Flexcoder Posts

2006-10-17 Thread Renaun Erickson
Yahoo's mail can be flaky, I started using a RSS reader to get better access to all the posts. RSS Feed URL: http://rss.groups.yahoo.com/group/flexcoders/rss Renaun http://renaun.com/blog/ --- In flexcoders@yahoogroups.com, jwc_wensan [EMAIL PROTECTED] wrote: Moderator: I have not received

Re: [flexcoders] Re: Drag and Drop tutorials/Samples of mixed types of dragging

2006-10-17 Thread John Grden
So, what I'm realizing is that DragManager and Drag and Drop is just that - you're moving data to another container - whatever that data might be.In this case, I'm moving a Component around on stage and might possibly drop it onto another component. The idea would be to move the dropped

[flexcoders] Re: Binding a List to an Array

2006-10-17 Thread Michael Labriola
Steve, Do me a favor and test something out. Make the items Array an ArrayCollection on your own. Here is the gist: When you pass an Array to either ComboBox or List it makes an ArrayCollection out of it for the purposes of binding. List does something slightly different in that it stops

Re: [flexcoders] Re: LinkBar ViewStack Problem

2006-10-17 Thread Clint Tredway
no problem. hope it helps...On 10/17/06, Daniel [EMAIL PROTECTED] wrote: Thank you Clint. --- In flexcoders@yahoogroups.com, Clint Tredway [EMAIL PROTECTED] wrote: the canvas that holds the text input is a child of the Viewstack and the creationPolicy, I

[flexcoders] Re: Bug in Date() class math

2006-10-17 Thread Doug Lowder
The root problem here is the assumption that a day is always 24 hours. In timezones that support DST, a day can actually be 23, 24, or 25 hours long. Your posted code is adding 24-hour periods to a given date, so assuming you want to keep it that way you can just add the difference between the

RE: [flexcoders] Re: Not Receiving Flexcoder Posts

2006-10-17 Thread Jack Caldwell
Renaun: Thanks . . . I'll give that a shot. Jack From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Renaun EricksonSent: Tuesday, October 17, 2006 12:47 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: Not Receiving Flexcoder Posts Yahoo's mail can be

[flexcoders] Re: DataGrid CheckBox itemRenderer select all

2006-10-17 Thread jobforkomputerman
I posted my solution for seeing which checkboxes are selected and how to preselect them on the Adobe Flex 2 forum. You can take the logic in that code and modify it to fit your needs I am sure. Only downside is the post took three posts to get all of the code uploaded. You can do a search in

[flexcoders] Charting Trial stamp is stubborn

2006-10-17 Thread iko_knyphausen
Hi, just got and entered my license keys for Builder and Charting, but charts still display Charting Trial stamp. Manage Licenses shows both modules as valid commercial licenses. I did restart the IDE but still the same. What else do I need to get rid of the trial stamp? Thanks -Iko --

[flexcoders] FlexBuilder won't launch browser anymore

2006-10-17 Thread jack_freud
Everything worked great until today when I fired up FB2 again, now suddenly it won't run my app (or any other mxml). I'm using ColdFusion locally and if I type in the URL in my browser (http://localhost:8500/[etc]) that works fine. Any ideas? I did a clean and rebuilt the workspace to no avail.

[flexcoders] Question: Linking a Web Service to a Progress Bar

2006-10-17 Thread Robert Warburton
Question: Web Service Progress Bar I am still a bit new to FLEX but I dont see any way to link a Status Bar to a Web Services Progress. I know that the size of a SOAP message is set in the message header. Is there a way to determine the progress of a Web Service sending and

[flexcoders] Re: VO Mapping, some basic questions

2006-10-17 Thread Renaun Erickson
Straight from the AMFPHP code. AMFSerializer.php (line ~346) if(isset($d-_explicitType)) { $classname = $d-_explicitType; unset($d-_explicitType); } AMFPHP uses it on the Serialization side to set the classname and then unset's the value. Renaun --- In flexcoders@yahoogroups.com, Peter

[flexcoders] Re: Binary Sockets, and Folder Browser

2006-10-17 Thread grunz1234
thanks for your replys. 1. so it should be possible to create a connection between 2 flash users from the same domain(website)? 2. would be pleased to hear more :) thanks --- In flexcoders@yahoogroups.com, grunz1234 grunz1234@ wrote: Hello I have some questions on Flex. 1. Is it

[flexcoders] Stack Overflow in swf to swf include

2006-10-17 Thread Flex Learner
HI, I'm trying to include an swf file (generated from FlexBuilder) within another swf file using mx:image. The included file is located on a different server, and the include works fine. Now, if a HTTPService is added to the included file, the call fails with the following exception. Error:

Re: [flexcoders] Re: CairngormStore for Flex 2

2006-10-17 Thread Greg Morphis
Thanks Evan On 10/17/06, greggohlke [EMAIL PROTECTED] wrote: Looks like all links to iterationtwo.com are no good, its like they dropped off the face of the earth. --- In flexcoders@yahoogroups.com, Greg Morphis [EMAIL PROTECTED] wrote: the link is broke there also On 10/17/06, Evan

RE: [Junk E-Mail - LOW] [flexcoders] Re: Binary Sockets, and Folder Browser

2006-10-17 Thread Shannon Hicks
1. Yes, and there are server-side products already out there that do this. Adobe's product is called Flex Data Services. There are other alternatives out there, and I'm sure others will point them out. 2. You can't do anything without the user's permission, but you can have them select

[Junk E-Mail - LOW] [flexcoders] Re: Binary Sockets, and Folder Browser

2006-10-17 Thread grunz1234
thanks for point 1. I know FDS, but I want a connection directly between the clients, i.e. p2p. 1. Yes, and there are server-side products already out there that do this. Adobe's product is called Flex Data Services. There are other alternatives out there, and I'm sure others will point

Re: [flexcoders] Charting Trial stamp is stubborn

2006-10-17 Thread Rachel Maxim
I got the same thing when I entered my license in the demo, but I think recompiling those MXML documents fixed it. ROn 10/17/06, iko_knyphausen [EMAIL PROTECTED] wrote:Hi,just got and entered my license keys for Builder and Charting, but charts still display Charting Trial stamp. Manage

[flexcoders] custom itemRenderer creation

2006-10-17 Thread suri_boston
Hi, i have a bar chart and i would like to define colors of the bars based on some runtime values in arraycollection. can anybody please point me on how to create a custom itemRenderer for a bar series? thanks suri -- Flexcoders Mailing List FAQ:

[flexcoders] flash is not inthe center of my app

2006-10-17 Thread tonyx_788
i have been trying to do this by my self with no good results for the last 2 weeks, since flex doesn't have a projector option like flash mx i downloaded mdm and jugglor (both support flash 9) in both programs when i compile and run the aplication with my flashproject it only shows the top left

[flexcoders] Viewstack and creation policy

2006-10-17 Thread jnewport
Hello all. I was wondering if I can get some help on a viewstack issue? In my main app file I have an applicationcontrolbar, which contains a combobox. The combobox is being used to navigate my viewstack. In my viewstack I have four custom canvas components. So something like the following

[flexcoders] Whats the best way of adding print/pdf output to a flex app?

2006-10-17 Thread iko_knyphausen
Assume you were producing reports with columns, summaries, charts, that sort of thing, is there a good way of getting this to a printer or pdf file? Any components out there that will help dimensions, page breaks, etc. Thanks Iko -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Re: Is there a way to find an object if you know the name

2006-10-17 Thread Gordon Smith
There should be no need to set the 'name' property to a different value on each instance of a repeated component so that you can retrieve that instance. If you have mx:Repeater ... mx:Button id=b ... / /mx:Repeater then the various repeated Button instances are accessible as

[flexcoders] Re: FlexBuilder won't launch browser anymore

2006-10-17 Thread jack_freud
Found the problem. Somehow the setting in Preferences/General/Web Browser got switched from Firefox to Mozilla, which I don't even have! Go figure. --- In flexcoders@yahoogroups.com, jack_freud [EMAIL PROTECTED] wrote: Everything worked great until today when I fired up FB2 again, now

Re: [flexcoders] Whats the best way of adding print/pdf output to a flex app?

2006-10-17 Thread Clint Modien
This is a server side game right now... flex doesn't support printing (very well) yet...Some good info here if you don't already have a backend reporting solution setup. http://ask.slashdot.org/article.pl?sid=06/03/08/2259203On 10/17/06, iko_knyphausen [EMAIL PROTECTED] wrote:

Re: [flexcoders] Whats the best way of adding print/pdf output to a flex app?

2006-10-17 Thread Nick Collins
I would say your best bet is likely to store your data into a database (which you're likely already doing) then use a backend PDF writer or report generation script in whatever backend language you're using. Coldfusion has this built in I know, and I know there are components available for .Net

RE: [flexcoders] Stack Overflow in swf to swf include

2006-10-17 Thread Peter Farland
I could reproduce your problem- I'll log a bug on your behalf. Out of curiosity, does your HTTPService return XML? If so, any chance you could show us what the XML looks like? As a work around for now you could either set makeObjectsBinadble="false" on your HTTPService tag or set

RE: [flexcoders] Re: Is there a way to find an object if you know the name

2006-10-17 Thread Tracy Spratt
My next plan was to reference the vbox's repeater and reset it's dataProvider That sounds right. What problem did you have? Just thinking, not having actually done it, that you coud do something like: var xlSubset:XMLList = mainXML.somenode.othernode.xmllistexpressionofsomekind;

[flexcoders] Overriding center control when removing children in an HBox

2006-10-17 Thread dj
I have an HBox that displays a list of children, I want to remove the Children and override the center positioning when I remove the children but for adding it's ok. Is this possible by overriding whatever the HBox does to do this? Thanks, Patrick -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Re: Multiple classes per package

2006-10-17 Thread Claus Wahlers
I was meaning more whether it is possible to put 2 classes in 1 .as file, within a single package definition. So far, it looks like this is not possible. Yes, you can do that, but then the second class has to be defined outside the package, and is only visible to the first class (and not to

[flexcoders] Flex 2 API and AS3 posters....

2006-10-17 Thread David Mendels
FYI: http://www.onflex.org/ted/2006/10/cube-wallpaper-as3-and-flex-api.php Hope to see many of you at MAX. -David -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo!

[flexcoders] (Cairngorm App) Advice on Deleting a VO, from a DataGrid containing an Array of VO's

2006-10-17 Thread Mike Anderson
Hello All, I have a Cairngorm-based application. On a particular screen within this App, I have a Products DataGrid with a DataProvider (from my Model) assigned to it. The variable from my Model, is productsList - which is an ArrayCollection populated with ProductVO's returned from the CF

RE: [flexcoders] Whats the best way of adding print/pdf output to a flex app?

2006-10-17 Thread Mike Anderson
Continuing this thread - Since FlashPaper is native to the whole "Macromedia and Adobe" suite of products, would FlashPaper be just as good of a solution as a PDF? And with that said, if FlashPaper is an acceptable solution for some users, could a FlashPaper document be created directly

[flexcoders] Image complete and init event problem

2006-10-17 Thread Brian Randall
I'm loading images using the Image class, and I'm trying to analyze their height and width after they load for sizing purposes. Problem is, sometimes (not always but sometimes) someImage.width and someImage.height are still 0 when the complete event gets handled. Same problem with the init

[flexcoders] Re: Viewstack and creation policy

2006-10-17 Thread jnewport
I have done some digging and it appears it is that my dataprovider of all the canvas's (Canvas1, Canvas2, etc...), which is the same for all four canvas's isn't being created before my viewstack is created. Is there a way to tell the Viewstack to wait to be created last and then tell Canvas1

[flexcoders] Image complete and init event problem

2006-10-17 Thread Brian
I'm loading images using the Image class, and I'm trying to analyze their height and width after they load for sizing purposes. Problem is, sometimes (not always but sometimes) someImage.width and someImage.height are still 0 when the complete event gets handled. Same problem with the init

  1   2   >