[flexcoders] Empty Movie

2005-10-02 Thread Andora, Greg
Hi all, I'm building an application using Flex with Cairngorm and for some reason the Flex application isn't loading. I am not getting any errors in the browser and I can see the Initializing progress bar for a split second (it doesn't fill up) before the page "thinks" it is loaded.

RE: [flexcoders] Empty Movie

2005-10-02 Thread Andora, Greg
Never mind, I've narrowed down the problem to my controller adding commands that go to the CF side of things. Still odd it doesn't give any type of errors though. Thanks. Thank you,Greg Andora From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andora, GregSent:

Re: [flexcoders] sending arguments to addEventListener

2005-10-02 Thread Aly Sidi
hey face7Hill i dont think you can pass arguments to an eventlistner, only function pointers..so in your nextButton.addEventListener( click, goToScreen(screen2)); the screen2 parameter is never getting passed. If you want to invoke this function from code then I think you have to use teh

RE: [flexcoders] How to print PDF file when click on a button

2005-10-02 Thread Simon Fifield
Try looking here for an example of using iFrame in your Flex app: http://coenraets.com/viewarticle.jsp?articleId=95 run the example and you could put your PDF where the web page is and then use _javascript_ to print the PDF (I'm guessing the last bit!) Simon From:

Re: [flexcoders] Flash 8 compatibilty with Flex

2005-10-02 Thread Manish Jethani
On 10/1/05, sandip_patil01 [EMAIL PROTECTED] wrote: My server details -- OS : RedHat Linux Application Server :Jboss4.0.1sp1 JDK 1.4 Client browser details : IE 6.0 Flash Player8x Now when I am running my upload functionality in my local system(Win XP) fileio.browse() function opening

Re: [flexcoders] Accordion destroyChildAt

2005-10-02 Thread Manish Jethani
On 10/1/05, Ghislain Simard [EMAIL PROTECTED] wrote: If I am destroying a child (using destroyChildAt) in my accordion, how to reinsert it when needed ? Use createChild to create it again. Yahoo! Groups Sponsor ~-- Fair play? Video games

Re: [flexcoders] hidding a stack in the accordion

2005-10-02 Thread Manish Jethani
On 10/1/05, Ghislain Simard [EMAIL PROTECTED] wrote: How to programtically hide a stack (or a tab) in an accordion? One accordion pane will be visible at any given time. To switch to another pane simply set the 'selectedIndex' property accordingly. Yahoo! Groups

Re: [flexcoders] Dynamic Object Bindings

2005-10-02 Thread Manish Jethani
On 10/1/05, Aly Sidi [EMAIL PROTECTED] wrote: I was wondering if there was a way to iterate over an object created by XML2Object See the 'in' operator of ActionScript. Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics.

RE: [flexcoders] sending arguments to addEventListener

2005-10-02 Thread Abdul Qabiz
There are some problems in your code: 1) addEventListener(..) expects second argument as function reference but in your case you are calling a function(goToScreen(..)) while subscribing to event and function return value is Void, so events are not subscribed properly. 2) You are trying to

RE: [flexcoders] events issue

2005-10-02 Thread Abdul Qabiz
Hi, Can you post the sample-but-complete code, so that we can see what is going wrong? -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Husain KitabiSent: Saturday, October 01, 2005 8:48 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] events issue

Re: [flexcoders] Tile List Effect.

2005-10-02 Thread Manish Jethani
On 10/1/05, Omar Ramos [EMAIL PROTECTED] wrote: Does anyone knows how was the effect of the http://www.caledonbank.com/accountFinder.html sort effect was made? Like this? ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Tile id=tile width=200 height=200

Re: [flexcoders] extending the DataGrid component

2005-10-02 Thread Manish Jethani
On 9/30/05, Jaime Bermudez [EMAIL PROTECTED] wrote: I am trying to create a custom datagrid component that handles double-click events, but when I try to use the datagrid in an MXML component w/ the columns setup I get a compilation error. Here's an example of the component use:

Re: [flexcoders] how to add an icon in the Panel bar?

2005-10-02 Thread Manish Jethani
On 9/30/05, Ghislain Simard [EMAIL PROTECTED] wrote: how to add an icon in the Panel bar? http://www.mail-archive.com/flexcoders@yahoogroups.com/msg06841.html Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the

RE: [flexcoders] Tile List Effect.

2005-10-02 Thread Steven Webster
Omar, We had to implement our own container to achieve this effect; the container intelligently adapts the presentation of the children depending on the space available to the children, as well as managing the move effects for children as you described. Alistair (McLeod) was largely responsible

Re: [flexcoders] Cannot link two controls with a custom event

2005-10-02 Thread Manish Jethani
On 9/30/05, jivankohinoor [EMAIL PROTECTED] wrote: LinkNavigator id=sender height=100% width=75% objkey={objkey} / LinkNavigator id=receiver sender={sender} height=100% width=75% / Then in the LinkNavigator source, we have a function that creates the

Re: [flexcoders] Questions about createChild() and destroyChildAt()

2005-10-02 Thread Manish Jethani
On 9/27/05, Prasad Dhananjaya [EMAIL PROTECTED] wrote: 1.How can I give mouseOver,mouseOverEffect,mouseOut,mouseOutEffect,mouseUp events to createChild().(check ★).I want to give above affects to all created children which are on the JobNetCanves. (In below code all

Re: [flexcoders] div like behaviour?

2005-10-02 Thread Manish Jethani
On 9/30/05, flexhansen [EMAIL PROTECTED] wrote: Is there an easy way to achieve mx:Tile behaviour but without the tiles being of equal size? In other words I'm looking for something like the div-tag of plain old html that wraps content to fit the width prop. instead of putting up

Re: [flexcoders] Popping up the same window more than once

2005-10-02 Thread Manish Jethani
On 9/29/05, fowleryj [EMAIL PROTECTED] wrote: I've noticed that if I have WindowA open, and I click a button inside of it that opens WindowB, a button inside of WindowB that is supposed to open an instance of WindowA will not do so. [...] Not sure what you mean by same window. Calling

[flexcoders] Re: Can someone please make a simple Amazon search application?

2005-10-02 Thread pioplacz
I've got the subscription key and the link to wdsl i used is: http://webservices.amazon.com/AWSECommerceService/AWSECommerceService .wsdl I cannot give out my subscriptionkey but you can get it for free on amazon. Anything else you need? Here is the link to the amazon webservice page where

[flexcoders] Re: Can someone please make a simple Amazon search application?

2005-10-02 Thread pioplacz
Thx really thanks!!! --- In flexcoders@yahoogroups.com, Jeff Tapper [EMAIL PROTECTED] wrote: I just put together an example on my blog. You can find it here: http://jeff.mxdj.com/using_amazons_itemsearch_webservice_from_flex.ht m At 05:46 PM 10/1/2005, pioplacz wrote: Hi! I have now

Re: [flexcoders] Flex DataGrid with large recordset

2005-10-02 Thread Manish Jethani
On 9/29/05, sergei_tsoganov [EMAIL PROTECTED] wrote: When I first loaded my flex datagrid with 190 records I was really disappointed in flex. It was almost impossible to scroll tha grid or resize it. It seems like flex components are much slower than even flash components. What is the

[flexcoders] Help with error message ASAP!

2005-10-02 Thread delaquae
I just started getting the following error message when I try to compile an mxml file I have been working on in FlexBuilder: Branch between 9975 and 43151 around line 0 exceeds 32K span. If possible, please refactor this component. Can someone tell me what this means? Is my file too large?

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Kelly Roman
You are going to have to break up your file into components. Its a good design practice anyways so get in the habit of it. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of delaquae Sent: Sunday, October 02, 2005 6:51 PM To:

RE: [flexcoders] Help with error message ASAP!

2005-10-02 Thread Matt Chotin
And check the faq (linked below) for more info. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kelly Roman Sent: Sunday, October 02, 2005 4:31 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Help with error message ASAP!

RE: [flexcoders] Popping up the same window more than once

2005-10-02 Thread Mercer, Dustin
Just Curious, are you using the cairngorm framework and is there a viewhelper used in this window??? If so, the problem may be with the same viewhelper trying to be instantiated twice (Once in widow A, then again in window B). If you try to instantiate more than one viewhelper with the

[flexcoders] Re: Help with error message ASAP!

2005-10-02 Thread delaquae
Thanks, That worked. I planned on re-factoring at some point, but since it is a quick dirty prototype I thought I could get away with a single file for now... Oh well! Martin --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: And check the faq (linked below) for

[flexcoders] Re: Help with error message ASAP!

2005-10-02 Thread delaquae
Matt, I did not see a FAQ link in your post. Did I miss something? Martin --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: And check the faq (linked below) for more info. Matt From: flexcoders@yahoogroups.com

[flexcoders] charting effects question

2005-10-02 Thread delaquae
If I want to preserve an effect that is declared via mxml: mx:Effect mx:SeriesInterpolate duration=2000 elementOffset=5 name=interpolate/ /mx:Effect when I use AcionScript later to add a series to a chart, the following does not seem to work: var cllSeries=new

Re: [flexcoders] Flex DataGrid with large recordset

2005-10-02 Thread Tariq Ahmed
I have always had list performance issues. Flash 8 helped a bit. But to reproduce just change your datagrid tag to this: mx:DataGrid creationComplete="event.target.dataProvider = largeArray" height="100%" The scroll will act chunky. Turn on variable height and column wrapping, a few more

[flexcoders] Flash 9 Wishlist

2005-10-02 Thread Tariq Ahmed
Just copying and pasting this: It's that time again! Flash 9 wishlist... Believe it or not, we're already getting to work on the *next* release of Flash. We're very proud of the work that we've done in Flash 8 but we also know that there are several things that just couldn't make it into

Re: [flexcoders] Flash 9 Wishlist

2005-10-02 Thread Scott Barnes
Cool I submitted UI Serialization *(fingers crossed)* On 10/3/05, Tariq Ahmed [EMAIL PROTECTED] wrote: Just copying and pasting this: It's that time again! Flash 9 wishlist... Believe it or not, we're already getting to work on the *next* release of Flash. We're very proud of the