Re: [flexcoders] FlexManiacs 2007 Conference - 90% full

2007-04-24 Thread Ed Capistrano
Some other members here cant go there so please do share with us here using youtube, googlevideo or a downloadable vid if its fine. Thanks Ed proud happy member --- flexcoders@yahoogroups.com [EMAIL PROTECTED] wrote: This may be your last chance to register for the FlexManiacs 2007 conference,

[flexcoders] Re: Blog sites done in Flex

2007-04-24 Thread one786786
Honestly, I think Flex would be overkill for a regular blog system. Is there anything particular that you wish to achieve? --- In flexcoders@yahoogroups.com, mapper2255 [EMAIL PROTECTED] wrote: Hello, Any one seen a good blogging site lately that was done in Flex? Thanks.

[flexcoders] Custom Data Descriptor

2007-04-24 Thread achegedus
I'm trying to use a specific XML fill to fill a tree and I'm assuming I need to use a custom data descriptor, but i can't figure out how to do that. Does anyone know of any samples? or could point me in the right direction? the xml looks like this: result success=True expired=False Places row

[flexcoders] Re: submenu can't show completely

2007-04-24 Thread kkinaru
thanks Manish, your idea sounds well, [CODE] var container_bounds: Rectangle = this.getBounds(this); var menu_bounds: Rectangle = event.menu.getBounds(this); if (!container_bounds.containsRect(menu_bounds)){ //MOVE UP SUBMENU } [/CODE] event.menu gives me the submenu, correct, but

Re: [flexcoders] Re: submenu can't show completely

2007-04-24 Thread Roman Protsiuk
Never played around with getBounds/getRect methods and the mechanism is still a little bit vague for me but I though maybe you should choose another targetCoordinateSpace. Maybe in your case it should be something like Application.application. R. On 4/24/07, kkinaru [EMAIL PROTECTED] wrote:

RE: REPSOST: [flexcoders] validating multiple fields

2007-04-24 Thread Kenneth Sutherland
Cheers that's sort of how I've done it, but it just seems a bit much to have (in my case) 10 separate validators when if I'm using a model I should only need one custom validator. If you follow the livedocs example it would seem ridicules if you can validate multiple fields using one validator

[flexcoders] NetConnection error

2007-04-24 Thread arokyzxc
hello all i wrote codes to streaming flv from fms,but i got the connection error. here is my connection code: public function connection():void{ var video :Video = new Video(160,120); var nc :NetConnection = new NetConnection();

[flexcoders] Multiple Modules Best Practices

2007-04-24 Thread kyle.vanvranken
So after struggling with a memory leak pertaining to the loading of multiple modules and references hanging about after unloading said modules I am curious how others are dealing with the situation. I know there must be others out there loading up multiple modules in widget-like fashion. The

[flexcoders] DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
Is there a way I can listen for a change in a specific column's fields and analyze the changed field? I was thinking about creating an Item Renderer and firing an event from there, but I don't really want to lose the default editing behavior of the field. The field's data is bound XML and I

RE: [flexcoders] Re: Blog sites done in Flex

2007-04-24 Thread Benoit Hediard
Indeed, Flex might not be appropriate for a blog front-end, since it has strong html display (and search engine indexing) limitations. But as a back-end, it might have some advantages. On our plate-form (www.affinitiz.com), we use : - an HTML-based front-end for the public pages

Re: [flexcoders] DataGrid: Field Change Event?

2007-04-24 Thread Manish Jethani
You might be looking for the itemEditEnd event. On 4/24/07, Troy A. Binford [EMAIL PROTECTED] wrote: Is there a way I can listen for a change in a specific column's fields and analyze the changed field? I was thinking about creating an Item Renderer and firing an event from there, but I

Re: [flexcoders] NetConnection error

2007-04-24 Thread Manish Jethani
Well, first you want the connection to succeed, only then you can play the video. Listen for the status event on the NetConnection object and start playing the video in the event handler. See the example here: http://livedocs.adobe.com/flex/2/langref/flash/net/NetConnection.html On 4/24/07,

Re: [flexcoders] Re: submenu can't show completely

2007-04-24 Thread Manish Jethani
If I'm not wrong, menu objects are directly parented by the system manager. You can verify this by trace()'ing menu.parent. You want to use that parent object with localToGlobal(). Let me know if that works. On 4/24/07, kkinaru [EMAIL PROTECTED] wrote: thanks Manish, your idea sounds well,

[flexcoders] Re: Getting progress events on Socket *write* (not read)

2007-04-24 Thread Tim
That's a workaround, but you can't always write your own protocol. And, in this case, I can't (talking to Amazon SE) --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: If flush() is asynchronous, and there's no acknowledgement when the data has been sent (which is

[flexcoders] Re: How to access Variable in Module from sub-component

2007-04-24 Thread Troy A. Binford
If I get your problem straight, you have an App that loads a module. Then that module loads subcomponents, and you want to access a variable that belongs to the module. Have you tried parentDocument.varname? --- In flexcoders@yahoogroups.com, boy_trike [EMAIL PROTECTED] wrote: My Application

RE: [flexcoders] Ecplise Out Of Memory Errors

2007-04-24 Thread Peter
I can't believe you are getting it with 1300! Well.unfortunately, I am getting it (about a dozen times a day). At the same time the VM size of the javaw executable never comes close to this 1300Mb. I am clueless and frustrated but not a lot of people seem to run into the same issue so I must

[flexcoders] Re: ListBase ScrollVertically error #1010

2007-04-24 Thread confined_to_death666
Hey. Thnx for thinking allong and comming up with some possible solutions. I tried those but it doesnt fix my error. Im at a point now where im thinking on rewriting my app so that it will not use the list. Perhaps there are some other ways of fixing it.

Re: [flexcoders] BoxDivider docs?

2007-04-24 Thread Douglas Knudsen
aha! thanks for kicking me, I was so focused on digging for the docs I missed this. On 4/23/07, Daniel Freiman [EMAIL PROTECTED] wrote: It's not in the docs. It has the tag [ExcludeClass] which means that the class will not be visible to FlexBuilder's functions, such Content Assist and it

Re: [flexcoders] Ecplise Out Of Memory Errors

2007-04-24 Thread Douglas Knudsen
I get this too when using all kinds of plugins and perspectives, running the Tomcat plugin adds to this too. Besides raising the memory settings try: 1) close all perspectives not currently in use. there can be only one! hehe 2) window preferences General and check show heap status. This

RE: [flexcoders] Re: Okay, I know this is possible...DataGrid to Tree

2007-04-24 Thread Stephen Gilson
While it is not exactly what you want, there is an example with runnable code in the updated Drag and Drop doc on the Flex Doc Blog that shows how to drag from a List to a DataGrid. It requires that you modify the dragged data as part of the drop to make it compatible with the DataGrid.

RE: [flexcoders] Sliding HDividedBox

2007-04-24 Thread Jason Hawryluk
The below will get you well on your way. http://flexibleexperiments.wordpress.com/2007/01/18/extending-the-flex-20-di videdbox/ cheers jason -Message d'origine- De : flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] la part de Flexing... Envoye : lundi 23 avril 2007 18:22 A

[flexcoders] Re: Tile Extra Space

2007-04-24 Thread Alex
I'm having exactly the same problem. The Tile component grows taller than expected. It seems to allocate height for an extra row when there's no need to do so :S Did you already find a solution to this? --- In flexcoders@yahoogroups.com, joshua gatcke [EMAIL PROTECTED] wrote: I am trying to

[flexcoders] CheckBox in DataGrid Issue

2007-04-24 Thread Romin Irani
I have a XMLListCollection and I am using DataGrid to show all the records of the collection. Inside DataGrid, I need to show a checkbox using itemRenderer for one of the XML elements. The documentation states that Checkbox works with boolean value BUT in my source XML the boolean value is

RE: [flexcoders] Re: Blog sites done in Flex

2007-04-24 Thread Teddy Setiawan
Peter Ent have a wonderfull Flex blog , and of course you can see the source , full source , including the PHP filehttp://www.keaura.com/blog/regardsTeddyTo: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Mon, 23 Apr 2007 21:36:54 +Subject: [flexcoders] Re: Blog sites done in Flex

Re: [flexcoders] Re: IFrame problem

2007-04-24 Thread dorkie dork from dorktown
What is it doing? On 4/23/07, manfred.maierhofer [EMAIL PROTECTED] wrote: Thanks for the help and now I got it working in IE, but in Mozilla Firefox 2.0.0.3 it doens't show the iframe properly. Are there any known problems with this browser and the IFrame component? Thanks, Mane

RE: [flexcoders] Testing if a datatyped variable is not set yet

2007-04-24 Thread Gordon Smith
I see nothing wrong with what you're doing. You can certainly use == to compare a var typed as some class against null, so I suspect that the error is caused by something else. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Testing if a datatyped variable is not set yet

2007-04-24 Thread khair
This was the error I got 1195: Attempted access of inaccessible method selectPlayer through a reference with static type khGame:Player. --Keith H-- You didn't say what error you're getting when you compare with null (?) On 4/23/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have a

[flexcoders] Can't load image in flex

2007-04-24 Thread nishantkyal
Hi, I'm trying to load an image in flex and need help. I'm using the loader object to load the image and 'addChild'ing it to a CANVAS object placed on stage. The image apparently loads up (Event.COMPLETE fires) but there is no image on the CANVAS. :(( I'm pretty conversant with Flash AS2 but

RE: [flexcoders] Ecplise Out Of Memory Errors

2007-04-24 Thread Peter Farland
I've seen suggestions to also increase the MaxPermSize. I typically run many projects at once and have found the following eclipse.ini settings to work well (machine has 2GB RAM). -vmargs -Xms128m -Xmx784m -XX:MaxPermSize=256m Pete From:

[flexcoders] Re: IFrame problem

2007-04-24 Thread manfred.maierhofer
I got it working with the wmode setting. But now I have the next problem. I'm using state transitions to navigate within my application and the IFrame is supposed to move and resize in one of the transitions but everytime the transition starts the IFrame disappears and doesn't appear anymore.

[flexcoders] How does [Bindable] work? - For integration of Flash CS3 content in a Flex 2 app

2007-04-24 Thread João
Hello, we are giving the first steps on defining a workflow with designers for integrating Flash CS3 content on our Flex 2 applications, using the Flex Component Kit for Flash CS3 on labs (http://labs.adobe.com/wiki/index.php/Flex_Component_Kit_for_Flash_CS3). I have made a test case where we

[flexcoders] Re: Percentage Sizing Issues

2007-04-24 Thread Matt
This solved my problem. Thanks a lot...I was really concerned I was going to have to write my own percentage calculations. ;) --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, try; panel.minHeight = 0; You are telling the layoutManager to disregard the

[flexcoders] Check for all validation errors

2007-04-24 Thread Larry Gutman
I have a 7x8 grid of custom textinputs. I have set the validation information in the custom component. I want to check all of the textinputs to see if any of them have validation errors. I would like to keep the form from submitting until the errors are cleaned up. I would also like to have a

Re: [flexcoders] How does [Bindable] work? - For integration of Flash CS3 content in a Flex 2 app

2007-04-24 Thread João Fernandes
João, you can set your property [Bindable('posxChanged')] and when your code updates that value, you just dispatch a posxChanged event, and the getter will be called again. something like this [Bindable('posxChanged')] public function set posx(val:Number):void{ if(_posx == val) return;

RE: [flexcoders] Ecplise Out Of Memory Errors

2007-04-24 Thread Dimitrios Gianninas
Turning OFF automaticy builds does make the problem go away, I am proof of that :) Doesn't bother me cause I just compile my Flex/Java stuff via ant anyways. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Check for all validation errors

2007-04-24 Thread Kenneth Sutherland
There is a way of checking multiple fields at once, follow the link http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp. htm?context=LiveDocs_Partsfile=1773.html http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp

[flexcoders] Re: submenu can't show completely

2007-04-24 Thread kkinaru
Thanks a lot, Manish. If I'm not wrong, menu objects are directly parented by the system manager. You can verify this by trace()'ing menu.parent. You want to use that parent object with localToGlobal(). In createMenu, first parameter is assigned to menu.parent property, I used null, so, ok,

[flexcoders] Re: submenu can't show completely

2007-04-24 Thread kkinaru
Thanks Roman, I will keep in mind your advice. Sadly, getBounds(Application.application) doesn't work. Never played around with getBounds/getRect methods and the mechanism is still a little bit vague for me but I though maybe you should choose another targetCoordinateSpace. Maybe in your

[flexcoders] encode +

2007-04-24 Thread Jesse Warden
Running encode on a String seems to be missing the +. For example, a space becomes %20 like expected. But, a + is not becoming %2D... anyone know why?

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-24 Thread Tom Chiverton
On Monday 23 Apr 2007, mvbaffa wrote: And It's free ! Isn't FDS Express free ? When Microsoft solves the restrictions for the XBAP sandbox, XAML Browser applications will be a true competitor of Flex. As long as you don't want to have small downloads. Or to work on Linux. -- Tom

Re: [flexcoders] Viewstack showEffect and hideEffect playing at the same time

2007-04-24 Thread Tom Chiverton
On Monday 23 Apr 2007, Tim Walling wrote: That's right. I couldn't remember what the documentation said. I had to create my own viewstack component because I wanted to insert a resize effect in between the show and hide effects. Couldn't you use a Parellel (or Sequence) effect to do that ? --

[flexcoders] Performance Question: Which is faster e4x or object?

2007-04-24 Thread wayneposner
Has anyone really benchmarked this? It seems that when I return an http request as an Object my parse results are faster than trying to do a similar parse in e4x. This seems to be particularly true when the XML has structure than can be returned as an ArrayCollection vs assigning the same xml

Re: [flexcoders] encode +

2007-04-24 Thread Michael Wills
Are you using encodeURI? You may need to use encodeURIComponent instead. Just checking briefly on the JS versions. Michael Jesse Warden wrote: Running encode on a String seems to be missing the +. For example, a space becomes %20 like expected. But, a + is not becoming %2D... anyone know

Re: [flexcoders] Re: IFrame problem

2007-04-24 Thread dorkie dork from dorktown
can you send me an example off list? On 4/24/07, manfred.maierhofer [EMAIL PROTECTED] wrote: I got it working with the wmode setting. But now I have the next problem. I'm using state transitions to navigate within my application and the IFrame is supposed to move and resize in one of the

[flexcoders] Is there any chance that Flex 3 will support HTTP resonse headers?

2007-04-24 Thread bruce1976
Flex team, I've been working with Flex for a while, and I remember reading somewhere that Flex 3 will NOT require users to upgrade to a newer version of the Flash player. So, is Flex 3 going to support HTTP Response headers? It's a little awkward to be able to set headers when communicating with

RE: [flexcoders] Performance Question: Which is faster e4x or object?

2007-04-24 Thread Jim Grinsfelder
Is the parsing a significant portion of the time spent? Is there any kind of profiling tool for Flex? I figured it this way.any XML format is going to spend roughly 50% more time on the wire than a binary format for larger chunks of data. If you're passing one field, say

Re: [flexcoders] encode +

2007-04-24 Thread Jesse Warden
Weird... encodeURI does the same thing. Check it: var str:String = encodeURI(dude man+); Notice that with encode or encodeURI, you'll get: dude%20man+ ...bleh! That dang + should be %2D instead. BTW, for background context, I'm first base64'ing some XML, and then encoding it to send as a

[flexcoders] Re: Negative plane in Column Chart

2007-04-24 Thread rmlsystem
I have the same problem, i'm only using a chart with ColumnSets, it always render fine except whith one negative value. I wrote this example for explain: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[

Re: [flexcoders] encode +

2007-04-24 Thread Jesse Warden
Nope. I'm using encode. On 4/24/07, Michael Wills [EMAIL PROTECTED] wrote: Are you using encodeURI? You may need to use encodeURIComponent instead. Just checking briefly on the JS versions. Michael Jesse Warden wrote: Running encode on a String seems to be missing the +. For

[flexcoders] Re: DataGrid: Field Change Event?

2007-04-24 Thread Troy A. Binford
Yes, that was it. Thank you. For some reason I was trying to put the event in the column definition. I also tried change and datachange events at the datagrid level. I completely forgot about the itemEdit* events. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: You

Re: [flexcoders] Sliding HDividedBox

2007-04-24 Thread Tom Chiverton
On Monday 23 Apr 2007, Flexing... wrote: right. but I would like to add an icon to the divider and enable this functionality on the click of that icon. Hmm. Seen FlexLib ? -- Tom Chiverton Helping to dramatically disseminate granular interfaces on: http://thefalken.livejournal.com

[flexcoders] Re: encode +

2007-04-24 Thread Doug Lowder
How about encodeURIComponent(dude man+) ? The + character, as well as some others, is a reserved character in URIs. --- In flexcoders@yahoogroups.com, Jesse Warden [EMAIL PROTECTED] wrote: Weird... encodeURI does the same thing. Check it: var str:String = encodeURI(dude man+); Notice

[flexcoders] Re: encode +

2007-04-24 Thread Paul DeCoursey
I think the problem is that the + should not be encoded. You must encode it before adding it to the URI. It is a reserved character and it has special meaning in certain places in the URI. It should not be encoded in those places. As a result I am speculating that an encode function will not

[flexcoders] Re: encode +

2007-04-24 Thread Doug Lowder
Yes, that's it exactly and Adobe got it right. The + is listed as a non-encoded character in the docs for encodeURI(). So what needs to be done is call encodeURIComponent() on the substring, which *will* encode the + since it isn't a non-encoded character for that function, and then tack

[flexcoders] Re: Okay, I know this is possible...DataGrid to Tree

2007-04-24 Thread Nate Pearson
Thanks for the response. I've read that document and from what I understand dragEnter doesn't have to do anything but have the dragmanager.acceptdragdrop. I have also looked at that list. If you take that same thing and turn it into a data grid it doesnt work. It's like there is some Datagrid

[flexcoders] yahoomaps POI marker click event, htmltext asfunction

2007-04-24 Thread Michael Wills
Hello all, Just wondering if it's possible to use asfunction to call a function in a cairngorm app from the htmltext in the description of a POI marker within a Yahoomap in a Flex 2 app without making modification to the as2map.fla file. It's a long shot, but I was just wondering if it's

Re: [flexcoders] Re: encode +

2007-04-24 Thread Michael Wills
Hi there Jesse, Three questions then. Did encodeURIComponent solve the problem or is it still causing trouble? Are you using the XML encoding for sending the request from an HTTP request? If you are using a standard HTTP request it does a url form encoding on everything before it goes out I

RE: [flexcoders] Re: Negative plane in Column Chart

2007-04-24 Thread Ely Greenfield
Charts don't support stacking negative values. If you need this functionality you could simulate it with individual column series with min/max fields set. You'll need to preaggregate your values into a new dataprovider. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Panel dissolve issue

2007-04-24 Thread justme1231331
I think this has to be a bug of some kind. As a test I took an example from Adobe's livedocs site and changed a vbox for a panel. The transitions work with the vbox but not with a panel??? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

Re: [flexcoders] yahoomaps POI marker click event, htmltext asfunction

2007-04-24 Thread Michael Wills
For clarification, the idea is simply to allow a marker to be clicked to open it, but then trigger an event/call a function in the cairngorm app when clicking on a link in the description. Thanks, Michael Michael Wills wrote: Hello all, Just wondering if it's possible to use asfunction to

[flexcoders] Re: IFrame problem

2007-04-24 Thread manfred.maierhofer
Thanks, but I don't need it anymore. I now use the HTMLcomponent that I found here: http://www.judahfrangipane.com/blog/?p=104 There have still been some problems with the resizing but I fixed them with some functions calling the javascript to resize and move the iframe. Now it is working fine.

Re: [flexcoders] Re: Okay, I know this is possible...DataGrid to Tree

2007-04-24 Thread Jim Robson
Nate: If you don't want to extend Tree and override dragEnterHandler, then here's something else to try. In the tree instance's dragEnter handler, add some data with the format treeItems like so: var obj:Object = new Object(); event.dragSource.addData(obj,treeItems); It may seem klugey, but

[flexcoders] Re: Is there any chance that Flex 3 will support HTTP resonse headers?

2007-04-24 Thread Shannon
That is awkward, what gives... Does HTTPStatusEvent help? http://livedocs.adobe.com/apollo/1.0/aslr/flash/events/HTTPStatusEvent.h tml So, is Flex 3 going to support HTTP Response headers? It's a little awkward to be able to set headers when communicating with my backend system, but I can't

[flexcoders] Finding all TextInputs in a Panel

2007-04-24 Thread Shidan
I would like to find all the TextInputs in a Panel but when I do a for in loop over the Panel I get nothing. for (var 0:Object in panel){ Alert.show(o.toString()); } Can someone give me a pointer. Thanks, Shidan

Re: [flexcoders] LiveCycle Data Services PDF

2007-04-24 Thread Kevin
I am interested in finding out more about the PDF capabilities with LiveCycle Data Services. Is there anyone who has dug deeper into this and can help? Specifically, I would like to know: 1) Can LCDS take XDP files made in LiveCycle Designer and intelligently merge them with XML to

[flexcoders] FDS 2.0.1 Java Assembler autosync push interception

2007-04-24 Thread box110a
Let's say I have a datagrid of Person Objects (first,last names, DOB, etc). I am using FDS java assembler to CRUD these objects. I have two clients, A B and A adds a new Person which shows up on B's datagrid moments later. My Question is, can I intercept the push of new Person to B's datagrid?

Re: [flexcoders] Re: submenu can't show completely

2007-04-24 Thread Manish Jethani
Actually that's right, the menu's position is set *after* the menuShow event has been dispactched (see Menu.as). So you can set up callLater() and adjust the position in your callback. That should do the trick! By the way, Menu already tries to adjust for the horizontal position. From Menu.as:

Re: [flexcoders] SWF Loading and Query Strings

2007-04-24 Thread Michael Wills
I don't know if this is related, but can you confirm with an HTTP debugger or perhaps Firefox's LiveHTTPHeaders extentions what it is trying to load? Flex URL encodes requests going out so it may correctly load the SWF, but everything else may be encoded to something like

Re: [flexcoders] Finding all TextInputs in a Panel

2007-04-24 Thread Daniel Freiman
for...in iterates over properties. Unless you've subclassed the panel and gave each TextInput child its own variable, then this won't give you a Container's children. What you want is to iterate over the children: for (var i:int = 0; i panel.getChildren().length; i++) { var

[flexcoders] Datagrid scrollbar lag

2007-04-24 Thread Austin Kottke
Hi. I've got a datagrid with about 60 rows and 30 columns. Each has a custom item renderer that extends a Canvas component. The scrollbar that appears is lagging majorly with this set. I've tried cacheasBitmap, Implementing different dataproviders such as XMLListCollection and other things to

RE: [flexcoders] Finding all TextInputs in a Panel

2007-04-24 Thread Andrew Trice
Or you could use a for-each loop to loop over the children: for each ( var child : * in panel.getChildren() ) { if ( child is TextInput ) { //do something } } -Andy _ Andrew Trice Cynergy Systems,

Re: [flexcoders] compiling error

2007-04-24 Thread Manish Jethani
You have to write a separate class with these methods (onStatus, etc.) declared public. Then you assign an instance of the class to the NetConnection's client property. netConnection.client = new MyNetConnectionClient(); Your MyNetConnectionClient contains the methods that'll be called by the

Re: [flexcoders] SWF Loading and Query Strings

2007-04-24 Thread Manish Jethani
Have you tried this with a standalone AS3 example? Try accessing the value of systemManager.loaderInfo.parameter from your sub-application (the loaded one). On 4/23/07, jay.baird [EMAIL PROTECTED] wrote: Hi all, Here's the scenario: We've got a SWF we're trying to load with a custom class

Re: [flexcoders] Getting Index of Array Collection from current Mouse Position in areaChart

2007-04-24 Thread Michael Wills
Hi Patrick, I'm not sure if this will help, but you can listen for an itemRollOver event on your area chart. That will trigger an ChartItemEvent which in it has hitData and hitSet which info on the items that triggered the event. Perhaps you can get the actual data from that. Michael

Re: [flexcoders] Datagrid scrollbar lag

2007-04-24 Thread Manish Jethani
60 rows and 30 columns. So basically you have 1,800 Canvas objects. Can you try maybe using a lighter item renderer (maybe you don't really need Canvas?)? On 4/25/07, Austin Kottke [EMAIL PROTECTED] wrote: Hi. I've got a datagrid with about 60 rows and 30 columns. Each has a custom item

Re: [flexcoders] Datagrid scrollbar lag

2007-04-24 Thread Manish Jethani
Sorry, I thought you had 60 *visible* rows and 30 *visible* columns :)) (heh). On 4/25/07, Manish Jethani [EMAIL PROTECTED] wrote: 60 rows and 30 columns. So basically you have 1,800 Canvas objects. Can you try maybe using a lighter item renderer (maybe you don't really need Canvas?)? On

Re: [flexcoders] Datagrid scrollbar lag

2007-04-24 Thread Erik Price
On 4/24/07, Austin Kottke [EMAIL PROTECTED] wrote: Hi. I've got a datagrid with about 60 rows and 30 columns. Each has a custom item renderer that extends a Canvas component. The scrollbar that appears is lagging majorly with this set. I've tried cacheasBitmap, Implementing different

[flexcoders] Bug: GET/POST determined by XML Contents not method

2007-04-24 Thread kaleb_pederson
When I send data to a web service, whether or not it sends the request as a GET or a POST is determined by contents of the XML that I happened to be sending. For example, here's the ActionScript I used: import mx.rpc.http.HTTPService; var service:HTTPService = new HTTPService(); service.url

[flexcoders] Re: submenu can't show completely

2007-04-24 Thread nxzone
Hi, Do work with this problem, i extend the Menu class to control the y position after the show function... You can also direcly after you show function move the y position like this: var popMenu:Menu= Menu.createMenu(zoomBox, myMenuData, false);

[flexcoders] Re: How to access Variable in Module from sub-component

2007-04-24 Thread boy_trike
Yes, Thanks. Bruce --- In flexcoders@yahoogroups.com, Troy A. Binford [EMAIL PROTECTED] wrote: If I get your problem straight, you have an App that loads a module. Then that module loads subcomponents, and you want to access a variable that belongs to the module. Have you tried

RE: [flexcoders] LiveCycle Data Services PDF

2007-04-24 Thread Peter Farland
1) Can LCDS take XDP files made in LiveCycle Designer and intelligently merge them with XML to create PDFs? (I notice in the java code in the LCDS sample, the pdf is hard coded as a '.pdf' file.) [Pete] You need a valid LCDS license to do PDF generation in general, however, in the final

RE: [flexcoders] Bug: GET/POST determined by XML Contents not method

2007-04-24 Thread Peter Farland
This is a known issue with Flex's HTTPService (and should be fixed in Flex SDK 2.0.1 Hotfix 2). For now, before calling send, convert the content to a String by explicitly calling content.toXMLString(). service.send(content.toXMLString()); Note that XML.toString() and XML.toXMLString()

[flexcoders] Communication from Modules to Application

2007-04-24 Thread rodneyjlucas
I am new to modules but think the idea is great. However, I am trying to modularize a prototype and get stuck. I would like to have a simple framework Application with modular components for each major piece of the application (banner, footer, left hand navigation, main content..etc). The

[flexcoders] Using Flex Data Services alongside AMFPHP?

2007-04-24 Thread Kevin
I am trying to figure out how to use Data Services AMFPHP in the same project. I am porting over an AMFPHP project and would like to keep some of the PHP functionality (since there is A LOT of it!). I have set my project up as a Flex Data Services Project and I can get it to open up in my

[flexcoders] Help on the syntax for function set blah(param:String)

2007-04-24 Thread tjcox1969
I have read the section on functions in the Adobe Programming Actionscript manual, but I see no reference to this type of syntax: [Bindable] public function set statesNames(value:ListCollectionView):void { _statesNames = value; } public function get

RE: [flexcoders] Can't load image in flex

2007-04-24 Thread Gordon Smith
Try using the Image component to load your image. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nishantkyal Sent: Monday, April 23, 2007 11:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can't load image in flex

[flexcoders] Re: Bug: GET/POST determined by XML Contents not method

2007-04-24 Thread kaleb_pederson
Thanks Peter -- for both the confirmation and the additional information! --Kaleb --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: This is a known issue with Flex's HTTPService (and should be fixed in Flex SDK 2.0.1 Hotfix 2). For now, before calling send,

[flexcoders] Re: Help on the syntax for function set blah(param:String)

2007-04-24 Thread Scott Hoff
What is super special about the syntax that you pasted? --- In flexcoders@yahoogroups.com, tjcox1969 [EMAIL PROTECTED] wrote: I have read the section on functions in the Adobe Programming Actionscript manual, but I see no reference to this type of syntax: [Bindable] public function set

Re: [flexcoders] Stacked Column Chart

2007-04-24 Thread rml__
hope this works: ?xml version=1.0 encoding=utf-8? mx:Script ![CDATA[ import mx.collections.ArrayCollection; private var dp :ArrayCollection= new ArrayCollection([ {x: 1, a: 100, b: 20, c: 40, d:10}, {x: 2, a: 90, b: 30, c: 10, d:78},

[flexcoders] Re: Help on the syntax for function set blah(param:String)

2007-04-24 Thread Doug Lowder
See: http://livedocs.adobe.com/flex/201/html/basic_as_139_08.html#166714 Search for getter or setter on livedocs for more. --- In flexcoders@yahoogroups.com, tjcox1969 [EMAIL PROTECTED] wrote: I have read the section on functions in the Adobe Programming Actionscript manual, but I see no

RE: [flexcoders] Help on the syntax for function set blah(param:String)

2007-04-24 Thread Gordon Smith
These are a way to implement a property when you want getting or setting the property to have side effects. The setter is called when you set the property. For example, statesNames = foo; will call function set statesNames with value equal to foo. The getter is called when you get the

RE: [flexcoders] Re: Help on the syntax for function set blah(param:String)

2007-04-24 Thread Robert Chyko
He is looking for the reasoning behind using implicit getters/setters. Sorry, I don't have a concise answer for you, but if you Google 'implicit getter setter actionscript' I know there has been debate out there in the past. -Original Message- From:

Re: [flexcoders] LiveCycle Data Services PDF

2007-04-24 Thread Kevin
thanks for the info! That really helps. A couple more questions: You need a valid LCDS license to do PDF generation in general does that mean the LCDS Express version will not include the PDF Generation? It depends on whether the non-Acrobat reader can support XFA templates + dynamic

[flexcoders] Code Behind Woes

2007-04-24 Thread Jim Grinsfelder
I'm confused again. I read Ted's thing on Code Behind and got all excited. Now I'm getting Unable to locate specified base class 'app.myClass' for component class 'myClass' when I build the following: [file: myClassBase.as] package app { import mx.core.Application;

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-24 Thread Nick Collins
How will they become a true competitor when as I understand it, the XBAPs really only work in IE, so the whole cross-platform notion goes out the window, doesn't it? I think that WPF definitely has it's place... on the windows desktop. It is my opinion that it will be huge in making windows

[flexcoders] Re: Code Behind Woes

2007-04-24 Thread Doug Lowder
File name/class name mismatch? I think you'll need to either change your class name to myClassBase, or change the filename to myClass.as. --- In flexcoders@yahoogroups.com, Jim Grinsfelder [EMAIL PROTECTED] wrote: I'm confused again. I read Ted's thing on Code Behind and got all excited.

[flexcoders] Is there a DateField Component that optionally allows typing a date?

2007-04-24 Thread boy_trike
I like the DateField component, but sometimes it is faster to just type a date. Has anyone come out with a component that does that? Thanks Bruce

[flexcoders] Fault events with DataService - Retry operation?

2007-04-24 Thread parkerwhirlow
Hi all, I am not sure if it is JUST the network (WAN/Internet), or if there are strange inconsistencies with FDS and the DataService, but here and there sometimes I get back Fault events. I get faultCode:=Channel.Polling.Error faultDetail:null and faultCode=Channel.Call.Failed

[flexcoders]SecurityError: Error #2148: SWF file file:///T:/.../html_designs_22/banner2.swf cannot access local resource file:///T:/.../html_designs_22/images/YBNET-Globe.png.

2007-04-24 Thread dorkie dork from dorktown
i copied my files out onto the network and i am now getting this error. the weird thing is, the image shows up in my application and none of the other images have problems. can someone explain this error to me more? SecurityError: Error #2148: SWF file file:///T://html_designs_22/banner2.swf

[flexcoders] Error 1009 - keyDownHandler - ComboBox

2007-04-24 Thread Carlos Humberto
Pessoal, Preciso imensamente da ajuda de vocês. Tenho um combobox populado por um XML em um form. Quando venho preenchendo os dados e pulando os campos com o tab e quando chegue no combobox e pressiono KeyDown aparece o erro abaixo... O que seria isso ? Ja tentei de tudo e o erro persiste... Só

  1   2   >