RE: [flexcoders] Help with non-visual MXML components and getting the syntax I want

2008-04-21 Thread Alex Harui
I would look at ArrayCollection From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Sunday, April 20, 2008 6:35 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Help with non-visual MXML components and getting the

[flexcoders] VideoDisplay: why does play restart buffering after load?

2008-04-21 Thread Dennis Falling
I'm trying to avoid using VideoDisplay's default buffering and loading/playing videos manually. For some reason, calling load and then play sometimes makes the player start buffering again from the very beginning. I assume this is caused by one of the booleans sourceChanged or closeCalled not

RE: [flexcoders] Re: Show progress on Progressbar

2008-04-21 Thread Alex Harui
So you do see a change, but just at the end. Flash/Flex is a deferred rendering model. You run code to modify the display list, then the player renderers the displaylist. You would have to chain up callLaters and do one DataGrid at a time. From:

RE: [flexcoders] detecting ModuleEvent.READY from anywhere in application

2008-04-21 Thread Alex Harui
moduleInfo is not a display list object and therefore there is no hierarchy to have a capture phase. You'll have to implement some way of tracking loaded modules. A dictionary of ModuleInfos might work. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] sending object to component

2008-04-21 Thread Luke Vanderfluit
Hi. I have a component that displays a form. When the form displays I want to display different stuff based on whether a property of an object that I send to the form is null or not. Im calling the form component from the parent like this: OrgForm organisation={organisation}/ Now how do I

Re: [flexcoders] Help with non-visual MXML components and getting the syntax I want

2008-04-21 Thread Josh McDonald
Cheers :) I eventually figured it out, I was mainly misled by a rather abstruse compiler error :) -J On Mon, Apr 21, 2008 at 4:18 PM, Alex Harui [EMAIL PROTECTED] wrote: I would look at ArrayCollection -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Combobox Question

2008-04-21 Thread Parkash
Hello Friends I am using a flex combobox with following items Group Client --- Account i want to add seprator in the combox can u tell me how to do this i dont want to change componenet from combobox to any other. if any one can tell me how to make combo item uneditable..

RE: [flexcoders] ModuleLoader Ready event

2008-04-21 Thread Alex Harui
If you walk the parent chain, you'll hit one that isn't visible if the child really isn't visible. You can also use contains() to see if the TabNav's child contains your focusable thing. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

RE: [flexcoders] Disable Drag for particular list item

2008-04-21 Thread Alex Harui
I think you can grab START_DRAG and call stopImmediatePropagation. You can also subclass and override mouseDownHandler. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Saturday, April 19, 2008 3:01 PM To:

RE: [flexcoders] Combobox Question

2008-04-21 Thread Alex Harui
Search the archives and the web. This has been discussed before. The disabling list selection article on my blog can help. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Parkash Sent: Sunday, April 20, 2008 11:14 PM To:

Re: [flexcoders] sending object to component

2008-04-21 Thread shaun
Luke Vanderfluit wrote: Hi. I have a component that displays a form. When the form displays I want to display different stuff based on whether a property of an object that I send to the form is null or not. Im calling the form component from the parent like this: OrgForm

Re: [flexcoders] sending object to component

2008-04-21 Thread Luke Vanderfluit
Hi Shaun. That helped. Thanks bud. Kr. Luke. shaun wrote: Luke Vanderfluit wrote: Hi. I have a component that displays a form. When the form displays I want to display different stuff based on whether a property of an object that I send to the form is null or not. Im calling the form

RE: [flexcoders] Getting Error #2032: Stream Error randomly in Flex3.0

2008-04-21 Thread Gupta, Pradeep
I am tracing the SOAP message and it is fine. The error is happening sporadically i.e. if I issue multiple request to the server 10/15 calls succeed however fails randomly while getting the response. Any idea? Thanks Pradeep _ From: flexcoders@yahoogroups.com

Re: [flexcoders] Getting Error #2032: Stream Error randomly in Flex3.0

2008-04-21 Thread Peeyush Tuli
In that cases it could be a server side error, some DB connection timeout or other error which might not have been handled in a try catch block( in case you are handling exceptions through a pre-defined schema) Thats all I can add. ~Peeyush On Mon, Apr 21, 2008 at 1:13 PM, Gupta, Pradeep

Re: [flexcoders] SummaryRow in AdvancedDataGrid WITHOUT grouping

2008-04-21 Thread Tom Chiverton
On Tuesday 15 Apr 2008, vdeprojects wrote: I'm trying to get a summaryrow of all my records in the advanced datagrid. You just want a custom row renderer, no ? -- Tom Chiverton Helping to economically innovate bleeding-edge design-patterns on: http://thefalken.livejournal.com

Re: [flexcoders] Re: Flash/Flex Compatibility with 64bit OS

2008-04-21 Thread Tom Chiverton
On Thursday 17 Apr 2008, Alan Gruskoff wrote: I just noticed that Adobe released flash-plugin-9.0.124.rpm for Linux 64 bit. Err, where ? http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlashP2_Platform=Linux doesn't list one and neither does

Re: [flexcoders] Apologies for repeated message on XML children ....

2008-04-21 Thread Tom Chiverton
On Saturday 19 Apr 2008, chigwell23 wrote: waited forever to see if it showed up on list finally decided it was lost and If it triggered moderation, it could take hours to show up. -- Tom Chiverton Helping to paradigmatically foster advanced portals on: http://thefalken.livejournal.com

Re: [flexcoders] how do I loop thru dynamically created UI components?

2008-04-21 Thread Lee
Hi, I replied below =) -- Lee - Original Message From: hoytlee2000 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, April 21, 2008 5:21:13 PM Subject: [flexcoders] how do I loop thru dynamically created UI components? Hello, I've created a button to let users add text

Re: [flexcoders] custom component dataprovider

2008-04-21 Thread gabriel montagné
On Fri, Apr 18, 2008 at 6:50 PM, Tracy Spratt [EMAIL PROTECTED] wrote: dataprovider again, right? I had assumed that implementing a dataprovider would make updates to the UI cleaner (not having to re-create all items), but I could be wrong on that assumption- don't know yet. I like to do it

Re: [flexcoders] custom component dataprovider

2008-04-21 Thread gabriel montagné
On Sun, Apr 20, 2008 at 9:38 PM, gabriel montagné [EMAIL PROTECTED] wrote: I like to do it like this: _dataProvider = (value is Array)? new where _dataProvider is typed IList.. ... pretty useful and flexible... I'd read it (or something like it) on one Ely Greenfield's

[flexcoders] Can flex display word,ppt,excel document?

2008-04-21 Thread longxjyh
Hello all, I want to display word,ppt,excel document in flex. Is there a way to do so ? I know air can display pdf document, but I don't want to convert word, ppt,or excel to pdf.I think it needs a lot of cpu consumption. How should I do? Thanks longxj

[flexcoders] drag and drop canvas

2008-04-21 Thread prash_rathore1
Hello all , i am facing a problem that i want to drag and drop a custom canvas from a canvas to other . I also want to make proxyimage of that canvas then drop it into another canvas . I have done it for image but unable to do it for canvas . Please help me ?

[flexcoders] Re: Unable to apply FB3 license on solaris

2008-04-21 Thread Srinivas Annam
Hi, I hope that you have upgraded to Flex Builder 3 Professional Edition and NOT the Flex Builder 3 Standard Edition. Unlike Flex Builder 3 Standard Edition, Flex Builder 3 Professional Edition comes along with license for Data Visualization Components (Charts, Advanced Data Grid OLAP

[flexcoders] Merging Cells Datagrid

2008-04-21 Thread Andreas Santoro
Hello. Is it possible to merge cells in a datagrid like in Excel? Andreas Santoro Senior Consultant Plan-B GmbH Kolpingstr. 6 D-73433 Aalen Tel.: +49 (0) 177 1762129 Mail: [EMAIL PROTECTED]mailto:[EMAIL PROTECTED]-b-gmbh.commailto:[EMAIL PROTECTED] Web:

[flexcoders] how do I loop thru dynamically created UI components?

2008-04-21 Thread hoytlee2000
Hello, I've created a button to let users add text input fields to the app so they can add additional information. That works fine, however I am at a lost on how to loop thru the newly added fields to get the input so I can send it to a php script to store in a sqlite database. I thought I

[flexcoders] FileReference can not handle http redirect properly

2008-04-21 Thread guanwenhu
I am trying to upload a file to a server, the server will redirect the request to another url after uploading. i can do it correctly on windows, but not on mac. I looked up internet, found it is probably related to the flash player on mac. http://demo.swfupload.org/Documentation/#knownissues

Re: [flexcoders] Unable to apply FB3 license on solaris

2008-04-21 Thread Jyoti Kishnani
I hope that you have upgraded to Flex Builder 3 Professional Edition and NOT Flex Builder 3 Standard Edition. Unlike Flex Builder 3 Standard Edition, Flex Builder 3 Professional Edition comes with license for Data Visualization Components such as Charts, Advanced Data Grid OLAP Grid So, please

Re: [flexcoders] Can flex display word,ppt,excel document?

2008-04-21 Thread Anirudh Sasikumar
Hi, On Mon, Apr 21, 2008 at 10:37 AM, longxjyh [EMAIL PROTECTED] wrote: I want to display word,ppt,excel document in flex. Is there a way to do so ? You can't display word, ppt, excel files in Flex unless you write a custom flex component to do it. But that in itself is a huge undertaking.

Re: [flexcoders] Re: Unable to apply FB3 license on solaris

2008-04-21 Thread none
If you read the entire thread *carefully*, the problem description is different. I am trying to apply the license to Flex SDK3 on solaris which is not working. I have tried the following ways: 1. Specifying license in $home/.adobe/Flex/license.properties 2. Specifying license in flex-config.xml

[flexcoders] MXML, visual/non-visual classes and the id property

2008-04-21 Thread Robin Hilliard
Hello all, Just wondering, does anyone know what magic the MXML compiler uses to decide that visual classes declared in MXML get their id properties recorded in component descriptors and set when instantiated, whilst non-visual classes get an empty string if they have an id property? I

[flexcoders] Flex 3 + Cairngorm + Automatically Generating Web Service Proxies

2008-04-21 Thread pedr0rica
Hello All, What I have: I've been developing an application in Flex 2 using the Cairngorm framework, which uses a .Net WebService (via .asmx) to get data. In order to easily comply with the MVC structure used in Cairngorm, I used Eric Feminella's Cairngen (which makes use of

[flexcoders] PrintJob Scaling problem

2008-04-21 Thread joined_up_typeski
Hi, Using FB2 + Hotfix 1. I have set up a simple PrintJob to send 1 or 2 pages to the printer. I am trying to scale these images, but the scaling does not seem to take effect. By mistake, I left out the code to restore original scaling and found that if I printed the same page again,

[flexcoders] Diffrent behaviour in IE vs Mozilla

2008-04-21 Thread IrfanA
Hi All, I was wondering if anyone has come across such a case. I am currently in the middle of developing an Hierarchical Chart Component (http://www.kpi2.com/live.html) where the information about the children of a parent are retrieved through a web service call that is triggered

[flexcoders] Adding clips to Parent clip

2008-04-21 Thread justSteve
I'm working on a preloader where I'll want to end up with a master clip that contains all children handled by the loader. public function completeHandler(event:Event):void { manager.add2ClipHolder(event.target as MovieClip); } If I don't use the 'as

[flexcoders] MenuBar filter function

2008-04-21 Thread diehlryan
I'm using an XMLListCollection as a dataprovider for a MenuBar. I'm trying to find a way to easily filter out menu items based on a visible property of the data provider. On the top level of the MenuBar, this is easy. I set a filterFunction and only return visible nodes. However, I also need

[flexcoders] Re: PrintJob Scaling problem

2008-04-21 Thread joined_up_typeski
Update - apologies, image is scaling with parent sprite, but the scaling / resize still does not happen when I apply it, only after redrawing by the look. Calling this.stage.invalidate() after scaling does not help either.

[flexcoders] saving charts as a graphic

2008-04-21 Thread Deniz Davutoglu
Hello guys, I need to save charts generated with flex charting component as a gif/png/jpeg or so. Do you have any ide how can I do? thanks Deniz

RE: [flexcoders] saving charts as a graphic

2008-04-21 Thread Gregor Kiddie
Take a look at http://livedocs.adobe.com/flex/3/langref/mx/graphics/ImageSnapshot.html. It should give you what you need to get the image. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered

Re: [flexcoders] saving charts as a graphic

2008-04-21 Thread rrao
You can follow this article to take a snapshot of the chart - http://dougmccune.com/blog/2007/06/11/imagesnapshot-class-in-flex-3-sdk/ Raghu On 4/21/08 6:23 AM, Deniz Davutoglu [EMAIL PROTECTED] wrote: Hello guys, I need to save charts generated with flex charting component as a

[flexcoders] Re: Show progress on Progressbar

2008-04-21 Thread markgoldin_2000
I see. Will try. Thanks --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: So you do see a change, but just at the end. Flash/Flex is a deferred rendering model. You run code to modify the display list, then the player renderers the displaylist. You would have

[flexcoders] ERROR 1009

2008-04-21 Thread smbrinkley6
This is really starting to get on my nerves. I have a TextArea in a Repeater that displays blog comments from a DB. I am trying to style the TextArea so that the links look like links (blue, underlined, hover... etc). However, when I try to use my stylesheet to format the TextArea, I get:

Re: [flexcoders] Re: Cairngorm ModelLocator array filter...

2008-04-21 Thread Douglas McCarroll
Vivian, I set this up as a project in Flex Builder, ran it, and it works. The graph displays the appropriate subsets, and a breakpoint in the filter function indicates that it is doing its job. What's the problem? :) Douglas On Fri, Apr 18, 2008 at 10:27 AM, Vivian Richard [EMAIL PROTECTED]

[flexcoders] Re: How to draw a cylinder

2008-04-21 Thread valdhor
There is a tutorial at http://www.vecpix.com/tutorials/illustrator/il013.php on how to draw a cylinder. You will then need to use flex component kit to convert it into a flex component. At the very least, it is a start. --- In flexcoders@yahoogroups.com, Swamy Nathan [EMAIL PROTECTED] wrote:

RE: [flexcoders] ERROR 1009

2008-04-21 Thread Clinton D. Judy
You're right. The stylesheet is being loaded before the TextArea is created, so it's attempting to apply the style to something that doesn't exist. Yeah, it's annoying, but there are ways around it. Someone on this list who's a better coder than I, may recommend a way to check for the existence of

[flexcoders] Re: Problem to re-render a Connector component

2008-04-21 Thread anuppc
Hi, I'm looking for similar samples. Can you post ur example? Thanks A --- In flexcoders@yahoogroups.com, xmwang1982 [EMAIL PROTECTED] wrote: Hi, I solved the re-render issue by myself. I just have added one row to call validateNow() method of UIComponent. However, it is still better to

[flexcoders] Hello, and a question...

2008-04-21 Thread bredwards358
Hi, I'm new to this group so I would like to get my introductions out of the way before I ask my question. I've recently begun a project at work which involves an Adobe AIR application coded in Flex 3. It is essentially a totally new version of legacy software which was coded in VB 6. I am quickly

[flexcoders] my fonts does not show up!

2008-04-21 Thread yiğit boyar
hi folks; i try to embed 3 kind of fonts to my air application. the weird thing is that although the compiler does not give any errors; two of the fonts can not be seen in the application. (e.g. text written with that font is invisible) what might be the problem? the ttf file should be well

RE: [flexcoders] my fonts does not show up!

2008-04-21 Thread Alex Harui
Most common problem is that you didn't embed a bold-face or specify that the file was a bold-face, but you are using fontWeight=bold in those text areas. Button labels default to bold. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

RE: [flexcoders] Re: PrintJob Scaling problem

2008-04-21 Thread Alex Harui
Did you try validateNow()? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of joined_up_typeski Sent: Monday, April 21, 2008 6:11 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: PrintJob Scaling problem Update - apologies,

RE: [flexcoders] Adding clips to Parent clip

2008-04-21 Thread Alex Harui
Maybe it isn't a clip. Call getQualifiedClassName to see what it is. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of justSteve Sent: Monday, April 21, 2008 6:04 AM To: flexcoders Subject: [flexcoders] Adding clips to Parent clip

Re: [flexcoders] my fonts does not show up!

2008-04-21 Thread Tom Chiverton
On Monday 21 Apr 2008, yiğit boyar wrote: what might be the problem? Hard to say, as we don't know how your code (trys to) work. Maybe you could give some code samples, as well as details about your Flex code and compiler versions. -- Tom Chiverton Helping to professionally revolutionize

RE: [flexcoders] MXML, visual/non-visual classes and the id property

2008-04-21 Thread Alex Harui
Non-visuals that implement IMXMLObject can have ids. See source for ListCollectionView. Otherwise, components that are IDeferredInstantiationUIComponents end up in the descriptors. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robin

[flexcoders] Can't change state from the menu bar

2008-04-21 Thread Andrew Wetmore
Hi: I want the menu bar choices in my app to change the app's current state. In the code below, the correct value shows up in the alert when one of the two active options is selected, but the state does not change whether I use the first pattern or the second. What am I missing? private

[flexcoders] Re: PrintJob Scaling problem

2008-04-21 Thread joined_up_typeski
Perfect, thank you very much... Glen --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Did you try validateNow()? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of joined_up_typeski Sent: Monday, April 21,

Re: [flexcoders] my fonts does not show up!

2008-04-21 Thread yiğit boyar
here are my codes: mx styles: (just 2nd one works) @font-face { src: url(com/birbit/teknolist/view/assets/fonts/swz721h.ttf); fontFamily: swz; } @font-face { src: url(com/birbit/teknolist/view/assets/fonts/Vagroln.ttf);

[flexcoders] Getting a repeater's children

2008-04-21 Thread Nate Pearson
I'm trying to loop through the children of a repeater. I've tried: myRepeater.getChildAt(index) and that doesn't work... I've also tried: myRepeater.createdComponents[i] and that doesn't work either... it seems like I'm missing something simple. Thanks for the help! -Nate

[flexcoders] Web Services not working when invoked from within Modules?

2008-04-21 Thread Robert Csiki
Hello, My webservice, implemented using the mxml tag, does not work (it does not send the SOAP operation request on the wire), if invoked from within a Module. The same service does work when invoking from within an Application. Any ideas why it's not working with Modules? I'm using Flex3.

[flexcoders] Update Display

2008-04-21 Thread markgoldin_2000
Is there a way of letting the Player show whatever is being computated and ready to be shown? How all this works? Thanks

[flexcoders] file indexing

2008-04-21 Thread ghus32
Hello Everyone, is it possible to show a file directory/tree on my server in a flex tree or datagrid?? Thanks

Re: [flexcoders] file indexing

2008-04-21 Thread Derrick Anderson
use a server technology like ColdFusion to get the directory lists, then use RemoteObject to call the server for the directories. d. On Mon, Apr 21, 2008 at 12:13 PM, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone, is it possible to show a file directory/tree on my server in a flex tree

[flexcoders] Re: file indexing

2008-04-21 Thread Nate Pearson
Yes, but you'll have to work for it. You can't get direct file access through flex, so you'll have to use webservices and a back end technology like .NET. This kinda opens a big door for yougood luck! :) --- In flexcoders@yahoogroups.com, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone,

Re: [flexcoders] Re: How to draw a cylinder

2008-04-21 Thread Aaron Miller
Much easier to use Papervision I think. As easy as using the Cylinder class. # package { # # import PaperBase; # import org.papervision3d.objects.Cylinder; # # public class CynlinderObject extends PaperBase { # # private var myCylinder:Cylinder = new Cylinder(); # # public

[flexcoders] reading a mxml application inside anoher

2008-04-21 Thread Gustavo Duenas
Hi coders, does anyone of you guys knows a tutorial for this: I have two mxml applications , one is the main and the other has a panel with a yahoo map, I need to read the app with the yahoo map inside the main application, on a stage to be more precise. Does anyone knows a tutorial for that?

Re: [flexcoders] Re: How to draw a cylinder

2008-04-21 Thread Gustavo Duenas
Where could I find that? Regards, gustavo On Apr 21, 2008, at 12:47 PM, Aaron Miller wrote: Much easier to use Papervision I think. As easy as using the Cylinder class. # package { # # import PaperBase; # import org.papervision3d.objects.Cylinder; # # public class CynlinderObject

[flexcoders] Re: ERROR 1009

2008-04-21 Thread Cato Paus
at creationComplete in your comp set the style. or you can try the initialize event to, read up on the display events :) --- In flexcoders@yahoogroups.com, smbrinkley6 [EMAIL PROTECTED] wrote: This is really starting to get on my nerves. I have a TextArea in a Repeater that displays blog

Re: [flexcoders] crossdomain where is the server root?

2008-04-21 Thread dhay
Yes, stick it under ROOT. cheers, David x54680 Vivian Richard [EMAIL PROTECTED] Sent by: flexcoders@yahoogroups.com 04/20/2008 06:54 PM Please respond to flexcoders@yahoogroups.com To flexcoders@yahoogroups.com cc Subject Re: [flexcoders] crossdomain where is the server root?

[flexcoders] PrintDataGrid and wordWrap

2008-04-21 Thread Chad Gray
I am trying to get the PrintDataGrid to word wrap. When I print I get really strange results. It tends to chop off the last row. If I print to paper (instead of my PDF driver) I get two pages and the first page only has like 5 rows on it. mx:PrintDataGrid id=myDataGrid width=90%

[flexcoders] Re: file indexing

2008-04-21 Thread Cato Paus
hi is this what your looking for: http://flexcoders.no the back end is in java --- In flexcoders@yahoogroups.com, ghus32 [EMAIL PROTECTED] wrote: Hello Everyone, is it possible to show a file directory/tree on my server in a flex tree or datagrid?? Thanks

RE: [flexcoders] crossdomain where is the server root?

2008-04-21 Thread Tracy Spratt
Also, at least for testing, I think you should specify to-ports=* Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, April 21, 2008 12:15 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]

[flexcoders] How do I debug a flex app that's sitting in an IE wrapper within a Java app?

2008-04-21 Thread EddieBerman
Our flex 3 app is running in an IE wrapper which is sitting within our Java application. Can anyone give me any hint as to how to go about debugging the flex app? Thanks in advance.

Re: [flexcoders] Re: How to draw a cylinder

2008-04-21 Thread Aaron Miller
The main Papervision site is here: http://blog.papervision3d.org/ There is also Papervision 2 that is still under development, but here is some tutorials on that which include getting the latest source from SVN: http://papervision2.com/tutorial-list/ Best Regards, ~Aaron On Mon, Apr 21, 2008 at

RE: [flexcoders] Getting a repeater's children

2008-04-21 Thread Tracy Spratt
Repeater is not really a container. It just instantiates its child components within the enclosing container. So use getChildAt() on the enclosing Vbox or HBox, or whatever the container is. Also, FYI, if you give a repeated component an id, say, myComp, then you can reference the

[flexcoders] DateTimeAxis ( or any other axis) how to get a point in pixels from Date object

2008-04-21 Thread alex
Is there a function in DateTimeAxis that given some Date object will return me the Point(x,y) on the chart ? I just have a LineSeries with DateTimeAxis and it displays fine and also some custom series that giving Date object to mapCache and transformCache I get the pixel values. But the

[flexcoders] Re: file indexing

2008-04-21 Thread Cato Paus
Hi I zip'ed it up for you, you can get it at: http://flexcoders.no/flex/zip/classes.zip - WEB-INF Classes! http://flexcoders.no/flex/zip/IISTestProjectFlex3.zip - Flex3 project http://flexcoders.no/flex/zip/remoting-config.zip - the remoting- config.xml file in web-inf - flex. --- In

RE: [flexcoders] Hello, and a question...

2008-04-21 Thread Tracy Spratt
Welcome! Since it is your first post here, we'll forgive you ;), but hereafter, please make your subject descriptive of your question, and indicate if it is about AIR (if you think that may be significant). The traffic on this list prevents us from reading all posts, so many of us use the

[flexcoders] Re: AIR - Async vs Sync SQLite connections

2008-04-21 Thread jason_williams_mm
The overhead in opening a connection only occurs when the database is not empty. We force some initialization to occur during an open operation to report errors right away rather than waiting until the first statement is executed. The initialization time is proportional to the number of tables and

[flexcoders] Re: comparing a string to a group of canvas's id and assigning them

2008-04-21 Thread Corey Smaller
hmmm, i thought about doing it that way. I will look into it. thanks Alex Corey --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Can you give them ids that match the XML? Then you can use the XML to look them up. From:

[flexcoders] Re: Can't change state from the menu bar

2008-04-21 Thread Andrew Wetmore
Got this figured out. Now if I can figure out why half of the localizations aren't working, I'll be all set.

[flexcoders] First repeater item loading twice

2008-04-21 Thread Amy
Hi, all; I had to remove all databindings in my project, because it was making unexpected objects update, which was really slowing performance. So I am manually setting the dataProvider on a repeater, which is itself inside a component that is repeated in a horizontal list. I'm setting the

[flexcoders] Can't connect to JMS with BlazeDS

2008-04-21 Thread Geoffrey
I'm trying to connect to our JMS service (Apache ActiveMQ), but am not having much luck. Here are some config files. message-config.xml destination id=flex-jms-topic adapter ref=jms/ properties server allow-subtopicstrue/allow-subtopics subtopic-separator./subtopic-separator

[flexcoders] Specifying groupField in ADG as one of Collections nested property..

2008-04-21 Thread sk_acura
Hi All, How can set a Nested objects property as a groupField in ADG. Basically i am trying to cerate the Columns on the Fly in the ADG based on the data i am getting from the Server. I tried using the groupLabelFunction property to set the groupField (as it varies based on the

Re: [flexcoders] Re: AIR - Async vs Sync SQLite connections

2008-04-21 Thread Cameron Childress
Jason, that does help - thanks for the response. Sounds like it's not really that expensive to open and close a connection frequently untill there is increased scale in either DB metadata or connection frequency. I think I am going to stick to one shared connection for now and see where that

[flexcoders] Re: Hello, and a question...

2008-04-21 Thread bredwards358
Thanks and I'll be sure to be mindful of that in the future. First off I am not wondering if I can get an AIR app to run on a PALM device, as I'm pretty sure that can't happen. I am wondering about how to accept input from a PALM device. Some parts of the app I'm building are supposed to accept

Re: [flexcoders] binding problems

2008-04-21 Thread grimmwerks
Fantastic - it works. Now - just wondering - is there a way of binding to an array of objects with a filter - ie using a numeric stepper to control an object in array with a type of 'blue' or something?z

[flexcoders] Re: Continuous integration woes

2008-04-21 Thread bnsmeets
Try finding the allow-source-overlap parameter for the compiler (don't know the exact name from where i am now). That will allow you to put locale in src. Ben --- In flexcoders@yahoogroups.com, Richard Rodseth [EMAIL PROTECTED] wrote: Yes, I have suggested we consider using Ant, but I'm

RE: [flexcoders] PrintDataGrid and wordWrap

2008-04-21 Thread Chad Gray
I even took the example code from the component explorer and changed it so it populated with a large text block by editing the printButton.mxml page with this: (line 37) dgProvider.addItem(test text that is really long and descriptive + prodTotal); Then changing the PrintDataGrid on

[flexcoders] Yahoo/Google Maps - Navigator Component

2008-04-21 Thread Mike Anderson
Hello All, I was curious if there were any examples, components, etc. which allow you to do the following: Imagine a large graphic or map taking up the entire Application Screen, and then a rectangular box (a fraction of the main graphic size) sitting in a static spot always on top, representing

[flexcoders] MXML inheritance

2008-04-21 Thread jerusalem_pilgrim
I'm trying to use inheritance between mxml files in a project, and I'm running into trouble. I have a Container object defined in the parent mxml file, and in the init() method for the child mxml file, I can't access the container from the parent because it's null. Is there any special trick I

Re[flexcoders] size Effect effectEnd event not fireing properly

2008-04-21 Thread johnsonj26
I am trying to create a custom nav menu that uses resize to provide a drop down effect. The intent is to have the each menu item drop down and change color as the mouse rolls over it. On roll out the menu item will resize to it's original state with a bounce effect and when the effectEnd event is

[flexcoders] filterFunction for Array problem

2008-04-21 Thread grimmwerks
I've got an Array of class objects (a class Circle with a property percentage) coming in. I've got 4 Numeric steppers that are supposed to control each Circle's percentage -- trouble is each of the 4 circles has it's own type - so one stepper controls one circle type, etc. How can I best

Re: [flexcoders] filterFunction for Array problem

2008-04-21 Thread grimmwerks
Seems like 'some' is more what I want...? On Apr 21, 2008, at 3:19 PM, grimmwerks wrote: I've got an Array of class objects (a class Circle with a property percentage) coming in. I've got 4 Numeric steppers that are supposed to control each Circle's percentage -- trouble is each of the 4

[flexcoders] Re: Opening the Browser From AIR

2008-04-21 Thread michaelisraelcaplan
Sorry to respond to my own thread here, but maybe the lack of response is due to my lack of a good example. In my MXML I have a linkButton that I would like to pop the system browser pointed to a particular URL. My code looks like this: ?xml version=1.0 encoding=utf-8? mx:WindowedApplication

[flexcoders] Yahoo ASTRA AutoCompleteManager component error

2008-04-21 Thread pioplacz
Hi, I was just wondering if anybody experience problem when enabling autofill on the AutoCompleteManager text input. When i type in the textinput i get a null reference object error. I find it strange because I'm using the same code as the example code on the yahoo page. Thanks in advance!

RE: [flexcoders] MXML inheritance

2008-04-21 Thread Alex Harui
Children are not created until the parent is added to the display list. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jerusalem_pilgrim Sent: Monday, April 21, 2008 11:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] MXML

RE: [flexcoders] PrintDataGrid and wordWrap

2008-04-21 Thread Alex Harui
There's a bug open about multiline in PrintDG https://bugs.adobe.com/jira/browse/SDK-15305 From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chad Gray Sent: Monday, April 21, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: RE:

Re: [flexcoders] Can't get web page to scroll large Flex app

2008-04-21 Thread fredly
To do this you'll need to find out the height of your Flex app and then pass that to a JavaScript function in your html page. The JavaScript function then changes the height of your swf object. This will turn on the scroll bars when needed. In your MXML doc (in ActionScript) //first import the

[flexcoders] Debugging application

2008-04-21 Thread markgoldin_2000
How would I debug an app. when I run it as a released version? Is there anything like trace() available? Thanks

RE: [flexcoders] Re: Hello, and a question...

2008-04-21 Thread Tracy Spratt
Whoops, I saw AIR, but it didn't register completely, hence my focus on client vs server functionality. That is different with AIR. Not having much experience with AIR, I suggest you repost your question under a descriptive subject, in hopes that an AIR developer here will see and respond.

[flexcoders] Tiny components when using callLater()

2008-04-21 Thread Amy
I have a repeater inside a component that is drawn by a HorizontalList. When I set the dataProvider from the dataChange event, the repeater isn't ready when the component first draws. So, I have a choice. I can use callLater(), which, as I understand it, is the correct method, or I can call

[flexcoders] web application firewalls for AMF

2008-04-21 Thread Dimitrios Gianninas
Just got asked this question at work and I couldn't find anything online, so I'd thought I'd ask here, anyone heard of a web application firewall that supports AMF3? Dimitrios Gianninas RIA Developer and Team Lead Optimal Payments Inc. -- WARNING --- This electronic message and its

  1   2   >