[flexcoders] DataGrid is slow

2007-05-29 Thread Mikhail Shevchuk
When I populate DataGrid with large(actually not too large) amount of data with many columns, it works *very* slow on draging the scroll (CPU is pretty fast here). Is there any way to improve the situation ? -- A vivid and creative mind characterizes you.

Re: [flexcoders] take care of if(false), it crash compiler

2007-05-29 Thread Ralf Bokelberg
Hi iiley, i can reproduce it and passed it to the flex team. Cheers, Ralf. On 5/30/07, iiley <[EMAIL PROTECTED]> wrote: Hi list, For a nightmare of AsWing A3 crashes flex compiler solved, related pages here : http://www.aswing.org/?p=40 and http://www.aswing.org/?p=142 Then i did a test

RE: [flexcoders] Re: problems with storing XML in SharedObject

2007-05-29 Thread Dimitrios Gianninas
Yes my mistake, it does NOT save the object type in the LSO. Perhaps you can save the XML as a string do myxml.toString() and then read back the string to re-build the XML? ex,: var xml:XML = new XML( mystrfromLSO ); Dimitrios Gianninas Developer Optimal Payments Inc. __

[flexcoders] How to add a dateTime axis to horizontal axis with AS?

2007-05-29 Thread mocalocamm
I am trying to create my charts using AS instead of MXML like this: var c:ColumnChart= new ColumnChart(); c.dataProvider = chartData; c.showDataTips = "true"; c.percentWidth = 100; c.percentHeight = 100

[flexcoders] take care of if(false), it crash compiler

2007-05-29 Thread iiley
Hi list, For a nightmare of AsWing A3 crashes flex compiler solved, related pages here : http://www.aswing.org/?p=40 and http://www.aswing.org/?p=142 Then i did a test to prove some thing, how flex compiler crashes with a legit syntax, here is the result: If you use if(false) and in it with a i

RE: [flexcoders] TextInput vs. ENTER key.

2007-05-29 Thread Alex Harui
Listen for the "enter" event and set focus somewhere else. You can use focusManager.getNextFocusManagerComponent if you're not sure where to set focus. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Steve Kellogg Sent: Tuesday, May 29,

[flexcoders] Re: Object serialisation + SimpleXMLEncoder

2007-05-29 Thread brent_trx
Sorry for the double-post ... I actually have an example of this up online, if anyone wants to check it out. I use Darron Schall's ObjectTranslator to assist with strong-typing of deserialized responses. I've since adopted it to JSON which is handling pretty pimptasticly. http://booleanbetrayal.co

[flexcoders] Re: Object serialisation + SimpleXMLEncoder

2007-05-29 Thread brent_trx
--- In flexcoders@yahoogroups.com, "Marvin Froeder" <[EMAIL PROTECTED]> wrote: > > That works... > var node:XMLNode = coder.encodeValue(bean, new QName(), doc); > > 2 seconds after hour and the answer shows up. > > VELO > > On 5/29/07, Marvin Froeder <[EMAIL PROTECTED]> wrote: > > > > I had try

[flexcoders] Flash not detected by IE when running through wrapper html

2007-05-29 Thread Thind, Aman
Hi, I have flash player correctly installed on my machine. I can even double click on an .swf and see it play. But suddenly things stopped working for me for the situation when I invoke the swf through its html wrapper (by doing Run in FlexBuilder). I get the msg : Alternate HTML content sh

RE: [flexcoders] Flex HotFix 2 and Cairngorm 2.2

2007-05-29 Thread Matt Chotin
Yes, the classes that we moved from rpc.swc into fds.swc were only supported by FDS anyway. But yes, the fact that it turned out their were inadvertent dependencies does make us question it after the fact :-) Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC

RE: [flexcoders] Re: HotFix 2 for 2.01 and modules and uri's .

2007-05-29 Thread Peter Farland
I'll optimistically log this as something to be investigated for LCDS 2.5 Updater 1 where there is a chance we can improve this... the difference is that in the older code base, if the proxy was not being used, relative URLs made their way to the raw flash.net.URLRequest which means native player c

Re: [flexcoders] Re: HotFix 2 for 2.01 and modules and uri's .

2007-05-29 Thread Muzak
Have you tried: this.ws = new mx.rpc.soap.WebService(); this.ws.wsdl = "/services/myservice/myservice.wsdl"; this.ws.endpointURI = "/services/myservice/myService.php"; regards, Muzak - Original Message - From: "iilsley" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 30, 2007 3:13 AM Subj

[flexcoders] Re: Superimposing chart.

2007-05-29 Thread ivansebastiansurya
Hi everyone, I managed to do it just by adding a Line Series to the Area Chart. Thanks for those who've helped me. Next thing is, I need to draw the line graph as a dotted line. Can this be done? I.e. specify the style of the line chart to make it draw dotted line instead of a solid line? Many Th

[flexcoders] Re: Problem with loading xml file using HTTPService or URLLoader

2007-05-29 Thread Michael Labriola
Maciek, You may want to read up on crossdomain files. You should be able to google this term and find information. Here is a link to explore, but there are probably easier to understand resources. http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213 Mike --- In flexcoders@yahoog

[flexcoders] Re: How to get the target node in dragEnter()

2007-05-29 Thread dario.drome
Tracy, Possibly, if you implement dragEnter in a tree item renderer, then you can get the data's reference that you are looking for. Let me know if you have success. Regards.

[flexcoders] Re: HotFix 2 for 2.01 and modules and uri's .

2007-05-29 Thread iilsley
I'm using 'relative' paths because I dont necessarily know the 'root' url . The application could be installed under any 'path' . There should be an option for Modules as to what its URL to use , its or the application its being loaded into . This is a definate change of behavior in HotFix

[flexcoders] Re: examples of advanced datagrid functions (paging/filters)

2007-05-29 Thread dario.drome
Hi Derrick, FDS handles that issue very well (I'm not sure if you are willing to use Flex Data Services.) Also you will find a very illustrative set of articles from Matt Chotin blogs: http://weblogs.macromedia.com/mchotin/archives/2004/03/large_data_sets. cfm See if this helps Regards

RE: [flexcoders] Re: Problem with loading xml file using HTTPService or URLLoader

2007-05-29 Thread Tracy Spratt
Yes, this is almost certainly a security issue. When you run under Flexbuilder, you are operating in a special environment that bypasses the normal flash Player security constraints. In a real production environment, where the data providing url is in a different domain than the domain that

[flexcoders] Re: Problem with loading xml file using HTTPService or URLLoader

2007-05-29 Thread dario.drome
Hi, Though it sounds to a tipical "flash security enforcemente problem", Could you be more specific? have you got any error? Regards

Re: [flexcoders] Object serialisation + SimpleXMLEncoder

2007-05-29 Thread Marvin Froeder
That works... var node:XMLNode = coder.encodeValue(bean, new QName(), doc); 2 seconds after hour and the answer shows up. VELO On 5/29/07, Marvin Froeder <[EMAIL PROTECTED]> wrote: I had try too... No sucess... any knows the way? VELO On 2/4/07, Aly Sidi <[EMAIL PROTECTED]> wrote: > > He

[flexcoders] Re: Defining a dynamic UI

2007-05-29 Thread dario.drome
Hi, Probably you want something like this: https://www.adobe.com/livedocs/flex/2/langref/mx/core/UIComponentDescri ptor.html#UIComponentDescriptor() Let me know if this is your way Regards.

Re: [flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Muzak
mmm, no idea really.. here it just works and always has.. Maybe try removing it and reinstalling (if you haven't already): http://www.cfeclipse.org/index.cfm?event=page&page=download http://www.cfeclipse.org/update regards, Muzak - Original Message - From: "Derrick Anderson" <[EMAIL PRO

Re: [flexcoders] Object serialisation + SimpleXMLEncoder

2007-05-29 Thread Marvin Froeder
I had try too... No sucess... any knows the way? VELO On 2/4/07, Aly Sidi <[EMAIL PROTECTED]> wrote: Hey Lachlan, did you ever get this to work?..I am trying to do the same thing... cheers -aly On 8/17/06, Lachlan Cotter < [EMAIL PROTECTED]> wrote: > > Hi List, > > > I want to be able to

[flexcoders] TextInput vs. ENTER key.

2007-05-29 Thread Steve Kellogg
Hello, I have a number of TextInput controls that I'm using with Validators (phoneNumber, email, etc). It all works correctly, except that I want an ENTER (or RETURN) to bump the user out of the field (therefore triggering the validator). Any ideas how to do this? Will RESTRICT allow

RE: [flexcoders] HotFix 2 for 2.01 and modules and uri's .

2007-05-29 Thread Peter Farland
The new implementation in Hotfix 2 now handles WSDL imports and includes and XSD imports and needs to be able to resolve relative imports/includes to the parent document's location, so the WSDLLoader has to resolve relative urls. By default this is based on what the SystemManager's loaderInfo.url h

[flexcoders] Re: Defining a dynamic UI

2007-05-29 Thread iilsley
How about ( and this maybe a complete noobish way :) ) using the visible attribute .. You then also have to take into account 'layout' probably .. -- from LiveDocs --- Preventing layout of hidden controls By default, Flex lays out and reserves space for all components, including hidden compone

[flexcoders] Alternate IDE to Flex Builder

2007-05-29 Thread [EMAIL PROTECTED]
Any other alternate IDE to Flex Buider ? IDE with tags only., and this properties,methods,events and classes. without visual design. Pablo Dario Ingelhorn Ingelhorn Sistemas (6303) Toay - La Pampa - Argentina ___

[flexcoders] Problem with loading xml file using HTTPService or URLLoader

2007-05-29 Thread Maciek Malaszuk
Hi, I'm struggling with strange problem. I'm trying to load XML file in my code which containst data about images but thats nor really relevant. Lets assume i have remote server where i run my code (domain x.net). When i point both httpservice or urlloader to http://mydomain.net/ photos.xm

[flexcoders] HotFix 2 for 2.01 and modules and uri's .

2007-05-29 Thread iilsley
I have some modules that use local webservices . The URL's for the webservices are defined as 'relative' paths. eg: this.ws = new mx.rpc.soap.WebService(); this.ws.wsdl = "services/myservice/myservice.wsdl"; this.ws.endpointURI = "services/myservice/myService.php"; After installing the hotfix

RE: [flexcoders] Re: Flex 2.0.1 Hotfix 2 and RPCError on WebService send()

2007-05-29 Thread Peter Farland
A completely new implementation of WebService is in this release - it attempts to follow XML Schema rules much more strictly and provides better support for document/literal including wrapped style. We'd very much like to see your WSDL as a reproducible case (preferably a small amount of AS3/MXM

Re: [flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Derrick Anderson
nope, if i look in 'Manage Configuration' CFEclipse is disabled- if you enable it and restart the workbench- it is disabled again. rubbish... - Original Message From: Muzak <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, May 29, 2007 6:50:05 PM Subject: Re: [flexcoders

[flexcoders] Re: Flex 2.0.1 Hotfix 2 and RPCError on WebService send()

2007-05-29 Thread Fabián Brussa
Apparently when we invoked to webservice lose parameters, all the parameters do not arrive at the webservices. Also it happens that the object that gives back webservice does not arrive complete at Flex. I solved it overwriten the file rpc.swc with the previous version. Somebody knows if ch

[flexcoders] Re: Defining a dynamic UI

2007-05-29 Thread Michael Labriola
To add to what Tracy was saying.. Let's say you have a component in the comps directory called MyComp. It could be in MXML or in Actionscript, it doesn't matter. First you would need to import that component definition by saying import comps.MyComp; Then, at anytime, for instance in response

Re: [flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Muzak
At the top right, click the "+ sign", select "other", in the "Select Perspective" window, select CFEclipse. Does that work? regards, Muzak - Original Message - From: "Derrick Anderson" <[EMAIL PROTECTED]> To: Sent: Tuesday, May 29, 2007 9:38 PM Subject: Re: [flexcoders] Error trying to

RE: [flexcoders] Defining a dynamic UI

2007-05-29 Thread Tracy Spratt
You understand that if you use navigation containers, like viewStack and TabNavigator, that much of this is done for you automatically? Also, separate mxml files is a fine way to make re-useable components. Their size is not significant. Make them generic so that you can set properties and eve

[flexcoders] Re: Client IP Address

2007-05-29 Thread lanlin998
It worked !! Thanks Jamal for such a prompt and effective response. Credit to Rod Hilton for posting the solution as well.

[flexcoders] Defining a dynamic UI

2007-05-29 Thread gary_mangum
Is it possible to "pre-define" a set of MXML components but not create them or add them to a Container in the application until a later time. In other words, I want to define some components, complete with properties, events, etc. that will not be part of my UI until I dynamically add them as the

[flexcoders] examples of advanced datagrid functions (paging/filters)

2007-05-29 Thread Derrick Anderson
Hi, does anybody know where i can find a good example of a datagrid that does recordset paging (where each page makes a request to the server to lazy load the data). i'm also looking for a nifty way of handling search filters as well. i'm googling but coming up blank. thanks in advance. d.

RE: [flexcoders] Re: Showing item roll over color in a data grid manually

2007-05-29 Thread Alex Harui
I would consider customizing the renderers to show a different backgroundColor, not necessarily the highlightColor. There's an example of a lightweight background renderer on my blog (blogs.adobe.com/aharui) which you would tie into some logic as to whether that item is the current chart item

Re: {Disarmed} RE: {Disarmed} RE: [flexcoders] Flickr - Issue with LoaderContext

2007-05-29 Thread Jurgen Beck
All true. Seeing that there really is no alternative other than using a proxy server, I implemented a solution that seems to be working for this specific application. I ended up using at32.com ReverseProxy (http://www.at32.com), which is for Windows. As long as the reverse proxy is bound to th

RE: [flexcoders] Re: Superimposing chart.

2007-05-29 Thread Ely Greenfield
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sandeep Malik Sent: Tuesday, May 29, 2007 12:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Superimposing chart.

[flexcoders] FDS 30 Minute Testdrive Project - problems creating a new project

2007-05-29 Thread annespg
I'm trying to use the FDS 30 Minute TestDrive sample apps inside Flex Builder. I downloaded the test drive and all the samples work just dandy fine, and I can view the source etc. So I wanted to load some of the sample apps into Flex Builder so that I could modify and play with them with the

Re: [flexcoders] Re: Superimposing chart.

2007-05-29 Thread Brendan Meutzner
If you're talking about series data that is using the same axis values, you can just add multiple AreaSeries and LineSeries elements to a single CartesianChart instance. If the LineSeries uses a different scale, just add it to the secondVerticalAxis instance using the secondDataProvider as it's v

Re: [flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Derrick Anderson
i installed cfeclipse on FB standalone, the install seemed to go fine- but something is keeping it from loading- i do not see the cfeclipse perspective - Original Message From: Muzak <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, May 29, 2007 3:14:14 PM Subject: Re: [f

Re: [flexcoders] Re: Client IP Address

2007-05-29 Thread Jamal Romero
Hi, I came across this problem using Axis. I remember that org.apache.axis.MessageContext holds all the information related to the application context. Just a small google search I'v found this page: http://www.nomachetejuggling.com/2006/01/31/getting-remote-ip-address-in-axis/ which explains the r

[flexcoders] Weird behavior with URLStream

2007-05-29 Thread Sandeep Malik
Guys, We're seeing something weird. We're streaming a lot of data from server. This data comes in three chunks, each of size ~ 4 M. We fire all the three requests simultaneously with three different URLStreams. However, it seems like Flash Player only loads at max 2 requests at a given point o

Re: [flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Muzak
Yup, have been since I first got FB (when it was released). Never had any problems with it. Now running FB 2.01 standalone and CFEclipse 1.3.1.4 I do not have the CF extensions for FB installed though. regards, Muzak - Original Message - From: "Ariel Jakobovits" <[EMAIL PROTECTED]> To:

[flexcoders] Re: Superimposing chart.

2007-05-29 Thread Sandeep Malik
Not sure, but try to use one of the following: 1. Use "annotationElements" of area chart and put line series as annotation element. 2. Use "backgroundElements" of line series and put area chart as background element. PS: Suggestion 2 might interfere with the grid lines of line series. Regards,

[flexcoders] Re: Showing item roll over color in a data grid manually

2007-05-29 Thread Sandeep Malik
Hi there, Thanks a lot for your code snippet and thanks for your time! However, I wanted to have a "itemRollOver" color on the data grid. Setting of selectedIndex on data grid sets the "selectionColor" and may change certain other things as "selectedIndex" is a bindable property. Is there any

Re: [flexcoders] Re: Client IP Address

2007-05-29 Thread Paul deCoursey
I had a similar setup. What I did was added an optional onscreen keyboard on the login page. and if you use a certain login id then it sets a localSharedObject that is a authentication key that associates the client as a kiosk from that point on. Then when the app is loaded it checks for the

{Disarmed} Re: [flexcoders] Flex on Mac

2007-05-29 Thread fuad_kamal
I guess we must be running on diferent platforms, versions, or something. In flexbuilder (not the eclipse plug-in) on Mac, there is no "new window" option under File, and File->New pulls up a secondary menu (new MXML, etc.), of which new window is not an option. --- In flexcoders@yahoogroups.com

RE: [flexcoders] Re: Client IP Address

2007-05-29 Thread Tracy Spratt
I do exactly this, but using a .net backend. There I use: Request.ServerVariables("remote_addr") To get the client IP address. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guillermo Villasana Sent: Tuesday, May 29, 2007 2:22 PM

Re: [flexcoders] Best way to convert PNG to for usable in Flex

2007-05-29 Thread Impudent1
> We are working on a project where we need to be able to work with > large size > PNG files using transparency. What is the best way to convert these > transparent PNG files so that they can be properly displayed and > worked with > in Flash? Why not use Bridge from CS3?

[flexcoders] Two was chat

2007-05-29 Thread Christopher Olsen
Anyone here working on a two way chat application? -Christopher

[flexcoders] FileSize: modules/rsl

2007-05-29 Thread mapper2255
Good Morning, I am trying to move from the newbie class to a moderately capable Flex Programmer. I would like to make some income as I do this. I have decided to use the Flex Explorer (with proper credits of course) structure as a learning platform. For my purposes Flex Explorer is too large

[flexcoders] Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Ariel Jakobovits
is anyone running cfeclipse in flex builder standalone? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: h

Re: [flexcoders] Re: Client IP Address

2007-05-29 Thread Guillermo Villasana
Lan, why don't you wrap the flex application in a simple .jsp or .php, and let that file take care of the IP using a session or something of the sort? Best regards Terius lanlin998 wrote: > > Adam, > > Thanks for the suggestion. You are exactly right about the > anonymous client login. However,

[flexcoders] Re: Client IP Address

2007-05-29 Thread lanlin998
Adam, Thanks for the suggestion. You are exactly right about the anonymous client login. However, we don't just have anonymous users. Here is the goal: We have two types of clients: one from a unique touch-screen panel mounted on the wall that stays in a fixed location. Since there is no

[flexcoders] Re: [cairngorm-devel] Flex HotFix 2 and Cairngorm 2.2

2007-05-29 Thread kyle.vanvranken
It's really not that big of a deal. I mean extracting a zip is not that hard I was just saying in an "ideal" situation using the updater would be nice. I suppose that if I had to choose between waiting longer for hotfixes or having to manual patch I most defiantly choose manual patching! :) Also a

RE: [flexcoders] show value in combobox

2007-05-29 Thread Alex Harui
You correct. A reference is required, although for straight strings, all strings of the same value refer to the same "object". From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, May 29, 2007 10:36 AM To: flexcod

RE: [flexcoders] How to get the target node in dragEnter()

2007-05-29 Thread Tracy Spratt
"...don't think the default tree behavior is to set selectionItem on dragEnter..." No, it is not, but that is the technique all the examples I see use to determine the target tree node. But that technique changes the dragSource. I am going to use a different UI for my needs this time. Trac

RE: [flexcoders] Re: Datagrid with bound dataProvider not updating.

2007-05-29 Thread Tracy Spratt
I think Alex called "invalidateDisplayList" a "big hammer". The best solution to this is to never use Array, or XMLList for dynamic dataProviders, since their methods do not dispatch the necessary events to update the UI. Instead, wrap Array in ArrayCollection, and CMLList in XMLListCollection

RE: [flexcoders] show value in combobox

2007-05-29 Thread Tracy Spratt
As I understand it, selectedItem requires a *reference* to the item you want to select. It does not do a search of the dataProvider item properties (how could it know which properties to use?) to find a match for a value. I think you will need to use the iteration logic. Tracy

RE: [flexcoders] Re: Converting the output of ObjectUtil.copy() to custom type

2007-05-29 Thread Peter Farland
You can use this technique for typed objects too, you just need to ensure that you have registered a remote alias for the class. This is because ByteArray serialization is really making use of a player feature that is intended for sending AS3 data to remote agents. import com.something.FooObject;

Re: [flexcoders] Re: Converting the output of ObjectUtil.copy() to custom type

2007-05-29 Thread Troy Gilbert
All of these techniques copy generic objects (as in property containers, name value pairs). Typed objects do not function in exactly the same way. As a result, you can't clone them generically. Troy. On 5/26/07, Lucas Pereira <[EMAIL PROTECTED]> wrote: Hi. Right now I'm having the same prob

[flexcoders] passing an ArrayCollection to a CFC

2007-05-29 Thread mark_watts01
does anybody have any examples of passing an ArrayCollection to a ColdFusion CFC and having the CFC do something with it? I cant seem to get the syntax correct maybe it is impossible?

[flexcoders] Syntax highlighting library in ActionScript 3

2007-05-29 Thread Robert Cadena
Hi everyone, I am releasing the first version of my syntax highlighting library written in actionscript 3. I use this library in the chatrooms in my SearchCoders/Dashboard application to parse as3 code in the chatrooms. Here's an example: http://www.machine501.com/2007/05/29/syntax

RE: [flexcoders] Re: rotation and scrollbar generation in canvas and rotation and drag and drop

2007-05-29 Thread Ely Greenfield
Right on all counts Jason. Our layout system isn't really written to handle rotation in a deeply integrated manner. It's something we'd like to include, but most use cases don't really require rotation, so it's a bit lower down on the priority list. As Alex points out, doing it incorrec

RE: [flexcoders] Change default loader, etc

2007-05-29 Thread Alex Harui
Depends on how you set your changes and are building the app. FlexBuilder should try to set the background of the HTML wrapper for you. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dnk Sent: Monday, May 28, 2007 9:42 PM To: flexcoders

RE: [flexcoders] Re: Datagrid with bound dataProvider not updating.

2007-05-29 Thread Alex Harui
We'll wrap the array in an ArrayCollection, so call dataGrid.dataProvider.refresh(). Or dataGrid.invalidateList() However, neither approach may work until you refactor to modify the ArrayCollection and not the array. Arrays do not have change notifications so we can't see what is changing.

RE: [flexcoders] DataGrid and complex types

2007-05-29 Thread Alex Harui
We'll probably just keep pointing people to the example on my blog. There dataField is checked quite often during initial rendering and scrolling and we don't want to do any extra thinking looking for dot-paths unless you know you're going to need it. From:

RE: [flexcoders] scrollToIndex with TileList

2007-05-29 Thread Alex Harui
Can you post an example? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jthieret Sent: Monday, May 28, 2007 3:27 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] scrollToIndex with TileList Can't get this to work. The call re

RE: [flexcoders] PopUpManager

2007-05-29 Thread Alex Harui
Check out how we wrote mx.controls.Alert. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kgnytia Sent: Tuesday, May 29, 2007 1:33 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] PopUpManager Hi all! Im trying to open a "cli

Re: [flexcoders] scrollToIndex with TileList

2007-05-29 Thread Ben Marchbanks
As an alternative method could you use myTileList.selectedIndex = (myTileList.dataProvider.length()-1) jthieret wrote: > Can't get this to work. The call returns true, saying the list was > scrolled, but it hasn't. I have read everything I can find on > problems with scrollToIndex in the for

RE: [flexcoders] Re: rotation and scrollbar generation in canvas and rotation and drag and drop

2007-05-29 Thread Alex Harui
It's a bunch of work and can hurt performance for all of the containers to handle rotated objects in layout so we simply haven't done it yet. You should be able to get around it by subclassing though. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

RE: [flexcoders] ComboBox ItemRenderer Issues

2007-05-29 Thread Alex Harui
Itemrenderers are not used in the text portion ComboBox itself, just the dropdown. You can use labelFunction to change what the text portion displays or subclass. Check out the Icons In ComboBox example on my blog (blogs.adobe.com/aharui) From: flexcoders@yah

Re: [flexcoders] Access a viewstack

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, Giro wrote: > But for me is strange that flex dont have a more easy solution. The thing about Flex is that it doesn't force any one way of doing things. -- Tom Chiverton Helping to professionally monetize cross-media systems on: http://thefalken.livejournal.com *

RE: [flexcoders] Access a viewstack

2007-05-29 Thread Giro
I solve it using this: http://www.nielsbruin.nl/flex_examples/modelexample/ModelExample.html But for me is strange that flex dont have a more easy solution. Giro. -Mensaje original- De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] En nombre de Tom Chiverton Enviado el: martes,

Re: [flexcoders] Access a viewstack

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, Giro wrote: > How can I do it? Either give your component a function call back (onClick ?) so it can fire code in the parent directly when stuff happens, refer to the view via parent., or investigate something like a ModelLocator. -- Tom Chiverton Helping to ambassador

[flexcoders] Access a viewstack

2007-05-29 Thread Giro
I have a viewstack on my main application. I have two views, in one of this view I have a component. I another I have a simple panel. When I push a button inside the component, I want to change main viewstack, but the problem is that I can't access the main viewstack ID from my component. Ho

Re: [flexcoders] Checking if an Object has as property/element

2007-05-29 Thread Troy Gilbert
You're absolutely right, and in fact I got bit by this this weekend... we have a bunch of object serialization code that uses that idiom of "if ( xml.myTag)" and it broke this weekend when we fed it XML docs that lacked tags! Troy. On 5/25/07, Daniel Freiman <[EMAIL PROTECTED]> wrote: The s

Re: [flexcoders] Re: Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, barry.beattie wrote: > how come othere eclipse plug-ins can allow you to select code and push > it around with the mouse (eg: cfeclipse) but not flexbuilder? It's a feature of CFE and/or Eclipse 3.3. FlexBuilder is built on Eclipse 3.1, so doesn't have it unless the plugin

Re: [flexcoders] Retrieving saved DataGrid columns array from local SharedObject.

2007-05-29 Thread jake247
Hmmm ... I just tried your scenario by changing the width of a column that you have to get to using the horizontal scroll bar (our grid is about 25 columns). I then saved the grid settings (we trigger it via a right click and a context menu selection), close the app, and restart it. The new wi

RE: [flexcoders] Re: compiling java classes for flex data services

2007-05-29 Thread Peter Farland
Did you add flex-messaging.jar and flex-messaging-common.jar to your classpath when compiling? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mayur Bais Sent: Monday, May 28, 2007 1:14 AM To: flexcoders@yahoogroups.com Subject: Re: [flex

RE: [flexcoders] How to access last node atributes with e4x?

2007-05-29 Thread Peter Farland
You can get the length via XMLList.length() so just substract 1 and you'll have the last position. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mocalocamm Sent: Monday, May 28, 2007 8:22 AM To: flexcoders@yahoogroups.com Subject: [flexco

RE: [flexcoders] RemoteClass

2007-05-29 Thread Peter Farland
Can you show us the code where you import com.beans.Sale and show how it is actually referenced in your code so a compile time dependency exists on the class and thus ensures it is linked into the SWF? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

[flexcoders] Re: rotation and scrollbar generation in canvas and rotation and drag and drop

2007-05-29 Thread Jason
I must confess I was really surprised when I rotated a text object and re-positioned. And discovered scrollbars appearing because although the rotated objects were placed on the canvas. The original positions were what the system used for determining the necessity of scrollbars. This definitely se

[flexcoders] Cairngorm (server) error handling pattern(s)

2007-05-29 Thread pgp.coppens
Hello, I was wondering whether anyone has any guidance on how to deal with server/service errors, including, but not limited to field validation errors. Something like what is explained in http://onrails.org/articles/2007/03/06/mapping-rails-errors-to-flex-fields but then as a natural Cairngorm a

[flexcoders] Re: Error trying to load CFEclipse plugin into FlexBuilder standalone

2007-05-29 Thread barry.beattie
how come othere eclipse plug-ins can allow you to select code and push it around with the mouse (eg: cfeclipse) but not flexbuilder?

Re: [flexcoders] Barcode scanning with pda (MC50 for instance)

2007-05-29 Thread Clint Modien
Sounds like a fun little project... what programming language were you thinking of using for interfacing with the Symbol scanner? I'm guessing you don't care about web security as this sounds like it's a local application so you'll be able to create a socket connection to a program listening on s

[flexcoders] Re: Creating live streaming video player in flex ,something like youtube

2007-05-29 Thread u4zoran2002
I hope you got the reply to this message and my explanation of what i need to do. I must have video player created in flex and i should use it as a client on youtube.com to watch some random videos. My professor said that the player created in flex should be able to open random video from youtube.c

[flexcoders] PopUpManager

2007-05-29 Thread kgnytia
Hi all! Im trying to open a "client form" pop up from another form. This is the code im using in the parent. public var pop : Client; /*this is the class that is to be created for the popup: Client.mxml*/ private function selectClient() : void{ pop = PopUpManag

[flexcoders] scrollToIndex with TileList

2007-05-29 Thread jthieret
Can't get this to work. The call returns true, saying the list was scrolled, but it hasn't. I have read everything I can find on problems with scrollToIndex in the forums and have tried validateNow(). Nothing works. Anyone else have this problem? Anyone found the fix? The tilelist has 8 rows

Re: [flexcoders] Retrieving saved DataGrid columns array from local SharedObject.

2007-05-29 Thread Ian M. Jones
Just to follow up... I installed hot fix 2 yesterday, which cleared up my problem with setting the width of non-visible columns (i.e. scrolled off to right in this case). So, thank you jake247, your code is working very well for me. Regards, Ian IMiJ

[flexcoders] Re: Creating live streaming video player in flex ,something like youtube

2007-05-29 Thread u4zoran2002
Hello G, thanks for your help, i had discussion with my professor and he told me that what i need to do is just the video player like client and it doesnt need to have any videos inside, only the player. Like for example i go to www.youtube.com and i watch the videos(videos included in youtube dire

Re: [flexcoders] DataGrid and complex types

2007-05-29 Thread André Rodrigues Pena
Of course this helped Andrea. Thanks. I think Adobe should think of allowing the dataField attribute to work with properties of Objects On 5/27/07, Andrea Santambrogio <[EMAIL PROTECTED]> wrote: On 27/05/2007, at 21:57, André Rodrigues Pena wrote: Although when I try to populate de DataGrid,

[flexcoders] Change default loader, etc

2007-05-29 Thread dnk
Hi there, I am working on my first flex app, and have set some color changes, etc for the background and other things. Now for some reason when loading, the background is the default color (as is the loader bar), then changes over. Where can I seet this to match the app? Regards, DNK

Re: [flexcoders] Please help!! Reduce alpha value of a color in a bitmap image?

2007-05-29 Thread Johannes Nel
loop, getPixel() setPixel32() On 5/28/07, arpan srivastava <[EMAIL PROTECTED]> wrote: Hi all, I am facing a lot of problem with bitmap image. Can anyone tell me a filter with which i can reduce the alpha value of a particular color. e.g. suppse i have a flag of Japan in which there is a

RE: [flexcoders] DataGrid and complex types

2007-05-29 Thread Tracy Spratt
labelfunction is how I would do it. But note: "custom label function for each column" Since you have the entire item Object and know which column is being processed, a single labelFunction will work for multiple columns. Tracy From: flexcoders@yahoogr

RE: [flexcoders] DataGrid and complex types

2007-05-29 Thread Alex Harui
There's also an example of using custom DataGridColumns on by blog (blogs.adobe.com/aharui) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andrea Santambrogio Sent: Sunday, May 27, 2007 5:33 PM To: flexcoders@yahoogroups.com Subject:

  1   2   >