RE: [flexcoders] Re: Datagrid editable cell loses focus on screen update

2007-09-10 Thread Alex Harui
Fixing the size of the label might prevent an entire update. You can also subclass and block as well. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grantdotcox Sent: Monday, September 10, 2007 11:14 PM To: flexcoders@yahoogroups.com S

Re: [flexcoders] disable themeColor for individual components

2007-09-10 Thread grimmwerks
CSS? TitleWindow { borderColor: #CC9966; }

[flexcoders] Re: Datagrid editable cell loses focus on screen update

2007-09-10 Thread grantdotcox
Well, if I remove the "error message text" binding (so the validation errors do not display), then the data in the grid is still reverted ok, and I don't lose the edit session. So it's definitely to do with the text updating - I imagine because this causes a re-layout of the whole screen, which re

[flexcoders] disable themeColor for individual components

2007-09-10 Thread Patrick Lemiuex
How is it possible to disable the theme for individual components? Thanks, Patrick

RE: [flexcoders] weird array/datagrid editable thing...

2007-09-10 Thread Alex Harui
Uplist is a dataprovider for a datagrid? ESC cancels the edit. ENTER should accept the edit. But the key question is still what the renderer looks like. Your changes may not really be going back to the data provider. From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] Re: Datagrid editable cell loses focus on screen update

2007-09-10 Thread Alex Harui
In Flex 2 it was deemed too tricky to maintain the edit session while it could be jumping around due to screen updates, so we kill the session. Not sure why updating outside the DG causes the DG to lose focus. Are you sure there isn't a collection change going on as well as you revert data or some

Re: [flexcoders] weird array/datagrid editable thing...

2007-09-10 Thread grimmwerks
Thanks for responding Alex. Well, it's simpler than that. Originally I had an Array where I'd push in an object: uplist.push({ name:_refAddFiles.fileList[k].name,

[flexcoders] Re: Datagrid editable cell loses focus on screen update

2007-09-10 Thread grantdotcox
Perhaps in general it is best to also have client side validation, but in this case each column can have custom validation rules (including "unique", which needs to compare all other data). This needs to be (and already is) validated on the server side, and would be non-trivial to add to the clien

RE: [flexcoders] Re: variableRowHeight=true in List messing up height of last row

2007-09-10 Thread Alex Harui
Pretty good. You may not want to use Autosize and use textWidth/Height and add some padding instead. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jandersen1978 Sent: Monday, September 10, 2007 9:19 PM To: flexcoders@yahoogroups.com S

RE: [flexcoders] weird array/datagrid editable thing...

2007-09-10 Thread Alex Harui
What does the dataprovider look like? What does the renderer look like? What flags have you set on the DG and renderer? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Monday, September 10, 2007 9:32 PM To: flexcoders@y

RE: [flexcoders] DataGrid: Horizontal Scrolling very slow

2007-09-10 Thread Alex Harui
600! Yowza! When you go vertically, the set of renderers are the same, one rolls off, and a new set rolls on. Horizontally, the column rolling off has a different set of renderers than the column rolling in, and the headers need to be updated as well, plus we have to visit every visible datapr

Re: [flexcoders] weird array/datagrid editable thing...

2007-09-10 Thread grimmwerks
Is this something where I have to have a Model in place for an empty 'fileItem' with certain properties being editable? Seems weird. On Sep 11, 2007, at 12:16 AM, grimmwerks wrote: > Ok, I've got a file uploader where a user can select a file for > upload. > > When the user does this I'm add

[flexcoders] Re: variableRowHeight=true in List messing up height of last row

2007-09-10 Thread jandersen1978
Alex, Thanks for the suggestion! I've still on the learning curve for custom actionscript components and haven't used the TextField class a whole lot but did manage to cobble this together which seems to have solved my initial problem. (Now I've got some others to deal with... the widths ar

[flexcoders] weird array/datagrid editable thing...

2007-09-10 Thread grimmwerks
Ok, I've got a file uploader where a user can select a file for upload. When the user does this I'm adding a 'tile' and 'description' property to that item in the array. I've made it so that these two cells are editable and allow the user to enter in the info; but when enter or escape is hi

Re: [flexcoders] FB3: src and config

2007-09-10 Thread Richard Rodseth
FB-9363. Sorry I don't have time right now to check in FB2 or command line tools. On 9/10/07, Matt Chotin <[EMAIL PROTECTED]> wrote: > > Bugs should be filed in the public bugbase: http://bugs.adobe.com/flex. > Other beta forums aren't technically open J > > > > > > From: flexcoders@yahoogroups.co

RE: [flexcoders] Re: How to get Textinput position?

2007-09-10 Thread Gordon Smith
The x and y properties of a DisplayObject are in the coordinate system of its parent. So you're getting the location of the top-left of the TextInput relative to the top-left of the FormItem. If you want coordinates in a different coordinate system, use localToGlobal() and globalToLocal(). - Gord

[flexcoders] Re: How to get Textinput position?

2007-09-10 Thread flexawesome
humm...parent doesn't work... and I correct the code below.. Cheers http://www.adobe.com/2006/mxml"; viewSourceURL="srcview/index.html"> --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Might be event.currentTar

[flexcoders] Selecting a file for FileRef in browse window

2007-09-10 Thread twcrone70
I'm current working on an extension to Selenium that allows me to exercise a Flex UI. One use case requires that a file be selected from the FileRef "browse" window. Haven't tried anything yet, but I am guessing that is hard. Anyone have any ideas how to pick a file from the browse window in AS

[flexcoders] dumb: eclipse on dual monitor?

2007-09-10 Thread grimmwerks
Anyone have any tricks/settings for the Flex IDE on a dual monitor? Kind of driving me nuts.

Re: [flexcoders] Datagrid editable cell loses focus on screen update

2007-09-10 Thread Scott - FastLane
In general it seems it would be preferable to validate user input on the client side... if you did this you could use the errorString of the itemEditorInstance to show the error to the user without having to wait for the back end, etc. When you do this the error is shown in the cell where the

[flexcoders] Datagrid editable cell loses focus on screen update

2007-09-10 Thread grantdotcox
I have a datagrid with editable cells. When the user changes a value this is saved to the server. When the server identifies a validation error on the new data, their change is undone, and a warning message is shown outside of the grid. Unfortunately, showing this warning message outside of the

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Muzak
/xml/whateverFiles.xml --> starts at project root xml/whateverFiles.xml --> starts relative to file that uses it > /xml/whateverFiles.xml should be equal to xml/whateverFiles.xml. > That's how it'd work in HTML and JavaScript. nope. regards, Muzak - Original Message - From: "Steve Huen

Re: [flexcoders] Skinning panels, ah it's borderSkin...

2007-09-10 Thread Muzak
http://livedocs.adobe.com/flex/201/langref/mx/skins/halo/package-detail.html http://livedocs.adobe.com/flex/201/langref/mx/skins/package-detail.html - Original Message - From: "Patrick Lemiuex" <[EMAIL PROTECTED]> To: Sent: Tuesday, September 11, 2007 1:33 AM Subject: [flexcoders] Skinni

[flexcoders] Re: Efficiently loading hundreds of images for a slideshow

2007-09-10 Thread jamalwally
Hi Troy, Thank you very much for your suggestion. The PNG images that I was loading were large (1200 x 900). Using smaller images (400 x 300), I can easily load 200+ images with no noticeable delay. There is clearly no point to load images that are higher resolution than will be displayed, so I

[flexcoders] Re: Getting xml in code only

2007-09-10 Thread Abyss Knight
What you need is to listen for the result and fault events like so: my_service.addEventListener(ResultEvent.RESULT,handleResultOtherModelDataXML); my_service.addEventListener(FaultEvent.FAULT,handleFault); Hope that helps, - William --- In flexcoders@yahoogroups.com, "Steve Huene

Re: [flexcoders] DataGrid: Horizontal Scrolling very slow

2007-09-10 Thread Kyle Neath
I'm using a custom itemRenderer that displays a checkmark (or not) right now (I spent a long time optimizing it -- the itemRenderer is good to go). Right now about 600 itemRenderers are visible at once (though more than half of them are technically empty). I guess I'm mostly stumped at how horizo

Re: [flexcoders] Skinning panels, ah it's borderSkin...

2007-09-10 Thread Kyle Neath
They're usually listed in the styles section: http://livedocs.adobe.com/flex/2/langref/mx/containers/Panel.html#styleSummary

RE: [flexcoders] How to decorate a text/link with a dotted/dashed underline

2007-09-10 Thread Gordon Smith
The Flash Player doesn't support rendering text with a dashed underline. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vijay95052 Sent: Monday, September 10, 2007 5:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How

RE: [flexcoders] FB3: src and config

2007-09-10 Thread Matt Chotin
Bugs should be filed in the public bugbase: http://bugs.adobe.com/flex. Other beta forums aren't technically open J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, September 10, 2007 11:55 AM To: flexcoders@yahoogroups.com Subject: Re: [flex

RE: [flexcoders] Re: Source code of Moxie 3 .

2007-09-10 Thread Matt Chotin
Hi, The RPC source isn't included right now. That may change in the future but your install is correct for now. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claude Hussenet Sent: Monday, September 10, 2007 10:17 AM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Steve Hueners
yep...that was it. If i change it to: myRequest.url = "/xml/modules.xml"; stuff works. Now I guess i should understand why. The class is several layers deep but probably executes in the scope of the parent app. But even so, since the folder 'xml' is a subfolder of the parent: /xml/whateverFiles

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Steve Hueners
Thankx...that helps...but alas, only gets me to the next error. The FaultEvent shows: e = mx.rpc.events.FaultEvent (@10c90d81) bubbles = false cancelable = true currentTarget = mx.rpc.http.HTTPService (@11452901) eventPhase = 2 fault = mx.rpc.Fault (@116c3bf1) message = mx.

RE: [flexcoders] Merging xml files? relational database design question

2007-09-10 Thread Tracy Spratt
Several ways to handle this. Unless you have a huge amount of data, the cleanest thing would be to merge the data on the server. The RPC protocols are very fast. You did not mention which protocol you are using. If you want to do it in two queries, then yes, include an id in the detail node,

[flexcoders] Skinning panels, ah it's borderSkin...

2007-09-10 Thread Patrick Lemiuex
Is there a list of all skin names for components in Documentation? Thanks Patrick

Re: [flexcoders] Re: Flex eye candy source

2007-09-10 Thread grimmwerks
ArgumentError: Error #2015: Invalid BitmapData. at flash.display::BitmapData() at sandy.util::DistortImage/private::renderVector() at sandy.util::DistortImage/initialize() at com.adobe.ac.mxeffects::SimpleDistortion/ private::initDistortImage() at com.adobe.ac.mx

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Scott - FastLane
ahhh yes my apologies. I meant ResultEvent.RESULT. Here is a code snippet from a class in my app that does this very thing. In this case I have written AppService to extend HTTPService so I can add on some app specific stuff that pertains to all of my services. public function AppS

Re: [flexcoders] Flex eye candy source

2007-09-10 Thread Ary
Hi, i think its similar to this http://dougmccune.com/flex/zomgzrss/ right click > view source ary. --- "garrett.reynolds" <[EMAIL PROTECTED]> wrote: > Hi all was wondering if anyone knew where I could > find the source > code for the following Flex app? - There was no > mention of the code

RE: [flexcoders] DataGrid: Horizontal Scrolling very slow

2007-09-10 Thread Alex Harui
What are you using for non-header renderers? How many cells are visible? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Neath Sent: Monday, September 10, 2007 3:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid:

Re: [flexcoders] Re: Flex eye candy source

2007-09-10 Thread Doug McCune
Here's that app stepped up a notch: http://dougmccune.com/blog/2007/03/27/updated-mxna-rss-reader-flex-app-now-with-source/ I posted the code for that one. Doug On 9/10/07, Abyss Knight <[EMAIL PROTECTED]> wrote: > > Most likely its from here, the cube effect that is: > > > http://weblogs.macr

[flexcoders] DataGrid: Horizontal Scrolling very slow

2007-09-10 Thread Kyle Neath
Does anyone know what might make horizontal scrolling of datagrids really, really slow? Even with default headerRenderers, scrolling horizontally takes about 1-2 seconds per scroll, while vertical scrolling is nearly instantaneous. My cells are almost square -- so it seems like it should be rende

[flexcoders] Need TileList animation/transition effects example

2007-09-10 Thread steve
Does anyone have an 'easy' example of a TileList that has transition effects. Much like the FlexStore example? Where you have a catalog of items and you move a slider which deselects items and the items ghost out and the remaining items move around. The flexstore example is too hard for me to fo

[flexcoders] Merging xml files? relational database design question

2007-09-10 Thread steve
Hi, I've got two mysql tables representing a student db, one table student info with student id, picture and year, another table student_detail with student id, address, SSN, etc. When I first load the application I read in a student_info xml file and show the students in a TileList component. I t

[flexcoders] Re: Flex eye candy source

2007-09-10 Thread Abyss Knight
Most likely its from here, the cube effect that is: http://weblogs.macromedia.com/auhlmann/archives/2007/03/distortion_effe.cfm --- In flexcoders@yahoogroups.com, "garrett.reynolds" <[EMAIL PROTECTED]> wrote: > > Hi all was wondering if anyone knew where I could find the source > code for the fo

[flexcoders] Parent and owner of the component are missing

2007-09-10 Thread Daniel
Hey guys, I created an abstract class (or a simulation of an abstract class) that extends from Panel, called AbstractPanel. This class draws and layout the max, min and close buttons on top of the panel. This class also have the implementation for drag&drop and resize for the component. I have a

[flexcoders] Clip mask on DragProxy, or better way to do this?

2007-09-10 Thread carl_steinhilber
I'm trying allow the user to drag an oversized image within a properly-sized frame display area so they can choose how/where the image gets cropped/clipped. In other words, if I have a 500x500 image, I'm displaying that image at 100% magnification but clipped to fit inside a 200x100 frame and allo

RE: [flexcoders] Using tooltips programatically with AS3

2007-09-10 Thread Gordon Smith
You can display a tooltip anywhere anytime with ToolTipManager.createToolTip() and remove it with ToolTipManager.destroyToolTip(). - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Sunday, September 09, 2007 12:13

RE: [flexcoders] Hexadecimal XML encoding of carriage returns:

2007-09-10 Thread Gordon Smith
This is the behavior of the htmlText property of the Flash Player's TextField and I don't believe it can be changed. As for why it's using &#...; to represent control characters... that's the way that XML works. As for why the character values are encoded in hex rather than decimal, that's just

Re: [flexcoders] Problem with E4X insertchildafter and insertchildbefore

2007-09-10 Thread Daniel Freiman
I don't think that bug is your problem because bug database reports that as effecting flash 9 alpha and that the bug is closed. This implies that the bug was fixed before the beta was even released. I think you're running into this (from livedocs): "If child1 is provided, but it does not exist in

Re: [flexcoders] Flex eye candy source

2007-09-10 Thread Stephen Allison
The spinning box effect looks similar to the one presented at: http://weblogs.macromedia.com/auhlmann/archives/2007/03/ distortion_effe.cfm You can download the source there. Stephen On 10 Sep 2007, at 22:14, garrett.reynolds wrote: > Hi all was wondering if anyone knew where I could find the

RE: [flexcoders] main application's url?

2007-09-10 Thread Gordon Smith
The Application class has a 'url' property. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Sunday, September 09, 2007 7:08 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] main application's url? Hey -

RE: [flexcoders] Re: private / getters and setters

2007-09-10 Thread Gordon Smith
The Flex framework team uses the following ordering within our classes: class initialization code static constants static variables static properties static methods static event handlers constructor variables overridden properties properties overridden methods methods overridden event handlers ev

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Steve Hueners
Gives: 1119: Access of possibly undefined property RESULT through a reference with static type Class. am importing: import mx.rpc.events.ResultEvent; import mx.rpc.http.HTTPService; import mx.rpc.events.FaultEvent; import mx.collections.XMLListCollection; On 9/10/07, Scott

RE: [flexcoders] Getting xml in code only

2007-09-10 Thread Tracy Spratt
Plus, beware of this line: modules = e.result as XMLListCollection It will succeed, but will give you a single item in the XMLListCollection. If that is what you want, ok, but usually you would specify an expression that returns some child nodes. trace(modules.toXMLString()); //to be sure

Re: [flexcoders] help linking combobox to httpservice data

2007-09-10 Thread Scott - FastLane
Robert - Have a look at the source code in my flex calendar sample app here... just right click on the app to view source. I am populating a combo box with valid times from XML when the user edits an event... if the user changes the date/time of the event I

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Scott - FastLane
Steve - I believe you intend to be adding the listener for the Event.RESULT event instead of the Event.COMPLETE. hth Scott Steve Hueners wrote: All the samples i've come across so far show the mxml route - I'm able to instantiating and fireing the send correctly with: public var myRequest:

[flexcoders] Problem with E4X insertchildafter and insertchildbefore

2007-09-10 Thread danielvlopes
Hello, I having big troubles, when i try do insertchildafter or insertchildbefore. I had this xml: And use this code to inser new lines to this xml: var evDataXml:XML = new XML (event.data); var imageNod

[flexcoders] Flex eye candy source

2007-09-10 Thread garrett.reynolds
Hi all was wondering if anyone knew where I could find the source code for the following Flex app? - There was no mention of the code on the site. I'm familar with the reflective effect but combined with the moving images and spinning box it is amazing http://dougmccune.com/flex/awesomerss2/ Tha

[flexcoders] help linking combobox to httpservice data

2007-09-10 Thread Ramsey, Robert L
Hi, I am calling an httpservice to get the following information: John Doe 1 1234567890 [EMAIL PROTECTED] Jane Doe 2 1234567891 [EMAIL PROTECTED] Richard Roe 3 1234567892 [EMAIL PROTECTED] What I want to do is have a combobox that displays the fullname and uses the uid as the

[flexcoders] Re: font in comboBox and Title not the same SIMPLE TEST CASE

2007-09-10 Thread Jeff Schuenke
Run this code: http://www.adobe.com/2006/mxml"; layout="absolute" backgroundGradientColors="[#ff, #ff]"> .noEmbed{ fontFamily: Verdana; fontSize: 14; } .embed1 { fontFamily: myVerdanaFont; fontSize: 14; } .embed2 { fontFamily: myVerdanaFont2;

Re: [flexcoders] FlexBuilder 3 will expire?

2007-09-10 Thread Sheriff
Flex 3 Beta 1 expires, and rumors be told that Flex 3 Beta 2 will be released the same day that Max is beign held which is on sept30th - Original Message From: Steve Kellogg <[EMAIL PROTECTED]> To: "flexcoders@yahoogroups.com" Sent: Monday, September 10, 2007 3:30:28 PM Subject: [flexco

RE: [flexcoders] Re: Unwanted scrollbars on my List itemRenderer--P.S.

2007-09-10 Thread Alex Harui
In flex, parents size their children. Flex Containers do that for you, but UIComponents do not, so you have to call setActualSize on all of your children. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Ham Sent: Monday, September

[flexcoders] Getting xml in code only

2007-09-10 Thread Steve Hueners
All the samples i've come across so far show the mxml route - I'm able to instantiating and fireing the send correctly with: public var myRequest:HTTPService = new HTTPService; public var modules:XMLListCollection; public function MenuItemEnum ( value:String, ordinal:int ) {

[flexcoders] Re: FlexBuilder 3 will expire?

2007-09-10 Thread jason vancleave
flex 2 will continue to work, Flex 3 will expire oct 31 or 90 days(can't remember the specifics) as opposed to the Flex 3 30 day trial limit --- In flexcoders@yahoogroups.com, Steve Kellogg <[EMAIL PROTECTED]> wrote: > > Quick question... > > When my copy of Flex Builder 3 is going to expire, is

Re: [flexcoders] making optional itemRenderers

2007-09-10 Thread Steve Hueners
Not entirely sure but this sounds much like what .NET coders started doing after working with .net's DataGrid. Just build the table from the specifically required elements. On 9/10/07, Tracy Spratt <[EMAIL PROTECTED]> wrote: > > I advise starting with one of the existing item renderers. They are

[flexcoders] FlexBuilder 3 will expire?

2007-09-10 Thread Steve Kellogg
Quick question... When my copy of Flex Builder 3 is going to expire, is the app telling me that THIS BETA is time bombed? Or is it telling me that MY LICENSE is time bombed? I entered in my Flex Builder 2 license, and I was under the impression that I would have unfettered access to FB3 until it

[flexcoders] Re: repeater items overlaying on each other

2007-09-10 Thread alehrens
Awesome. I knew it was going to be something stupid. Thanks! --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Put the Repeater inside of a Vbox. Vbox automatically lays out its > children, but Canvas requires explicit x,y > > > > Or, set the Canvas layout to

Re: [flexcoders] scrollRect confusion

2007-09-10 Thread Matthew Ganz
that works well. and here i was thinking that i might have to create a composite component with an HScrollBar and VScrollBar. thank you. -- matt. - Original Message - From: Troy Gilbert To: flexcoders@yahoogroups.com Sent: Monday, September 10, 2007 3:59 PM Subject: Re: [fl

Re: [flexcoders] scrollRect confusion

2007-09-10 Thread Troy Gilbert
scrollRect just provides clipping, it does not add scrollbars, etc. For that, I'd recommend just putting your image component inside of a Canvas component. Troy. On 9/10/07, Matthew Ganz <[EMAIL PROTECTED]> wrote: > > hi. > > i'm loading an image at runtime into an image component. i want the >

Re: [flexcoders] Zooming effect modifies scale, correct?

2007-09-10 Thread Troy Gilbert
> > One of the problems is that fonts don't scale well at all and layout > differently at different scales. Your idea of zooming a bitmap might be > best. > Is that true for embedded fonts as well? I thought they were supposed to scale "perfectly" (since they're vector-based)? Troy.

RE: [flexcoders] repeater items overlaying on each other

2007-09-10 Thread Tracy Spratt
Put the Repeater inside of a Vbox. Vbox automatically lays out its children, but Canvas requires explicit x,y Or, set the Canvas layout to "vertical" Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alehrens Sent: Monday, S

[flexcoders] repeater items overlaying on each other

2007-09-10 Thread alehrens
I'm trying to use a repeater for an array of 5 objects and all 5 overlay on top of each other. I'm missing something simple I think. Please help me figure out what it is... The code is below...

Re: [flexcoders] Re: Unwanted scrollbars on my List itemRenderer--P.S.

2007-09-10 Thread David Ham
> Did you call setActualSize on it? That fixed it! Not sure why, but that fixed it. Thanks again, OK DAH > > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On > Behalf Of David Ham > Sent: Monday, September 10, 2007 10:58 AM > To: flexcoders@yahoogroup

[flexcoders] Java Development in Flex Builder

2007-09-10 Thread Suketu Vyas
HI I have just posted small Tip on how you can do Java Development in Flex Builder. http://www.suketuvyas.com/2007/09/10/java-development-in-flex-builder/ Hope this will help some developers. Thank You, Suketu Vyas http://www.suketuvyas.com

[flexcoders] scrollRect confusion

2007-09-10 Thread Matthew Ganz
hi. i'm loading an image at runtime into an image component. i want the component to have horizontal and vertical scrollbars. the image is 300x300 and the image i'm loading in is 500x500. i thought i could simply define a rectangle for the 'scrollRect' property of the image but it doesn't appe

RE: [flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

2007-09-10 Thread Tracy Spratt
Yes, separate them with semicolons, just as you have done. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of its_llpj Sent: Monday, September 10, 2007 2:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Populating XMLLi

Re: [flexcoders] RELEASE: maven-flex2-plugin 1.1 released

2007-09-10 Thread Christian Edward Gruber
Not yet. Please do put it up on the issues list. also, if you have experience with configuring/building modules using the command-line compilers, then please put in some suggestions as to how you'd like them configured, and what command-line equivalents you want support for. Thanks, Christ

RE: [flexcoders] How to get Textinput position?

2007-09-10 Thread Alex Harui
Might be event.currentTarget.parent.x. There is no Label1 in your sample. Also see localToGlobal From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Monday, September 10, 2007 11:43 AM To: flexcoders@yahoogroups.com Subje

[flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

2007-09-10 Thread its_llpj
It sure did... loving this stuff... thanks Alex --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Yes, that should work. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of its_llpj > Sent: Monday,

RE: [flexcoders] Click instead of mouseover to display sub-menu

2007-09-10 Thread Alex Harui
You could try a custom datadescriptor that pretends the menuitem is not a branch, captures mouseDown, resets the branch flag and fakes a mouseOver. How do you dismiss a submenu? mouseOut or another click? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC

Re: [flexcoders] FB3: src and config

2007-09-10 Thread Richard Rodseth
Fair enough. But it would be good to have confirmation that people are doing this successfully in FB2. Thanks for the pointer, though. > > Richard, > > AS FB3 is still very much in beta, you probably should post your issue > to the FB3 private beta forum. > > Jeff > > > -Original Message--

RE: [flexcoders] Zooming effect modifies scale, correct?

2007-09-10 Thread Alex Harui
One of the problems is that fonts don't scale well at all and layout differently at different scales. Your idea of zooming a bitmap might be best. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert Sent: Monday, September 10,

[flexcoders] How to get Textinput position?

2007-09-10 Thread flexawesome
Hi guys :) I am working on flex, and looks hard to get the target object x and y position. do you have any ideas? Cheers & THANKS http://www.adobe.com/2006/mxml"; viewSourceURL="srcview/index.html">

[flexcoders] Compressing animations

2007-09-10 Thread Troy Gilbert
I've got a bunch of animations that are bitmap-based. They are normally 6-12 frames, usually 64x64 in size. Right now I just store each frame separately as a PNG. Each frame of the animation doesn't change dramatically, so I realize there's some wasted space, and I'm at the point where I'm try to t

RE: [flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

2007-09-10 Thread Alex Harui
Yes, that should work. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of its_llpj Sent: Monday, September 10, 2007 11:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

RE: [flexcoders] Re: Unwanted scrollbars on my List itemRenderer--P.S.

2007-09-10 Thread Alex Harui
Did you call setActualSize on it? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Ham Sent: Monday, September 10, 2007 10:58 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Unwanted scrollbars on my List itemRenderer--P.S.

Re: [flexcoders] Efficiently loading hundreds of images for a slideshow

2007-09-10 Thread Troy Gilbert
> I find that the image loading + Bitmap generation takes about 0.1 to > 0.2 seconds per image for the first ~50 images (this is fine because > the animation frame rate is set to 0.5 seconds per image, so the > loader keeps up), but after image 60+ it can take 3-5+ seconds per > image, which become

RE: [flexcoders] MAX Session Scheduler - does it exist?

2007-09-10 Thread Battershall, Jeff
Ben, Go to https://secure.adobemax2007.com/na/register/login/ , login and you'll see the personal agenda link on the left. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Monday, September 10, 2007 2:13 PM To: flexcod

RE: [flexcoders] Cairngorm or AS3 question please help

2007-09-10 Thread Battershall, Jeff
Actually I'm looking at Cairngorm 2.2 - possibly earlier versions aren't strongly typing objects returned. It would be ro:RemoteObject = ServiceLocator.getInstance().getRemoteObject('userService') in 2.2. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

Re: [flexcoders] RELEASE: maven-flex2-plugin 1.1 released

2007-09-10 Thread Marvin Froeder
That is great. And how about modules? Are they supported? Any planning? VELO On 9/10/07, Christian Gruber <[EMAIL PROTECTED]> wrote: > > Greetings all, > > I have just released maven-flex2-plugin v1.1. This is a plugin to > allow flex applications to be built via the Maven automated build s

[flexcoders] Re: Populating XMLListCollection and sending it to a Datagrid

2007-09-10 Thread its_llpj
That's it. Forgot abt e4x. By the way, is it possible to add multiple functions to the datagrid itemClick? ex: itemClick="onSelectFirstGrid(event);onSelectSecondGrid(event)"? thanks again! --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Your results are not in XML

[flexcoders] verticalOriginCount & horizontalOriginCount to customize a Flex chart axis

2007-09-10 Thread Francois Andry
Hi, I try to customize a Flex 2.0 Chart with an Horizontal axis representing the days of the week: [TFS|SMTWTFS|SMTWTFS|SMTWTF|..] with an alternate vertical background color for each week. I am using a background style for the grid for this: .backgroundStyle { direct

RE: [flexcoders] Cairngorm or AS3 question please help

2007-09-10 Thread Battershall, Jeff
Hmmm First of all, what is returning from ServiceLocator.getInstance().getService() is of type mx.rpc.remoting.RemoteObject, not Object, and these need to be pre-defined in your Services.mxml file. Have you done this? ServiceLocator is your repository of service definitions, not your UserDeleg

RE: [flexcoders] Cairngorm with File Posting

2007-09-10 Thread Battershall, Jeff
If you make a VO class with a FileReference as one of its members, you'll be able to pass that VO with a Cairngorm Event back through a command class to a business delegate, which would handle the actual posting. Code samples of the actual posting are available in the AS3 docs. of One thing you wi

RE: [flexcoders] FB3: src and config

2007-09-10 Thread Battershall, Jeff
Richard, AS FB3 is still very much in beta, you probably should post your issue to the FB3 private beta forum. Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard Rodseth Sent: Monday, September 10, 2007 1:34 PM To: flexcoders@yahoogrou

Re: [flexcoders] Re: Unwanted scrollbars on my List itemRenderer--P.S.

2007-09-10 Thread David Ham
> It is working! No sooner said than undone! I am trying to add a LinkButton to my renderer, and it won't show up! Its label and x position are being set correctly, but it doesn't display! Gah! Is there something special about adding LinkButtons that I don't know about? Help! OK DAH

[flexcoders] FB3: src and config

2007-09-10 Thread Richard Rodseth
I have my source in a src directory, rather than at the project level. I have been unable to get the compiler to find a config file as follows: unless the config directory is under src. This didn't work either: ../config/config.xml Nor did adding config as an

[flexcoders] Efficiently loading hundreds of images for a slideshow

2007-09-10 Thread jamalwally
Hi all, I am developing an application to display a sequence of 2d data contour plots to show the evolution of a physical system (global climate in this case) as a function of time. In this application there are many different quantities (temperature, pressure, rainfall, etc, etc) that the user c

[flexcoders] Click instead of mouseover to display sub-menu

2007-09-10 Thread Claude Hussenet
By default submenu from a Menu control are displayed by mouving over a menutem. Is it possible to change the behavior so a click on the menu item triggers the display of the submenu. I have looked the code of the Menu class and it does not seem easy to overload the mouseOverHandler method.The met

[flexcoders] Zooming effect modifies scale, correct?

2007-09-10 Thread Troy Gilbert
Hi, I've got some popups that I'm literally "popping up" (VH1 pop-up video style, for those that remember it) and to get the effect I simply applied the ZoomEffect to them. The result is basically right, but depending on what's in the popup I'm detecting some weirdness. Here's what I see: As the

[flexcoders] Re: Text display in a ComboBox

2007-09-10 Thread kramus0
Hi again, is this really such a difficult thing? I was thinking about to write my own class that inherits from ComboBox and then I could access the internal text field that is used to display the text. Did anybody try this before? Regards Markus --- In flexcoders@yahoogroups.com, "kramus0" <[EM

  1   2   >