RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Abdul Qabiz
Actually using socket loads of things can be done. People talk about Flex and MS Excel communication, someone can write some VBA code(using WinSock) in excel user form and my flex apps can communicate with Excel using XMLSocket. Same can happen for any application... -abdul -Original Messa

RE: [flexcoders] Load a large swf (13MB)

2005-07-06 Thread Abdul Qabiz
Hi,   Yeah you can. If it is progressive flv download, then as soon as some video is buffered you can play it.   If you are using flashcom, then it would be pure streaming and you can play...   I think, you can set the buffer time using:   NetStream.setBufferTime(..)    http://livedocs.macr

RE: [flexcoders] How can I call to opener's function from popup window??

2005-07-06 Thread Tracy Spratt
For this you can use mx.core.Application.application.myFunction(myArg) Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ssalbatore Sent: Wednesday, July 06, 2005 2:21 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How can I call to o

RE: [flexcoders] Reorder tree via dragging

2005-07-06 Thread Matt Chotin
I think dataForFormat(“items”) or dataForFormat(“source”), not sure which is valid for Tree, might give you the original items as opposed to the copies.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sean McKibben Sent: Wednesday, Ju

RE: [flexcoders] How can I call to opener's function from popup window??

2005-07-06 Thread Matt Chotin
You say you know how to pass a parameter to the popup window, so couldn’t you just send the opener as a parameter and then use it in the popup?  I’m not sure what you’re missing here.   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of ssalbatore

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-06 Thread Matthew Shirey
Uhm... to get right to the point... That's Crazy.  Why are MenuItems and Menus not children??  I'm dealing with an application that I am trying desperately to use scaling in to make it easier for visually impaired to use.  But at every turn scaling seems to be broken.  I just found that with a C

[flexcoders] Macromedia Flex contracts a plenty!

2005-07-06 Thread Jeff Steiner
I thought that I would bring up the Flex Jobs topic in the forums of Flex Authority.  I am seeing probably 4-5 Flex jobs a week on the major job search engines!   If you are interested, take a peek at http://www.flexauthority.com/forumThreadList.cfm?topicID=12.   Jeff Founder Flex

Re: [flexcoders] Dynamically add an MXML to a Panel

2005-07-06 Thread Scott Barnes
Basically from what I can gather you are trying to load in an MXML component based on a combo box's data attribute. This cannot be done unless that mxml component has been imported at compile time. The reason for this is even though FLEX is a server-side "compiler" once a MXML file has been proce

[flexcoders] Re: Cairngorm on a Intranet

2005-07-06 Thread joao_m_fernandes
Bad luck, I'm using 0.99. should I unregister the viewhelper before destroying the container? I noticed that viewHelper Class sets an unload event, shouldn't it be dispatched when the parent container is destroyed? Or is it destroyed too late ? my piece of code url beeing the container that shoul

RE: [flexcoders] Dynamically add an MXML to a Panel

2005-07-06 Thread Tracy Spratt
There are some heavy-hitters with dynamic content out there, and surely they will have some positive suggestions, but the problem with your approach is that createChild needs an object in the first parameter, and you are giving it a string. If all you have is a resource string(url) my only suggest

RE: [flexcoders] Adding an XML node in the data model

2005-07-06 Thread Tracy Spratt
Model return an Object, and you can add properties to an object at will. Almost certainly you will be dealing with scalar values, objects, or arrays. But, if it was me, I would not use model at all, and would manipulate the XML document, which is made for this kind of thing, with methods like appen

[flexcoders] Adding an XML node in the data model

2005-07-06 Thread Ghislain Simard
Once the data model is downloaded, how can we add dynamically a node in that ? Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit y

[flexcoders] Dynamically add an MXML to a Panel

2005-07-06 Thread cazzaran
I have a Panel in my application that needs to include different form stuff based on what a user chooses in a ComboBox. I have a Panel that looks like: Based on the selection they choose in the ComboBox, I need what shows up in the Panel to change. I have created several MXML files that have an

Re: [flexcoders] considering a move to Flex . . .

2005-07-06 Thread Scott Barnes
On 7/7/05, chris.alvarado <[EMAIL PROTECTED]> wrote: > so basically what I'm wondering is could this app be developed in > Flex, and if so could i expect better performance than the native > Flash app? As a person who came from a similiar background, I can understand where you are coming from. Pr

Re: [flexcoders] Re: Mouse click on panel header

2005-07-06 Thread Scott Barnes
Sorry, I should of mentioned that earlier. Yes this is an internal asset (part of the chrome), which brings me to a point that in many ways when you do play around with the inner-workings of FLEX components, it pays (for saftey reasons) to simply extend these components with your own name space an

[flexcoders] Re: Dynamic LineSeries color doesnt work

2005-07-06 Thread DavidLand
Which brings up another question I supose. How do you set the fill color of a series with AS? d. --- In flexcoders@yahoogroups.com, "DavidLand" <[EMAIL PROTECTED]> wrote: > Whenever I add a LineSeries to a chart via AS it does not seem to > obtain the automatic stroke color. It just shows up as

Re: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Darron J. Schall
> > I know Flex excels at communicating with server-side data sources. > Is there any way for a flex app to communicate with a desktop > application installed on the same machine as where the app is being > viewed (in a controlled kiosk environment for e.g.) Look into using the XMLSocket class.

[flexcoders] Dynamic LineSeries color doesnt work

2005-07-06 Thread DavidLand
Whenever I add a LineSeries to a chart via AS it does not seem to obtain the automatic stroke color. It just shows up as 2 grey lines if it still has a shadow. In the legend there is no color swatch as well. Code is below and any help is of course appreciated. thnx var ls=new LineSeries(); ls.s

[flexcoders] using Repeater

2005-07-06 Thread Rajesh Jayabalan
Hi, when I try to use the value from repeator for a viewstack id I get a "id '{rp.currentItem.mrcName}' is not a valid identifier" error. I am trying to create viewstack with dynamic ids and pass the id to a function. Here is my code. Rajesh J

[flexcoders] Load a large swf (13MB)

2005-07-06 Thread Clint Modien
Can I start playing the movie before it's loaded? Can/Should I use flashcom to do this? Can I control the buffer? We load flv's using flashcom already... so we have a flashcom license. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search A

[flexcoders] How do I bound XML data into an array that is my data provider for a data grid

2005-07-06 Thread Joe
I am using an array to provide a data provider for my data grid that has a cellrendering colum that produces a combobox. With in the array is a New Array for the combo box data provider. It is OK that the values for the combo box are hard coded, but I twant he rest of the values tin the data gri

RE: [flexcoders] Display a list of item attributes

2005-07-06 Thread Tracy Spratt
For each item, you could loop over the attributes/properties, then build whatever you want, either a string, or even use createChild() to create controls. For each item object: for (var key in item) { trace(key + ": " + item[key]);//should output propertyName: propertyValue } Or if you

Re: [flexcoders] considering a move to Flex . . .

2005-07-06 Thread chris.alvarado
thank you very much for your response. im working through some of the "getting started" tutorials now, and im really liking what i see so far. on my laptop i just installed the built in JRun server, but on a full blown development / production server what J2EE servers should i consider? Im tryin

[flexcoders] Display a list of item attributes

2005-07-06 Thread Devin Holloway
I'm using the Amazon.com web service to display a list of products. The products returned populate a TileList. The selection of a product (the selection of a TileList cell) is bound to a model holding the currently selected product. {productList.selectedItem} Each item returned has a node of i

[flexcoders] Localized Flex Apps

2005-07-06 Thread Lucian Beebe
Macromedia is looking for people in the process of designing or developing Flex applications that will run in different localized languages. We’d like to talk to you about what is difficult and what you would like us to do to make that easier. This is your chance to bend us to your will.

Re: [flexcoders] add / remove item in a Tile directly

2005-07-06 Thread Jeff Tapper
give a look at createChild() At 04:49 PM 7/6/2005, you wrote: >Am using Tile not TileList ...is there an equivalent of addItem for the Tile >component ? > >- superabe > >- Original Message - >From: "Manish Jethani" <[EMAIL PROTECTED]> >To: >Sent: Wednesday, July 06, 2005 4:07 PM >Subjec

Re: [flexcoders] add / remove item in a Tile directly

2005-07-06 Thread superabe
Am using Tile not TileList ...is there an equivalent of addItem for the Tile component ? - superabe - Original Message - From: "Manish Jethani" <[EMAIL PROTECTED]> To: Sent: Wednesday, July 06, 2005 4:07 PM Subject: Re: [flexcoders] add / remove item in a Tile directly > On 7/6/05, s

Re: [flexcoders] Re: Flex over dialup?

2005-07-06 Thread Manish Jethani
On 7/5/05, temporal_illusion <[EMAIL PROTECTED]> wrote: > The minimum size of a Flex app seems to be around 120KB.. Actually, the minimum size is 6 KB. http://www.macromedia.com/2003/mxml";> function constructObject() { _level0.preloadObj.pBar._visible = false; lineStyle(1)

[flexcoders] Reorder tree via dragging

2005-07-06 Thread Sean McKibben
So I'm trying to make a tree which can reorder its nodes by dragging them. One of the things I wanted to do is prevent a parent item from being dragged on to any of its children, and to show that during the dragOver event. In order to calculate whether the source is being dragged on to any

Re: [flexcoders] Re: Mouse click on panel header

2005-07-06 Thread Manish Jethani
On 7/6/05, Valy Sivec <[EMAIL PROTECTED]> wrote: > This is exactly what I need it. I'm wondering if "back_mc" property is > documented anywhere and if is there any possibility to be deprecated in the > future... "Deprecation" is for APIs. This is not API -- it's an internal variable. It may be

Re: [flexcoders] add / remove item in a Tile directly

2005-07-06 Thread Manish Jethani
On 7/6/05, superabe <[EMAIL PROTECTED]> wrote: > Is there any way to add a previously removed child back into a Tile without > changing the dataprovider? I don't think that's a wise thing to do, because it would interfere with the TileList's own item management functionality. If you've specifie

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-06 Thread Manish Jethani
On 7/6/05, Matthew Shirey <[EMAIL PROTECTED]> wrote: > I am using embeded fonts, but its the whole sub menu that is not scaling. > You can see the difference in the borders and the margins around the text. > It's really easy to see that the sub menus are not scaling at all when you > do a test w

Re: [flexcoders] checkbox in a repeater

2005-07-06 Thread Manish Jethani
On 7/7/05, Robert Brueckmann <[EMAIL PROTECTED]> wrote: > …problem is, I can't dynamically set the ID of the > checkbox and I can't seem to add any additional attributes to the checkbox > so I know what the schema's ID is associated with that checkbox… You can get the "repeaterIndex" of the check

Re: [flexcoders] Re: Printing whole lotta pages?

2005-07-06 Thread Manish Jethani
On 7/6/05, svktiilikainen <[EMAIL PROTECTED]> wrote: > Nihit, your code example works - it really is possible to print two > pages even if they are not on screen. Great, thanks! But how does > the code work, could you explain the logic a little? Where are the > resizeMask() etc methods coming from

[flexcoders] checkbox in a repeater

2005-07-06 Thread Robert Brueckmann
I have a repeater that’s generating a list of FormItems that simply contain a checkbox…so the label of the FormItem component is the name of some item the user has set up and the checkbox indicates yes or no for that item regarding some setting…when the user clicks on the checkbox, I want

Re: [flexcoders] bug of the minute: MenuBar, Scaling, and Sub Menus

2005-07-06 Thread Matthew Shirey
I am using embeded fonts, but its the whole sub menu that is not scaling.  You can see the difference in the borders and the margins around the text.  It's really easy to see that the sub menus are not scaling at all when you do a test where the menu has been scaled to 400%. M.On 6/30/05, Jeste

RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Tracy Spratt
It sounds seriously cool, and I, for one, will be upset if you fail to post it! Tracy   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Theodore E Patrick Sent: Wednesday, July 06, 2005 11:50 AM To: flexcoders@yahoogroups.com Subject: RE: [flex

Re: [flexcoders] embedded sounds

2005-07-06 Thread Tarik Ahmed
I try.. I try... :) the other way to do it is instead of doing the eval() stuff... bind an attribute of your model to your sound sample values:       Then:         function playSong()         {             var currentSound= songComboBox.selectedItem.value;             startSound(current

RE: [flexcoders] Is it possible to pass parameters to mxml and ge t them somehow in the client ?

2005-07-06 Thread Shlomi Cohen
thanks guys works like a charm   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt HornSent: Wednesday, July 06, 2005 17:47To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Is it possible to pass parameters to mxml and get them somehow in the client ?

RE: [flexcoders] considering a move to Flex . . .

2005-07-06 Thread Stacy Young
I’ve come from a similar background…having developed enterprise apps in flash ide with remoting etc. (coldfusion/java back ends) Flex is light years ahead for app development in my opinion. As for what you’ve outline…I don’t see anything there that can’t be replicated in flex. As for the

[flexcoders] considering a move to Flex . . .

2005-07-06 Thread chris.alvarado
Hello all, new to the flexcoders list, and sorry about the crosspost for anyone here that is also on the flashcoders list. . . . I have been working on a rather large application for the last year and a half. the application was built with a combination of Flash, Cold Fusion, and MS SQL server.

[flexcoders] add / remove item in a Tile directly

2005-07-06 Thread superabe
Hello List,   Is there any way to add a previously removed child back into a Tile without changing the dataprovider?   I have a Tile showing 100 objects which can be filtered and sorted.I am trying to avoid doing this by modifying the dataprovider because there is quite a visual delay when

RE: [flexcoders] Redirect to next page

2005-07-06 Thread Abdul Qabiz
Hari, As Sree said, in Flex we think application in terms of Views. In your case, user can submit the data and see the result in the same place. You can send the data using HTTPSerivce, servlet processes the data and returns the result in form of xml/name-value pairs etc. You can show that data

RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Theodore E Patrick
Abdul,   I have not been busier. Flex/Flash application use is growing big time.   I will be very interested to see Flexcoder reaction to our new product. If noone objects(?),  I would like love to announce the product Beta on Flexcoders.   I am not sure what the Flexcoder list p

[flexcoders] Re: Cairngorm on a Intranet

2005-07-06 Thread mackdoyle
João, Are you using Cairngorm 95 or 99? If using 95, read this post on how to add functionality that will allow you to unregister a ViewHelper: http://groups.yahoo.com/group/flexcoders/message/6148 . -Jason --- In flexcoders@yahoogroups.com, "joao_m_fernandes" <[EMAIL PROTECTED]> wrote: > Well I

RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Abdul Qabiz
Yeah XMLSocket is always a good option.   Ted, looks like you are doing kick-ass stuff ;)   -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Theodore E PatrickSent: Wednesday, July 06, 2005 8:52 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex

RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Theodore E Patrick
Actually I am working on one right now for my new company. I am using XMLSocket to connect to a locally running server combined with data pulled from remote webservices. It is very easy to integrate just about any feature you need as the local server can provide file system access and pro

[flexcoders] Re: Cairngorm on a Intranet

2005-07-06 Thread joao_m_fernandes
Well I'm currently using the 2 approach. I'm loading different applications in a shell when someone selects a node in a menubar. I destroy all shell children and then create the provided application. My first problem was where I should define the different servicesLocators since they can only be

RE: [flexcoders] Is it possible to pass parameters to mxml and get them somehow in the client ?

2005-07-06 Thread Matt Horn
Or more specifically, any query string parameters are accessible if you declare a global variable of the same name. If the request is: http://domain/app/main.mxml?showAll=true Then you could use it like this: var showAll:Boolean; if (showAll) { ... } else { ..

RE: [flexcoders] itemRenderer usage

2005-07-06 Thread ROUSSELIE David ROSI/SIFAC
> > On 7/5/05, ROUSSELIE David ROSI/SIFAC > <[EMAIL PROTECTED]> wrote: > > > How to create an itemRenderer class that set scaleX and > scaleY to the selected item in the list ? > > In the setValue function of your cell renderer, you can query for the > item index and compare with the selected it

Re: [flexcoders] Re: Mouse click on panel header

2005-07-06 Thread Valy Sivec
Hi Scott,   This is exactly what I need it. I'm wondering if "back_mc" property is documented anywhere and if is there any possibility to be deprecated in the future... Where did you find documentation about this kind things...   Thanks a lot for the example. ValyScott Barnes <[EMAIL PROTECTED

Re: [flexcoders] Is it possible to pass parameters to mxml and get them somehow in the client ?

2005-07-06 Thread Scott Barnes
Yes, what ever parameter you pass in, will be accessible by mx.core.Application.application.param eg: trace(mx.core.Application.application.showAll) // would have the result "true" On 7/6/05, Shlomi Cohen <[EMAIL PROTECTED]> wrote: > > > Hi > > i want to create a dynamic view that is

Re: [flexcoders] How far can be customized a tooltip

2005-07-06 Thread Scott Barnes
On 7/4/05, Laurent Bois <[EMAIL PROTECTED]> wrote: > Hello, > Initially, i thought tooltip was well adapted for this: it seems the tooltip > element can include only some text (with codes for carriage return, > tabulation, etc..), its behavior can be changed with CSS ( text > font-color-size-fam

[flexcoders] Is it possible to pass parameters to mxml and get them somehow in the client ?

2005-07-06 Thread Shlomi Cohen
Title: Mercury Email Signature Hi   i want to create a dynamic view that is displayed according to parameters from external system , to do something like http://domain/app/main.mxml?showAll=true   is it possible ?   thanks   Shlomi

Re: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Darron J. Schall
superabe wrote: > The app in question is a desktop app that serves up map images. > Central is not an option because the Flex appp needs to have its own > branded UI. > > The local connection approach is probably most suited to this case. > No one has mentioned XMLSocket yet. Embedding the

Re: [flexcoders] Re: Icons on Buttons, no alpha

2005-07-06 Thread Scott Barnes
Hi Stacy, >From what I can gather, It has to do with the icon (ie iconName) not having an enabled setting on the PNG itself ie: function refresh():Void { var offset:Boolean = getState(); if (enabled == false ) { viewIcon("dis

Re: [flexcoders] Redirect to next page

2005-07-06 Thread Harinath
Hi Sree, Thanks a lot for the information. I am trying to use Flex for the first time and I really dont understand the usage of Flex. I started running the examples given by Macromedia in my Tomcat 5.0. Please run through the code of the examples that I have used. Let me know where I went wrong. T

Re: [flexcoders] Re: Mouse click on panel header

2005-07-06 Thread Scott Barnes
You can also do this following: http://www.macromedia.com/2003/mxml"; creationComplete="onCreationComplete()"> On 7/6/05, Sam <[EMAIL PROTECTED]> wrote: > Panels h

Re: [flexcoders] How can I place custom components into custom components?

2005-07-06 Thread Scott Barnes
I take it you want to basically put "other" controls/containers inside pre-rolled components, but then allow "new" controls/containers to be added using your example: If that being the case, then ahah! is what i say... heh...(sugar high, it will pass) I've just posted a similiar solution

Re: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread superabe
Thanks for all the replies.   The app in question is a desktop app that serves up map images. Central is not an option because the Flex appp needs to have its own branded UI.   The local connection approach is probably most suited to this case.   superabe   - Original Message -

Re: [flexcoders] How can I place custom components into custom components?

2005-07-06 Thread Manish Jethani
On 7/5/05, ch_flex <[EMAIL PROTECTED]> wrote: > If I make a component in ActionScript, how can I later integrate it with > MXML? If it subclasses UIObject or any of its subclasses, it can be used in MXML. class MyComponent extends UIObject { ... } // in your MXML file -- Flexcoders Ma

Re: [flexcoders] Image component rescaling.

2005-07-06 Thread Manish Jethani
On 7/5/05, Omar Ramos <[EMAIL PROTECTED]> wrote: > Because there are times where the image won't be in the image tag and > in a movieclip and need to scale it there also. Okay, I'm not going to try to find out _why_ there are times when there's no Image component and only movie clips -- I assume

[flexcoders] Horizontal Form ?

2005-07-06 Thread jamiebadman
Hi, Is it possible to create a Form so that the items are displayed horizontally across the page rather than vertically ? Thanks, Jamie. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%4

RE: [flexcoders] Sort arrows in DataGrid

2005-07-06 Thread Shlomi Cohen
Title: RE: [flexcoders] Sort arrows in DataGrid Hi   sorry , i though there is a general problem that i missed here is the code..   ChangesGrid.mxml         ChangesGridViewHelper.as -  it does not matter where i placed the following code

Re: [flexcoders] embedded sounds

2005-07-06 Thread JesterXL
Whack... I so did not have that problem when I tested months ago. Thanks for attaching the example! - Original Message - From: "Tarik Ahmed" <[EMAIL PROTECTED]> To: Sent: Tuesday, July 05, 2005 6:46 PM Subject: Re: [flexcoders] embedded sounds For fun I thought I'd test this out. The

Re: [flexcoders] SpringBeanAdapter for Flex Flash Remoting

2005-07-06 Thread JesterXL
Some tie-in to Flex since Flex is a server-side compiler.  The server director and I were discussing how Spring works with DI, and I thought that'd be cool to implement in Flex/Flash via our own ServiceLocator/Services.  Looking at the bean.xml files, they looked really easy to parse with

Re: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread JesterXL
What kind of app do you want to talk to on the machine?   - Original Message - From: superabe To: flexcoders@yahoogroups.com Sent: Tuesday, July 05, 2005 6:48 PM Subject: [flexcoders] Flex & external desktop application communication Hello list,   I know Flex excels at communicat

Re: [flexcoders] Redirect to next page

2005-07-06 Thread Harinath
Hi How to forward the request to result page from struts action mappings. jsp1-->action-->jsp2(result)..But when i am trying, the result will be displyed but it is not going to next page(jsp2).Please help me -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcoders

RE: [flexcoders] Flex & external desktop application communication

2005-07-06 Thread Philippe Maegerman
What about embedding the Flex application in Macromedia Central?     Philippe Maegerman From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy SprattSent: mercredi 6 juillet 2005 3:13To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Flex & external desktop a

[flexcoders] How can I call to opener's function from popup window??

2005-07-06 Thread ssalbatore
i can send parameter to popupwindow, however How can I call to opener's function from popup window?? or send to parameter to Opener ? thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/fl

[flexcoders] Re: Printing whole lotta pages?

2005-07-06 Thread svktiilikainen
Thank you all for the answers. Clearly printing is not the most advanced and easy-to-use feature in Flex/Flash. Nihit, your code example works - it really is possible to print two pages even if they are not on screen. Great, thanks! But how does the code work, could you explain the logic a litt

[flexcoders] Handcursor on datagrid rollover with rollovercolors

2005-07-06 Thread rockmoyosa
Does anybody know how to show handcursor on rollover on a datagrid? I tried to use datagrid.onRollOver = function(){} which will show a hand but no rollovercolors. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-