[flexcoders] Re: Is it possible to have a dynamic services/channel/endpoint URI?

2008-02-11 Thread dave_defusion
Seems I was being a little dense yesterday, I tried setting the URI of the endpoint to just URI=/rubyAMF/gateway (note: no http://domain/) and it works fine. Obvious. -D --- In flexcoders@yahoogroups.com, dave_defusion [EMAIL PROTECTED] wrote: The backend portion of my app is setup the handle

Re: [flexcoders] Accordion customization

2008-02-11 Thread Tom Chiverton
On Monday 11 Feb 2008, YOGESH JADHAV wrote: I want to customize Accordion component such that by default no image is displayed, otherwise the behavior should be same. Any idea how to do that? So what would it show instead ? -- Tom Chiverton Helping to adaptively morph

[flexcoders] Re: Flex3 Charting Components

2008-02-11 Thread hworke
I am not sure about SDK but I did download Flex builder 3 bets 3 and after reading your post I tried on my editor and code hint window showed charts package after I entered mx. . So I believe that I have that package installed in my FB3 B3. --- In flexcoders@yahoogroups.com, Steve

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Samuel Neff
This is more of a player issue than Flex, but we need RTSP support for H264 video. Locking us into FMS for streaming video is a real problem for us and means we can't use Flash video and will have to continue to use Quicktime until there is a solution. Thanks, Sam On Feb 11, 2008 12:50 PM,

[flexcoders] about drag enable datagrids

2008-02-11 Thread rhnkyr
Hi guys. there is a link which is http://blog.flexexamples.com/2007/09/19/dragging-rows-between-two-different-flex-datagrid-controls/ How can I add dragged row in an arraycollection? thnx

[flexcoders] Re: HBox children alignment?

2008-02-11 Thread Glenn Williams
HBox children alignment? hi i use the one of the following methods depending what i need mx:HBox foo mx:Spacer width=100% / bar /mx:HBox OR mx:Hbox !-- objects left aligned-- mx:HBox horizontalAlign=left . . objects . /mx:HBox !-- objects right aligned-- mx:HBox width=100%

[flexcoders] HBox children alignment?

2008-02-11 Thread Glenn Williams
hi i use the one of the following methods pending on what i need mx:HBox foo mx:Spacer width=100% / bar /mx:HBox OR mx:Hbox !-- objects left aligned-- mx:HBox horizontalAlign=left . . objects . /mx:HBox !-- objects right aligned-- mx:HBox width=100%

[flexcoders] compc Help: Error: unable to load SWC ... symbol 0 not defined

2008-02-11 Thread flexificationer
In our Flex 2 project, we use a swc file generated from within the Flash 9 IDE, saved as lib/assets/Widgets.swc. We include it into an intermediary swc file that we build to host our custom components for reuse across projects. In FlexBuilder 2, we added the lib/assets/Widgets.swc to the

[flexcoders] Firefox Bug -- Top-level Floating Flash Div Appears BELOW Page-Based Flash Div

2008-02-11 Thread jwebbsuccess
I don't know why this is happening. I have two HTML DIVs, each one containing a dynamically generated Flash movie. One of them is part of the page layout and the other floats onto the screen above the layout. The floating DIV should always be on top but it is not. The two Flash movies seem to

Re: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Sherif Abdou
who said you can't access that property? package flexlib.containers { import mx.controls.DataGrid; public class ADDataGrid extends DataGrid { public function ADDataGrid() { super(); this.rendererChanged=true; } } } extend the dataGrid and do wahtever u want with it - Original Message

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Dominic Pazula
Try setting a new ArrayCollection with all the values from the changed ArrayCollection. Null the DataGrid dataProvider and then set the dataProvider to the new ArrayCollection. --- In flexcoders@yahoogroups.com, mr_j_harris [EMAIL PROTECTED] wrote: Hi Sharif, and thanks, I tried that,

RE: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Gordon Smith
if Adobe was actually so clever, wouldn't they already have parsed all stylesheet names in any .css file in the project to provide to the Content Assistant? Oh I get it, perhaps it's called the Metered Release of Features to make money for the company Adobe. Do you mean that Flex Builder's

RE: [flexcoders] formatting text

2008-02-11 Thread Gordon Smith
Look at the substitute() method of mx.utils.StringUtil. And, in Flex 3, look at the getString() method of mx.resources.ResourceManager. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of paulbohnenkamp

[flexcoders] Module can't find HBox

2008-02-11 Thread dbronk
I've been developing with my application using modules just fine for weeks. Now I'm getting an error when loading my module and I can't make it go away. VerifyError: Error #1014: Class mx.containers::HBox could not be found. at flash.display::MovieClip/nextFrame() at

RE: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Tracy Spratt
Yes that always works, re-assigning the dataProvider, but it does refresh the entire DG, which is usually not necessary unless the entire dataprovider is replaced. The OP has not told us how he is updating the dataProvider, nor what the ArrayCollection contains. If one uses the the

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread mr_j_harris
Hi Sharif, and thanks, I tried that, it provides the same results as I'm used to, which is a 95% refreshment of the on-screen visual aspect of the DataGrid. Does it force a redraw of all updated cells on my DataGrid... answer is NO. Do I need a redraw of all updated cells on my DataGrid...

Re: [flexcoders] How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Sherif Abdou
and stale data has nothing to do with redrawing it, you need to listen for a CollectionEvent and do wahtever - Original Message From: Sherif Abdou [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 3:32:09 PM Subject: Re: [flexcoders] How can I FORCE a

Re: [flexcoders] How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Sherif Abdou
what do you mean by redraw? you can try validateNow() on the Grid - Original Message From: mr_j_harris [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 2:33:47 PM Subject: [flexcoders] How can I FORCE a REDRAW of a DATAGRID I need to force a redraw of

[flexcoders] LCDS and triggers, auto inserts or updates of timestamp columns

2008-02-11 Thread Kevin
I am wondering how successful triggers are when used with LCDS DMS? Should I expect to run into a bunch of DataService conflicts with this or are they safe to use. I am not thinking about anything too crazy, even just basic timestamp updating would be nice to implement on the database rather

RE: [flexcoders] about drag enable datagrids

2008-02-11 Thread Alex Harui
When dropped it should automatically go into the destination's collection From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rhnkyr Sent: Monday, February 11, 2008 10:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] about drag

[flexcoders] Re: How to programatically select a node in an XMLListCollection

2008-02-11 Thread j_lentzz
I took a look at that post, but it doesn't address what I need to do. I can find the node using the XML navigation methods, however, I want to create a list of total nodes matched (there can be many) then allow the user to jump from match to match, so I need to be able to select a node and

[flexcoders] Re: How to programatically select a node in an XMLListCollection

2008-02-11 Thread j_lentzz
Thanks! I'll check it out. John --- In flexcoders@yahoogroups.com, Brad Bueche [EMAIL PROTECTED] wrote: http://www.brucephillips.name/blog/index.cfm/2006/12/5/Processing-XML-in -Flex-20-Using-The-For-Each-Statement-And-The-Descendent-Accessor--Opera tor That should give you most of what

RE: [flexcoders] Re: HBox children alignment?

2008-02-11 Thread Merrill, Jason
Perfect, I never would have thought of that. Thanks Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re:HBox children alignment?

2008-02-11 Thread joshua gatcke
use a spacer. mx:HBox width=100% label text=foo/ spacer width=100%/ checkbox/ /mx:HBox

[flexcoders] Re: Bubble chart datetimeaxis

2008-02-11 Thread hworke
Yes datetime axis works with bubble chart... --- In flexcoders@yahoogroups.com, hworke [EMAIL PROTECTED] wrote: Hi isn't it possible to use datetime axis in a bubble chart?

[flexcoders] Property type information lost on RPC call to server using AMF

2008-02-11 Thread ashleystreb
We're using BlazeDS + Flex to invoke Java methods on the server side. Everything is working well, except that some properties on VO objects are losing their type information. We're using Charles to introspect the traffic that is going from the client to the server and its showing some properties

RE: [flexcoders] Re: AS3 Syntax for Adding to mx:series Array

2008-02-11 Thread Brad Bueche
Thanks! I also found this: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhel p.htm?context=LiveDocs_Book_Parts http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhe lp.htm?context=LiveDocs_Book_Partsfile=charts_intro_108_06.html

Re: [flexcoders] formatting text

2008-02-11 Thread Sherif Abdou
try the TextFormatter Class. I am not famliar with java so i am assuming here - Original Message From: paulbohnenkamp [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 10:49:13 AM Subject: [flexcoders] formatting text Is there a flash/flex equivalent to

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Paul Andrews
Joan, I think the achilles heel of Flex is it's lack of support for quality printing, client-side. I know there are server-side solutions (at a significant cost) plus a few 3rd party projects kicking around, but getting quality printout from Flex involves jumping through hoops and server-side

RE: [flexcoders] How to programatically select a node in an XMLListCollection

2008-02-11 Thread Brad Bueche
http://www.brucephillips.name/blog/index.cfm/2006/12/5/Processing-XML-in -Flex-20-Using-The-For-Each-Statement-And-The-Descendent-Accessor--Opera tor That should give you most of what you need to know. brad -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]

[flexcoders] Re: AS3 Syntax for Adding to mx:series Array

2008-02-11 Thread rueter007
var chartSeries: Array = new Array(); var mySeries: LineSeries = new LineSeries(); mySeries.xFIeld = blah; mySeries.yField = blah-blah //set the other styles and properties on the series. ... chartSeries.push(mySeries); // set the series property on the chart. myChart.series = chartSeries.

[flexcoders] ModuleManger

2008-02-11 Thread Marvin Froeder
I was looking into the ModuleManager code, and found something wear. /** * @private */ public function completeHandler(event:Event):void { //trace(child load of + _url + is complete); var moduleEvent:ModuleEvent = new ModuleEvent(

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Derrick Anderson
one of my personal gripes, an RTE that can output valid xhtml. i have had to create my own which is a pain- i think it should be built in. thanks, d. On Feb 11, 2008 12:50 PM, Joan Lafferty [EMAIL PROTECTED] wrote: As we close up Flex 3 development, the team is evaluating existing Flex

[flexcoders] Re: Accordion customization

2008-02-11 Thread jer_ela
Take a look at the windowshade component on FlexLib http://code.google.com/p/flexlib/wiki/ComponentList --- In flexcoders@yahoogroups.com, YOGESH JADHAV [EMAIL PROTECTED] wrote: ya, exactly . Initially i was totally unaware that that flex3 now comes with accordian source. I searched

[flexcoders] Re: PopUp Containers and Scrolling Issues

2008-02-11 Thread Corey Smaller
oh i feel stupid. Occhams Razor. All I had to do was set the height on the scrollable VBox. duh thanks again Alex --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try adding minHeight=0 to the HBox as well. Think of minHeight=0 as you can be smaller than your

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Dominic Pazula
I'm looking to: I have an AdvancedDataGrid and I want track the user paging up, down, and across the grid with the arrow keys. I don't want the data to be editable, which means I cannot use the itemFocusIn event (throw, as you say, by the item editor). So I would like to know when the user

Re: [flexcoders] date substraction problem

2008-02-11 Thread Ralf Bokelberg
newDate = new Date( oldDate.getYear(), oldDate.getMonth() - 1, oldDate.getDate()); Cheers Ralf. On Mon, Feb 11, 2008 at 5:08 PM, M.Javed [EMAIL PROTECTED] wrote: Hi, I have to substract 1 Month from the Date object, iam currently using the SetTime() method of date object as follows,

Re: [flexcoders] Control the color of disabled component

2008-02-11 Thread Vadim Melnik
Hello, Does disabledOverlayAlpha=0 help in case of disabled containers? -- Thanks, Vadim. - Original Message - From: ezderman To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 3:37 PM Subject: [flexcoders] Control the color of disabled component Hi, How

[flexcoders] Flex3 Charting Components

2008-02-11 Thread Steve Brownlee
I recently downloaded the Flex3 SDK and built a simple app in Flex Builder. I now want to add some charts for a reports section, and while the online docs refer to the mx.charts package, I can't import it into my application. Does the Flex3 beta not include this package?

[flexcoders] Re: Is it possible to have a dynamic services/channel/endpoint URI?

2008-02-11 Thread dave_defusion
I didn't know that you could use those placeholders in the URI, do you know of any documentation on these - I can't seem to find any. Although I've found a few examples which mention these 3 {server.name} , {server.port}, {context.root} - is that all there are (not that I need any more)? Also I

[flexcoders] Re: autoscroll base on control with focus

2008-02-11 Thread valdhor
Have a look at Eric Cancil's Scroll to anchors component at http://blog.3r1c.net/?p=84 --- In flexcoders@yahoogroups.com, dbronk [EMAIL PROTECTED] wrote: I have an input page where the inputs go off the bottom of the canvas causing a vertical scroll bar. How can I auto scroll so that which

[flexcoders] date substraction problem

2008-02-11 Thread M.Javed
Hi, I have to substract 1 Month from the Date object, iam currently using the SetTime() method of date object as follows, but its giving some abnormal result by adding few days instead of substracting. --- var date:Date = new Date(); var

Re: [flexcoders] Accordion customization

2008-02-11 Thread Tom Chiverton
On Monday 11 Feb 2008, YOGESH JADHAV wrote: ya, exactly . You could try setting height=60 when it's created, then set percentHeight=100 in the click handler. -- Tom Chiverton Helping to ambassadorially synergize end-to-end clusters on: http://thefalken.livejournal.com

Re: [flexcoders] Accordion customization

2008-02-11 Thread Tom Chiverton
On Monday 11 Feb 2008, YOGESH JADHAV wrote: i mean to say , by default the selected item is 'expanded' . My item renderer is consisting of two parts, image and product description. I don't want image to be displayed unless user clicks on it. So entire list/panel remains in collapsed state,

[flexcoders] How do I pass Flash Player variables with SWFLoader

2008-02-11 Thread ahorugav
Hi there everyone... I have a question with an issue I'm having right now... Is there a way to pass the same variables that are passed to Flash Player for the flash.swf loaded with SWFLoader in Flex? The reason I'm asking is that I'm trying to embed a flash RSS reader and I need to pass a view

[flexcoders] Re: Tabnavigator crashes ALL tweens

2008-02-11 Thread raymondjp
Figured it out for those interested: If you are using a fix for the datagrid column visibility issue (where hidden columns show themselves again when bound to an arraycollection) as described here http://blog.classsoftware.com/index.cfm/2007/6/17/Flex-Datagrid-Visibil\ ity-Bug . Use the

[flexcoders] Re: createPopUp question

2008-02-11 Thread markgoldin_2000
Assuming CustomComponent.popWhatToShow is a public string of CustomCompontent. Sorry, but I dont understand what that means. --- In flexcoders@yahoogroups.com, Paul Kukiel [EMAIL PROTECTED] wrote: Hi, I miss read what you were doing earlier. try: public function

RE: [flexcoders] DataGrid limit on amount of records or data?

2008-02-11 Thread Gordon Smith
You need to determine whether you're having a problem fetching the data from the server, or displaying the data in the DataGrid. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luke Vanderfluit Sent:

[flexcoders] Re: Compiler Option for Caching Flex Libs

2008-02-11 Thread Gaurav Jain
You can compile your application with the following option -runtime-shared-library-path location of framework swc url for framework rsl or you can have a local config file that looks like: ?xml version=1.0 encoding=UTF-8? flex-config xmlns=http://www.adobe.com/2006/flex-config;

Re: [flexcoders] Async (no response) Soap with Flex?

2008-02-11 Thread Josh McDonald
OK, thanks for clearing that up, cheers. -Josh On Feb 12, 2008 8:13 AM, Seth Hodgson [EMAIL PROTECTED] wrote: Hi Josh, The Flex client web service code expects the response to contain a SOAP Envelope. Any empty 200 OK response with a Content-Length of 0 will trigger an error. Best,

RE: [flexcoders] Async (no response) Soap with Flex?

2008-02-11 Thread Seth Hodgson
Hi Josh, The Flex client web service code expects the response to contain a SOAP Envelope. Any empty 200 OK response with a Content-Length of 0 will trigger an error. Best, Seth From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh

Re: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Sherif Abdou
you can also try and dispatch an event of but i have yet to test it itemRendererChanged - Original Message From: mr_j_harris [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 3:58:02 PM Subject: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID Hi

[flexcoders] Re: How to programatically select a node in an XMLListCollection

2008-02-11 Thread j_lentzz
I'm using Flex 2 (if that matters any). So I need to expand all of the tree (or just to the nodes I want to select), then walk the dataProvider to find the nodes? John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: In Flex 3, you can call expandItem or set openNodes to

[flexcoders] How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread mr_j_harris
I need to force a redraw of a datagrid. Adobe's or whoever's Cleverness is not working for me. I just want to have my computer redraw the DataGrid from 0,0 to the bottom right corner. My computer has nothing better to do than that for me or my users. Because elsewise it is show stale data..

[flexcoders] ANN: PyAMF 0.1

2008-02-11 Thread Thijs Triemstra | Collab
We released PyAMF 0.1, a lightweight library that allows Flash and Python applications to communicate via Adobe's ActionScript Message Format. AMF3 and RemoteObject are supported in all the implemented Remoting gateways, currently supported for Django, Twisted and WSGI. A summary of new

[flexcoders] Re: What are the available WSDL - AS3/Flex code generators out there?

2008-02-11 Thread pacific_2096
Hi, I checked the bug base and it looks like its fixed for the release: https://bugs.adobe.com/jira/browse/FB-11399 Cheers, Tim Hard to say for sure without seeing the WSDL, but it looks like a Flex bug.

[flexcoders] Re: What are the available WSDL - AS3/Flex code generators out there?

2008-02-11 Thread pacific_2096
Hi. I'm seeing this same behaviour (bug?) too, in a webservice using Java/Tomcat/XFire, and which seems OK from the Eclipse web service explorer test harness. Could you let us know whether you posted a bug to Adobe? If so, I will add my case to it. Cheers, Tim --- In flexcoders@yahoogroups.com,

[flexcoders] Passing php session ID into a flex application

2008-02-11 Thread Bob Jones
Hi all, I was wondering how to use flashvars to pass a php session id into a flex application. I am new to flashvars so I need to know the syntax on the mxml and php sides. Thanks.

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread mr_j_harris
Thanks Dominic, I tried that, out of desperation (it doesn't seem so efficient) and it erupted in the famous TypeError#1009 (null object somewhere) Why is this so hard? I know the coordinates on the grid where I need the new values printed to screen. Why can't I invoke function like this:

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread mr_j_harris
Thanks Sharif, the compiler said I couldn't access that property. So I tried what you said. Them I wanted to add some, uh, mx:columns. well not so fast, mx:columns is not recognized after I swap mx:DataGrid for utilities:ADDataGrid Hey, can someone show me that they've actually

[flexcoders] Re: Shortcut to generate bindings for left=foo right=foo etc? Or styles?

2008-02-11 Thread dazweeja
Sorry mate, I didn't see the last part of your initial post where you mention the styles. You're correct in that there is no public properties that you can access to directly set these values so it's best to use getStyle/setStyle. That way (in)validation, updating of the display list, etc., is

Re: [flexcoders] Re: Accordion customization

2008-02-11 Thread YOGESH JADHAV
thanx dude, i'll have detailed look at that, seems to be the solution. On Feb 11, 2008 11:37 PM, jer_ela [EMAIL PROTECTED] wrote: Take a look at the windowshade component on FlexLib http://code.google.com/p/flexlib/wiki/ComponentList --- In flexcoders@yahoogroups.com

[flexcoders] Merged row in grid that have a same content, How ?

2008-02-11 Thread Harry Saputra
Dear All, I need your help to solve this problem. I have data as Array and i will show it on DataGrid. I want to show like this : Before : A ANDY 12 A ANTS 13 A APPLE 14 Want to show : A ANDY 12 ANTS 13 APPLE 14 Thanks before..

RE: [flexcoders] ModuleManger

2008-02-11 Thread Alex Harui
Make sure you have a reference to the moduleInfo otherwise a GC can kick it out. Post the code that starts the load. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marvin Froeder Sent: Monday, February 11, 2008 10:15 AM To:

[flexcoders] Re: How to scroll Tree based on selectedIndex

2008-02-11 Thread rueter007
call scrollToIndex(myIndex) on the tree; --- In flexcoders@yahoogroups.com, j_lentzz [EMAIL PROTECTED] wrote: Hi, I've finally figured out how to get a list of bookmarks into my ICollectionView, but now I need to select and scroll to each item. I can set selectedIndex equal to the index

[flexcoders] Re: Remote Object Security

2008-02-11 Thread slash_n_rose
Thank you all :) --- In flexcoders@yahoogroups.com, barry.beattie [EMAIL PROTECTED] wrote: you can create a persistent instance of a remote object, set credentials on it after the user successfully logs in, and then continue to use it without fear of any session timeout ah ha!

Re: [flexcoders] Flex Feedback for the Future

2008-02-11 Thread Brent Dearth
In the interest of standards, I'd like to second the issue of RTSP. Is this a limitation of Flash not supporting UDP? If so, it's a protocol that deserves Player attention regardless. On Feb 11, 2008 1:48 PM, Samuel Neff [EMAIL PROTECTED] wrote: This is more of a player issue than Flex, but

[flexcoders] Re: Property type information lost on RPC call to server using AMF

2008-02-11 Thread ashleystreb
Thanks, that does. I had assumed that the type information came from typing on the Class not the runtime value. Bad assumption. Thanks. -ashley --- In flexcoders@yahoogroups.com, ashleystreb [EMAIL PROTECTED] wrote: We're using BlazeDS + Flex to invoke Java methods on the server side.

[flexcoders] HBox children alignment?

2008-02-11 Thread Merrill, Jason
Stupid question, but how do I get two objects to be placed on the same horizontal space (i.e. HBox) but one aligned left, and one aligned right? So essentially, what I want is: | TEXT CHECKBOX | | TEXT CHECKBOX | | TEXT

Re: [flexcoders] Property type information lost on RPC call to server using AMF

2008-02-11 Thread Samuel Neff
NULL values don't have type in AMF, they're just NULL (NULL is a type code as far as AMF is concerned, not a value). HTH, Sam On Feb 11, 2008 1:35 PM, ashleystreb [EMAIL PROTECTED] wrote: We're using BlazeDS + Flex to invoke Java methods on the server side. Everything is working well,

[flexcoders] Re: Tab Navigator (BUG???)

2008-02-11 Thread Rafael Faria
But any reason for this being happening? I don't set anything to go anywhere. raf --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: TabNav uses historyManager. Set historyManagementEnabled='false' From:

RE: [flexcoders] DataGrid limit on amount of records or data?

2008-02-11 Thread Merrill, Jason
As a side note, taking a step back, why would you want to present that many records at a time to the user? It seems anything above a few hundred is overly cumbersome to wade through, and should perhaps instead be filtered further. No? True in most cases I guess, but I can think of a few

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Dominic Pazula
Oh, I know. He seemed to want a way to do it no matter what. This seems a likely way to get his new data into the grid, no matter what... I'm still learning Flex myself and the itemUpdated() is going into my ever expanding bag of tricks. Thanks! --- In flexcoders@yahoogroups.com, Tracy

[flexcoders] Re: Does the LCDS HIbernate Assembler override fetch joins in HQL queries?

2008-02-11 Thread Kevin
I am pretty sure I should be able to use a fetch join to do this, however, I can't seem to get it to work with my Flex app. No matter how I write the query it still seems to get initialized via multiple select statements. I'll look into this a little more. possibly there is something I am doing

RE: [flexcoders] Does the LCDS HIbernate Assembler override fetch joins in HQL queries?

2008-02-11 Thread Jeff Vroom
I don't think LC DS is doing anything funky to override how hibernate does the query. We just are accessing the cat.kittens property to pull out the identities of the kittens even with lazy=true. I don't know enough about hibernate to know how to get it to query kittens and cats in the same

RE: [flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Alex Harui
I'm not clear what you want. You want arrow keys and pageup/dn to navigate to various cells and then edit those cells? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dominic Pazula Sent: Monday, February 11, 2008 5:10 AM To:

Re: [flexcoders] date substraction problem

2008-02-11 Thread Ralf Bokelberg
or date.setMonth( date.getMonth() - 1 ) if you want to change the date object itself Cheers Ralf. On Mon, Feb 11, 2008 at 6:22 PM, Ralf Bokelberg [EMAIL PROTECTED] wrote: newDate = new Date( oldDate.getYear(), oldDate.getMonth() - 1, oldDate.getDate()); Cheers Ralf. On Mon, Feb 11,

RE: [flexcoders] How do I pass Flash Player variables with SWFLoader

2008-02-11 Thread Alex Harui
You should be able to use URL params From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ahorugav Sent: Sunday, February 10, 2008 7:55 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I pass Flash Player variables with

RE: [flexcoders] creationComplete?

2008-02-11 Thread Alex Harui
Are you hiding the screens? I so, use visible and the show event. Otherwise, maybe try focusIn events on the containers. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markflex2007 Sent: Monday, February 11, 2008 8:39 AM To:

[flexcoders] AS3 Syntax for Adding to mx:series Array

2008-02-11 Thread Brad Bueche
I have the following setup and I need to make it a little bit more dynamic: mx:series mx:Array id=chart_series mx:LineSeries yfield=category1_value displayName = Other CIX / /mx:Array /mx:series Actually I'd like to start with it blank mx:series mx:Array /mx:Array

[flexcoders] Re: Keyboard navigation to objects within components

2008-02-11 Thread Dominic Pazula
Hi Alex, If it were only that simple... As I said earlier, the change event is not fired (in the ADG) when a user arrows off the header. If I am tracing the movement of the selected cell around the ADG, I miss a cell when the user arrows up too far, i.e. to the header, and then arrows down.

Re: [flexcoders] Re: Is it possible to have a dynamic services/channel/endpoint URI?

2008-02-11 Thread João Fernandes
Dave, only server.name and server.port are evaluated at runtime, context.root isn't. -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

[flexcoders] Re: autoscroll base on control with focus

2008-02-11 Thread dbronk
I had not seen that one. I can see how that would be very helpful. I found a different utility at http://www.darylb.net/flexautoscroll/ which does exactly as I want in only a couple lines of code. Thanks, Dale --- In flexcoders@yahoogroups.com, valdhor [EMAIL PROTECTED] wrote: Have a look at

[flexcoders] Is it possible to have 2 items in viewstack visible?

2008-02-11 Thread Max Frigge
Hi, I am trying to create a slide effect for a ViewStack. Therefor I would need to have 2 children visible at the same time, so that you can see the second child sliding in while the first one is sliding out. Is that possible or am I on the wrong path? I want something like this: ?xml

[flexcoders] Re: How to programatically select a node in an XMLListCollection

2008-02-11 Thread j_lentzz
Ok. Thanks for the help. I appreciate it. I managed to get it to select using the openItems array to get the index. Now I need to get the nodes to open down the tree to the desired node. Thanks, John --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: openNodes doesn't

RE: [flexcoders] Bad Flash bug - MouseEvent and MovieClips

2008-02-11 Thread Jobe Makar
Hi, Here is the code. stop(); import flash.events.MouseEvent; import flash.utils.setTimeout; this.addEventListener(MouseEvent.MOUSE_DOWN, onClick); function onClick(e:MouseEvent):void { test() //setTimeout(test, 80); } function test() { var b:Blah

Re: [flexcoders] DataGrid limit on amount of records or data?

2008-02-11 Thread Luke Vanderfluit
Hi Seth. Seth Hodgson wrote: What type of channel/endpoint are you using between the client and server? Its rtmp, which is the default channel in data-management-config.xml default-channels channel ref=my-rtmp/ /default-channels If you're using RTMP, that protocol

Re: [flexcoders] Accordion customization

2008-02-11 Thread YOGESH JADHAV
ya, exactly . Initially i was totally unaware that that flex3 now comes with accordian source. I searched net and used a swc created by someone. Now looking thru mailing list's logs i got know about this, now looking into the accordion source ( though my as3 knowledge is almost zero ).

Re: [flexcoders] Bad Flash bug - MouseEvent and MovieClips

2008-02-11 Thread Sherif Abdou
you have the actionscript since i dont have flash, i can test in flex and see if i can help - Original Message From: Jobe Makar [EMAIL PROTECTED] To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 5:40:22 PM Subject: [flexcoders] Bad Flash bug -

[flexcoders] Using Flex to create an FLV player to monetize online video shows

2008-02-11 Thread Renat Zarbailov
Hello everyone, I just joined the Flex group and would like to introduce myself before shooting the question(s). My name is Renat Zarbailov and I am the creator of an online comedy show called Mr.Thyself Show (www.mrthyself.com). I was wondering if there's a way to create a video player for a

Re: [flexcoders] Accordion customization

2008-02-11 Thread YOGESH JADHAV
Hi Tom, i mean to say , by default the selected item is 'expanded' . My item renderer is consisting of two parts, image and product description. I don't want image to be displayed unless user clicks on it. So entire list/panel remains in collapsed state, only click / mouse over expands the

RE: [flexcoders] Re: createPopUp question

2008-02-11 Thread Tracy Spratt
No, there are many messages in the archive about using strings to instantiate components. Maybe something in the archive will help you. Give this a try, see what happens. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Bad Flash bug - MouseEvent and MovieClips

2008-02-11 Thread Jobe Makar
Hi guys, I just ran into a nasty Flash bug. I hope that someone tells me I'm wrong here. You can download the tiny example FLA here: http://www.electrotank.com/lab/MouseEventBug.fla I have a function called 'test'. When run, test creates a new Blah() movie clip. Blah() contains movie clip that

RE: [flexcoders] Re: createPopUp question

2008-02-11 Thread Tracy Spratt
Lets back up a bit here. As I am understanding, you want to pop-up a component based on a string value containing the name of the class(component)? Is that correct? If so, then you will probably need to use flash.utils.getDefinitionByNam() to instantiate your popup component, then use

Re: [flexcoders] date substraction problem

2008-02-11 Thread M.Javed
Thanks a zillion Ralf ... its working :) regards -Javed - Original Message From: Ralf Bokelberg [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 11, 2008 9:22:54 PM Subject: Re: [flexcoders] date substraction problem newDate = new Date( oldDate.getYear( ),

[flexcoders] Help!! flashlog.txt suddently stopped - no log messages anymore

2008-02-11 Thread stoff0
Today the flash debug player stopped logging my (and the rest of the web's) trace statements to flashlog.txt I have not idea why, but I was wondering if anyone ever experienced the same issue. My /Library/Application Support/Macromedia/mm.cfg looks like this: ErrorReportingEnable=1

[flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread mr_j_harris
Thanks Tracy, I tried calling itemUpdated(objectOfConcern) often (well, twice, actually) and it does not help. Some other approaches, including the wholesale nullification and reinstantiation of the data grid dataProvider caused me my famous TypeError#1009 captureItemPosition: set

RE: [flexcoders] Re: How to programatically select a node in an XMLListCollection

2008-02-11 Thread Alex Harui
For some xml: node label=top node label=middle node label=leaf1 / node label=leaf2 / /node /node You are essentially passing into the dataProvider property one node (top), and internally, the Tree opens a

RE: [flexcoders] Re: AdvancedDataGrid Keyboard navigation to objects within components

2008-02-11 Thread Alex Harui
I renamed the subject to get the attention of the folks who wrote this component. They should be at work by now. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dominic Pazula Sent: Monday, February 11, 2008 5:58 PM To:

RE: [flexcoders] Re: How can I FORCE a REDRAW of a DATAGRID

2008-02-11 Thread Alex Harui
invalidateList() and updateList() should also refresh the DG From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dominic Pazula Sent: Monday, February 11, 2008 6:31 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How can I FORCE

  1   2   >