[flexcoders] Re: Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-20 Thread Tim Hoff
Hi Mike, You could use calculations like this on the dataProvider and bind the return value to the textField. private function calculateTotal( myDataProvider : ArrayCollection ) : Number{         var totalAmount : Number = 0;      var n:int = myDataProvider.length;    for (var i:

Re: [flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Douglas Knudsen
Yeah, Evan, nice job man!  A interactive framework map, nice.  Be neat to have that for MG, Reactor, Machii, etc...DKOn 10/20/06, Nick Collins < [EMAIL PROTECTED]> wrote: I... I think I hear Angels singing sweetly in the backgroundOn 10/20/06, Evan Gifford < [EMAIL PROTECTED]> wrote:

[flexcoders] Looping through a DataGrid, in order to get Grand Total from 1 specific Column?

2006-10-20 Thread Mike Anderson
Hello All, I've done this before with Flash, but for the life of me, I can't remember how I did it... I need to loop though my DataGrid's Rows, and add up each value contained in the "Total" Column. And, I can't use my DataProvider property - because "Total" isn't part of the DataProvider - it's

[flexcoders] Using external image icons in a List Component - should be easy

2006-10-20 Thread dorkie dork from dorktown
This is an easy one but have not found an answer. I have a standard List component that will pull in and display external images. I do not want to embed all of them because there are dynamic and could change. This is for my application but could be for any chat application. You have your buddy l

RE: [flexcoders] Lines in text area component

2006-10-20 Thread Gordon Smith
I'm not sure what you mean by "setting the number of lines in the TextArea component"? If you want to control where line breaks occur, put the \n character into the 'text' String.   To get the line position of a particular character try using getCharBoundaries() and then getLineIndexA

RE: [flexcoders] getParagraphLength method error!!!!

2006-10-20 Thread Gordon Smith
Here is a simple application incorporating your code snippet. As I click in the TextArea, I don't get any errors. So you'll need to post your exact code and the exact sequence of user interactions that lead to your problem. What is the value of caretIndex when you get the error?   - G

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread Peter Armstrong
Hi Joost,Shameless plug:I'm writing a PDF-only book about using Flex 2 with Ruby on Rails.  I doubt that the Flex code should be considered "best practices" yet, but it's all Open Source (MIT license) so you can use it in commercial projects regardless of whether you have bought the book. If you

RE: [flexcoders] Re: E4X Help

2006-10-20 Thread Gordon Smith
You also need to change = to == in your E4X filter. A working example is below. - Gordon http://www.adobe.com/2006/mxml";> From: flexcoders@yahoogr

[flexcoders] Re: RSL: using runtime shared library prompts debug dialog [F2b3]

2006-10-20 Thread vitopn
Has this been fixed yet? Is there a workaround? Cheers, -Vito --- In flexcoders@yahoogroups.com, "Peter Blazejewicz" <[EMAIL PROTECTED]> wrote: > > Hello list, > > just to let you know, > I've just got mail from Adobe Flex QE after filling bug with that > issue, They were able to reproduce tha

Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle
BTW,In hwat I just wrote, you wouldn't even 'need' to extend the tree if you are not overrding any functionality. If you are just looking for a way to expresss the already present data of the TreeData, then all you would need is the custom item renderer class and; Peace, MikeOn 10/20/06, Michael

Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle
Hi,I would use the Tree. I think I understand what you are trying to accomplish.Basically you will look at the TreeItemRenderer. If you notice, the disclosureIcon, icon and label are all hard coded left align. All you would need to do is use the TreeData to get the indent and you could then posi

Re: [flexcoders] Version check for IE7 not working anymore

2006-10-20 Thread Nick Collins
First thing I'd check is whether _javascript_ is enabled in your install of IE7? Then I'd ask what are you using for your detection script? I'd recommend SWFObject.On 10/20/06, Jonas Windey <[EMAIL PROTECTED]> wrote: Hi, I just upgraded to IE 7 final, and I'm

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread Nick Collins
Last I saw the JBoss code was still only good for Beta 3 of Flex, and didn't work with the release version. Has this changed?On 10/20/06, P Smith < [EMAIL PROTECTED]> wrote: Joost, The open source JBoss Mail Server (aka Collaboration Server) might fit the bill:

Re: [flexcoders] Learning Cairngorm $0.02

2006-10-20 Thread Nick Collins
I'm not sure Jesse would care too much for being referred to as "her" but yeah, his blog has a lot of great stuff on it. One of my daily reads.On 10/20/06, Jamie O <[EMAIL PROTECTED]> wrote: Hello, I've been using Flex for a couple weeks, able to build apps t

[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread dougmccune
I think this is what you want: http://dougmccune.com/PanelTest/bin/JamJarEffect.html View source to check it out. The key is a simple extension of TitleWindow. It's called UndraggableTitleWindow and basically catches the mouse down event on the titlebar and cancels it from propogating so it never

[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread vitopn
Derrick, That got me on the correct path. I now have a working sample where the Shell application loads the Module app using the SWFLoader control. Communication between the module and the shell is done through a shared RSL. Next step is to work Cairnhorm and DataServices into the sample.

[flexcoders] proxy servlet reuse for flex 2?

2006-10-20 Thread tinkiknit
Hello... Total newbie here. :) I am trying to find out if we can reuse our proxy servlet from 1.5 in the new 2.0 environment. Here's what I believe I've got. We need to autheticate the user of our app and we use a servlet to intercept any calls to our application and any of the webservices it

[flexcoders] Re: array of arrays and XML

2006-10-20 Thread jnewport
Thanks for the quick response. I know its possible to loop over the XMLList, but I am not sure how to do it. I have used the XMLListCollection, but then when I try to use the XMLListCollection as a data provider I have use the "@" symbol as you suggested below. Using the "@" cause more problems

Re: [flexcoders] Uploads Needed Greater than 100 MB

2006-10-20 Thread Patrick Liechty
A more concrete answer from say an Adobe developer would be appreciated.  We are having trouble uploading large files of the size 200, 300 mb.- Original Message From: Stacy Young <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.comSent: Thursday, October 19, 2006 11:53:33 AMSubject: RE: [fle

Re: [flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Nick Collins
I... I think I hear Angels singing sweetly in the backgroundOn 10/20/06, Evan Gifford <[EMAIL PROTECTED]> wrote: Hey Guys,   For those of us who are scaling the cairngorm learning curve, you'll be happy to know that the cairngorm documentation group h

RE: [flexcoders] Anyone ever built a RSS scrolling component for Flex 2?

2006-10-20 Thread Peterson, Chris
This is totally beautiful! I have got it to *mostly* work, but I don't know where or what type of file its looking for when it throws an error related to proxy.php, and how to direct it to a new rss file? =) Beautiful work! Chris Peterson -Original Message- From: Mozilla By [mailto:[E

Re: [flexcoders] balanced tree?

2006-10-20 Thread Douglas Knudsen
ok, but extend which component in your idea?  DKOn 10/20/06, Michael Schmalle <[EMAIL PROTECTED] > wrote: Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, Mike On 10/20/06, Douglas Knudsen <[EMAIL PROTECT

RE: [flexcoders] Cannot get Accept-Language from HTTP header with httpService

2006-10-20 Thread Matt Chotin
Someone also pointed out to me that we have the flash.system.Capabilities.language value which provides some benefit if not the whole header.   Matt   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jfournet Sent: Friday, October 13, 2006 12:46 PM To:

RE: [flexcoders] gant chart

2006-10-20 Thread Andrew Trice
You could create itemrenderers for a datagrid that utilize the drawing API to draw the horizontal lines for your data.   For instance, have a grid like this:   Column 1: task name Column 2: duration Column 3: start date Column 4: item renderer that draws out task length with resp

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
Also just another quick note, using your code of event.currentTarget as DisplayObject rendered the error of "1067: Implicit coercion of a value of type flash.display:DisplayObject to an unrelated type mx.core:IFlexDisplayObject ."On 10/20/06, mdoberenz <[EMAIL PROTECTED]> wrote:

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
You are correct on not wanting to make the TitleWindow to be able to be dragged however I have yet to figure out how to disable the dragging on the TitleWindow. Our original idea was to use a panel however we would like it to be able to have the ability of a close button on the top right to imit

Re: [flexcoders] balanced tree?

2006-10-20 Thread Michael Schmalle
Hi,Seems to me you could do this quite easy with itemRenderers, using indent calculations based off of measured or unscaled witdth.Peace, MikeOn 10/20/06, Douglas Knudsen <[EMAIL PROTECTED]> wrote: Ok, I'm starting to work on creating a 'balanced' tree compone

RE: [flexcoders] gant chart

2006-10-20 Thread Iko Knyphausen
There is a flash component out there (http://www.anychart.com/products/anychartgantt.shtml). I have emailed them with some questions, but have not yet received a response. If you know others, please let me know. I would be quite interested in such a chart for my flex apps too...   I

[flexcoders] balanced tree?

2006-10-20 Thread Douglas Knudsen
Ok, I'm starting to work on creating a 'balanced' tree component.  I planned to extend UIComponent.  Any other suggestions on which class I should extend?  Wondering If I could exptend the Tree class and make it work somehow.  By 'balanced' tree I mean one where the nodes pile up on center, not

[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread mdoberenz
You'll want to do this... public function removeMe(event:CloseEvent):void { PopUpManager.removePopUp(event.currentTarget as DisplayObject); } Should work... By the way, I'd suggest not using a TitleWindow, but instead, use a Panel. I noticed that I can move the TitleWindow around wher

[flexcoders] gant chart

2006-10-20 Thread arnold_charming
Hello! I'm currently working on builidng a gant chart for my application. And I have some question for which I would be very gratefull if you could help me out. 1. Because gant chart doesn't have a fix number of tasks, how to setup a chart legend? 2. How can I build a gant chart from XML file? Ti

Re: [flexcoders] building project slow on vpn network

2006-10-20 Thread Kevin Morland
Hello,You should be running some sort of repository, like SVN.  You would have the files on the server however you would also have a local copy on your computer and execute locally.  Once, you are finished with the file you can commit the file and the rest of organization would have access to the

Re: [flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
Sorry for the delay, that code ended up working. I now have a few more issues to deal with but this is a good start at least it's one less issue I have to deal with. Thanks for the post. On 10/20/06, dougmccune <[EMAIL PROTECTED]> wrote: try: public function r

[flexcoders] Adobe Flickr library (potential bug)

2006-10-20 Thread klumikaze
Has anybody experimented much with the Flickr library that's on Adobe Labs? Overall, I'm thrilled with it... it works wonderfully. However, one crucial piece for me is the ability to retrieve the number of comments on a given Photo object. Currently, the Photo objects all have a commentCount of 0

[flexcoders] Exposing Flex & FDS to Flash; LocalConnection Performance Issues

2006-10-20 Thread Jim Robson
We have a Flex 2 app that uses FDS, and it's working pretty well. What we want to do is make our engine available to business partners, so that they can develop their own UIs for our it. Ideally, they should be able to develop their UIs using Flash (we don't want to require them to use Flex). As

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread P Smith
Joost, The open source JBoss Mail Server (aka Collaboration Server) might fit the bill: http://labs.jboss.com/portal/jbossmail/ And the Flex 2 UI was coded by Adobe's own James Ward using the Cairngorm framework for Flex 2! So, it is big, it is free, and it implements best practices. fyi ..

[flexcoders] Re: E4X Help

2006-10-20 Thread Michael Labriola
Tangent, Remove the {} from around selected : var counties:XMLList = _myXml.state.(@label=selected).county; Mike --- In flexcoders@yahoogroups.com, "Tan" <[EMAIL PROTECTED]> wrote: > > I try writing two comboboxes to facilitate selection of the following XML, > > > > >

[flexcoders] Re: Pass Data or call function in another MXML file?

2006-10-20 Thread Jim Robson
OK, so I can't count. I think Math is overrated, anyway. :-) Thanks, Tom -Jim --- In flexcoders@yahoogroups.com, Tom Sammons <[EMAIL PROTECTED]> wrote: > > just one little thing in Jim's setMasterDate function; AS date is the > numeric value of the month, but it starts at offset 0, so you'll h

[flexcoders] Learning Cairngorm $0.02

2006-10-20 Thread Jamie O
Hello, I've been using Flex for a couple weeks, able to build apps that are a shaky mix of loose / tightly coupled components, but functional all the same. After reading the revered 6-part articles to whet my appetite, I felt I was ready to dig in. The Cairngorm 2 Store demo invoking FDS scared m

[flexcoders] Re: Sending an array from Flex to PHP

2006-10-20 Thread christophevond
I am still very much confused on exactly how this is suppose to work. Could someone show me a quick example of how to send data from an ArrayCollection or Array in flex to an array in php. I would really appreciate it and sorry for my lack of understanding. -- Flexcoders Mailing List FAQ: http:

[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread Derrick Grigg
Hey Vito, I would suggest creating Module 4 as a seperate Flex Project, which you can create an SWF from. Have you shell application use the SWFLoader to load the Module4.swf instead of adding Module4.swc as an RSL. This will make the module development easier (since you can compile,run and test s

[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread dougmccune
try: public function removeMe(event:CloseEvent):void { var window:TitleWindow = TitleWindow(event.currentTarget); PopUpManager.removePopUp(window); } --- In flexcoders@yahoogroups.com, "Jeremy Rottman" <[EMAIL PROTECTED]> wrote: > > When I try this. > > public function removeMe(event:Close

Re: [flexcoders] 'big' sample projects

2006-10-20 Thread julien castelain
Hi Joost, There are nice samples on the Adobe site http://www.adobe.com/devnet/flex/index.html?tab:samples=1#adobesamples ciao     On 10/20/06, Joost Saanen <[EMAIL PROTECTED]> wrote: Are there any complete sample sites where the source is free? I would like to know how I can setup a comple

[flexcoders] Errors exist in required project(s)

2006-10-20 Thread jnewport
Is there a way to find out what error is when you are not given a red X? I have searched my code inside and out of a very large project and I cannot find the problem. Is there a log file somewhere that will tell you where the problem lies? I am new to Flex and to programming. Does setting brea

[flexcoders] New resource for learning Caringorm!

2006-10-20 Thread Evan Gifford
Hey Guys,   For those of us who are scaling the cairngorm learning curve, you’ll be happy to know that the cairngorm documentation group has just launched our website!   You can find it here: http://www.cairngormdocs.org/   There are many useful tools, example apps and of course the

[flexcoders] E4X Help

2006-10-20 Thread Tan
I try writing two comboboxes to facilitate selection of the following XML, ... ... ... The first combo box is named _combo1 that is populated by state

[flexcoders] building project slow on vpn network

2006-10-20 Thread amigo_fd
Hello, I'm working from home with vpn to the office. My flex-project is on a shared directory on the office-server and I'm working on this files with colleges at the office. So files have to be on the server. I already changed my build folder to a local folder on my own harddisk, but building sti

RE: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Evan Gifford
That was it, thanks! - Fixed     From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greg h Sent: Friday, October 20, 2006 10:20 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store  

Re: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread greg h
Jamie, I found the ASDoc for Cairngorm 2 very helpful.  They are downloadable from this link: http://weblogs.macromedia.com/amcleod/archives/2006/06/cairngorm_2_-_a.cfm imho, with Cairngorm the ASDoc are required reading.  And the 6-part series is optional reading :-) I think the comments you

Re: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread greg h
Evan, The home page at www.cairngormdocs.org renders fine with IE6, but when I browse with Firefox and Mozilla the main body content does not display. In the inline CSS there is a that you might want to remove.  hth, g On 10/20/06, Evan Gifford <[EMAIL PROTECTED]> wrote:

[flexcoders] Re: TextInput control (displaying CurrencyFormatted data) question

2006-10-20 Thread Michael Labriola
Mike, There are a bunch of ways you can approach this some more elegant than others. Let me give you a few hints: #1) There is a method of the NumberBase class called parseNumberString which will parse apart a formatted number string and give you back something you could work with...It is used w

[flexcoders] Re: Creating JarJam button Effect.

2006-10-20 Thread Jeremy Rottman
When I try this. public function removeMe(event:CloseEvent):void { PopUpManager.removePopUp(event.currentTarget); } I get this error. 1118: Implicit coercion of a value with static type Object to a possibly unrelated type mx.core:IFlexDisplayObject. --- In flexcoders@yahoogroups.

RE: [flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Evan Gifford
http://www.cairngormdocs.org/   You can get multiple sample apps (including the store) and a couple neat learning tools here :^)   We don’t have the individual documentation for the store, however, I’ll try to get my hands on those and post if I can.   Thanks, Evan   Fr

[flexcoders] Anyone ever built a RSS scrolling component for Flex 2?

2006-10-20 Thread Peterson, Chris
I would like to have a flexible sized pod for a site I am building, that I can point it to an RSS address and have it display the Title / story, and auto-scroll through from one title to the next. Anyone ever seen such a beastie in Flex? There are tons of JavaScript examples, but I would like to

[flexcoders] cairngorm - misuse of front controller? & JSM w/Flex 2

2006-10-20 Thread fuad_kamal
Couple unrelated questions: first, regarding Cairngorm: Generally we use one front controller instance to capture user gestures, and yet another front controller instance to capture 'server gestures' - to capture events sent from the server and respond to them. Is this an appropriate model or is

RE: [flexcoders] Does FDS project have to compile on the server?

2006-10-20 Thread Allen Riddle
Thanks for your help. I do have the entry pointed to my services-config.xml file, and application is even able to find my Data Service destination (in this case, it’s a Hibernate entity). But when I try to call the fill method, I get:   [RPC Fault faultString="Send failed" faultCode="

RE: [flexcoders] Re: Text Area autofit, autosize

2006-10-20 Thread Steve Kellogg @ Project SOC
Have you tried "left=0 right=0"? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grunz1234 Sent: Friday, October 20, 2006 7:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Text Area autofit, autosize maybe someone knows the probl

RE: [flexcoders] Re: Set Focus on TextInput

2006-10-20 Thread Dustin Mercer
Try setting focus to the textField in the creationComplete or show event of the TitleWindow itself.  If that doesn’t work, you could try overriding the setFocus method of the TitleWindow.   I.E. override public function setFocus() : void {     super.setFocus();    

Re: [flexcoders] Flex and Crystal reports

2006-10-20 Thread Jeff Krueger
I could be wrong but I don't think this is possible.  I found that for reporting the best thing to use is cold fusion report writer.  This can produce swf files (flash paper) and they can be loaded into a flex app.   Jeffwespinozab <[EMAIL PROTECTED]> wrote: Hi, Is it possible to open a c

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread julien castelain
fullscreen anything :) On 10/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: >>Anyone knows what is that about?fullscreen video On 10/19/06, Rogerio Gonzalez <[EMAIL PROTECTED] > wrote: Hello all,In the addobe labs, there also updates for the windows(ie/ff)/mac player versions.Anyone know

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Rogerio Gonzalez
Not only that...http://labs.adobe.com/technologies/flashplayer9/releasenotes.html#fixedThey fix a lot of bugs :P including the ExternalInterface with Firefox bug (on the version 16). RogerioOn 10/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: >>Anyone knows wha

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Brendan Meutzner
Awesome... one less excuse for Flex nay-sayers... not that we cared about Linux users to start with ;-)Kidding just kidding put your pitchforks away...Brendan On 10/19/06, Johannes Nel <[EMAIL PROTECTED]> wrote: >>Anyone knows what is that about?fullscr

RE: [flexcoders] Re: Making the datagrid header background alpha 0

2006-10-20 Thread Andrew Trice
Nice, I like how that turned out.   _ Andrew Trice Cynergy Systems, Inc. http://www.cynergysystems.com   Blog: http://www.cynergysystems.com/blogs/page/andrewtrice Email: [EMAIL PROTECTED] Office: 866-CYNERGY    From: flexcoders

[flexcoders] Re: Label rotations, text disappears

2006-10-20 Thread app.developer
I'm not new. I did search the archives but didn't find a great answer until yesterday when ppl responded. The code is in affect and I'm packing for VegasAdobe MAX. Precia --- In flexcoders@yahoogroups.com, "KP" <[EMAIL PROTECTED]> wrote: > > I have also faced similar problem but if you a

Re: [flexcoders] Flash Player 9 Beta Available

2006-10-20 Thread Yiðit Boyar
really thanks adobe, adobe made me use windows since i've been working with flex and my friends had diffuculties in using my RIAs since they prefer Linux.so thanks adobe, looking for the final release...- Original Message From: Johannes Nel <[EMAIL PROTECTED]>To: flexcoders@yahoogroups.co

[flexcoders] Re: Text Area autofit, autosize

2006-10-20 Thread grunz1234
maybe someone knows the problem? > > Hello > > I want to autoFit / autoSize the textArea on the text the user is > currently tipping. So I Have > > mouseFocusChange="focusOut()" deactivate="focusOut()" > textAlign="center" borderStyle="none" height="20" width="{dummy.width}" > wordWrap="fals

[flexcoders] Re: Get Tab from TabBar?

2006-10-20 Thread Jamie O
If the tabbar is bound to the viewstack as a dataprovider, you can manipulate properties of the tabbar / tab based on what the currently selected child in the viewstack is. I'm using a similar approach to set the style of the selected tab so that it's background colour matches the selected child w

[flexcoders] Re: More Documentation of Cairngorm and Flex Cairngorm Store

2006-10-20 Thread Jamie O
Hey, Does anyone know where these links might reside beyond the www.richinternetapps.com site which I've been unable to get a response from for the last couple of days? I've read the 6-part series and *think* I *get* Cairngorm, but getting the first sample(s) up and running has posed a little chal

[flexcoders] hitData.item.(variable)

2006-10-20 Thread jnewport
Syntax problem. Is it possible to use a code like the following to create a dataTip? somePublicVariable = revenue var strRegData:String = ("@" + somePublicVariable) hitData.item.strRegData My somePublicVariable is set when using my custom component. I am trying to get strRegData to = "@revenue

Re: [flexcoders] Help! Problem reinstalling FlexBuilder

2006-10-20 Thread Douglas McCarroll
Hi Matt, > You’re sure you’re selecting the root of the eclipse directory for your install? You're right. I could swear that on previous attempts I had checked for this but in this attempt I had re-downloaded Eclipse and it seems to have configured its folders differently. There was another "

Re: [flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread Carlos Rovira
Hi,1.- I'm using SWFLoader instead of Loader since it's more usable when you want to load Applications and interact with the Apps loaded.2.- The Debug problem was discused on the list. When FB2 extracts the SWC it does with -debug=false, this could be fixed if FB2 let developers to configure the

RE: [flexcoders] Announcing the AS3 Lightweight Remoting Framework

2006-10-20 Thread Danny Patterson
I don't have a full application as a sample, but as you can see there is a functioning code sample on the os flash project page.   http://osflash.org/as3lrf DP   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of RR-007Sent: Thursday, October 19, 2006 7:00 PMTo: fle

Re: [flexcoders] Pass Data or call function in another MXML file?

2006-10-20 Thread Tom Sammons
just one little thing in Jim's setMasterDate function; AS date is the numeric value of the month, but it starts at offset 0, so you'll have to add 1 to it for proper display: MasterDate.text = d.month+1 + "/" + d.date + "/" + d.fullYear; --- tom -- Flexcoders Mailing List FAQ: http://groups.

[flexcoders] 'big' sample projects

2006-10-20 Thread Joost Saanen
Are there any complete sample sites where the source is free? I would like to know how I can setup a complete site, with logindialogs, errorhandling, different components, etc., I did some tutorials of the with flex delivered getting started guide but I mis some big sample projects for learning

Re: [flexcoders] Re: FDS/PHP/AMFPHP

2006-10-20 Thread RR-007
First thing you should do is obtain a copy of WAMP server which will create a webserver for you with Apache, MySQL, and PHP Next make sure that the WAMP server is running and that you myPhpAdmin from your localhost Create database and tables or run the script provided in the tutorials Also make

[flexcoders] Re: Architecting a large, modular Flex application

2006-10-20 Thread vitopn
Hi All, I've been spinning in circles trying to implement a modular dynamic loading architecture for our client app. I've been studying this thread and a few others and I think it's starting to sink in but I'm not there yet. I've tried a very simple sample with a Shell that dynamically loads a

[flexcoders] Datagrid: Data Text Overlaying Header Title

2006-10-20 Thread mindmillmedia
I am attempting to find out what is behind a datagrid problem I am having. When I scroll a datagrid (by grabbing the slider) it usually creates this error (but not always). An example can be seen here: http://www.mindmillmedia.com/flexdatagridheader.jpg The datagrid column ends up overlaying the

Re: [flexcoders] Set icon without using @Embed?

2006-10-20 Thread Rich Tretola
I have done this by embedding the images as type Class and then using a binding to show the one you want at any point in time. Rich On 10/19/06, zzwi89 <[EMAIL PROTECTED]> wrote: > Instead of using text to label a set of tabs, I am using some images. > Currently I use the following syntax: > > c

[flexcoders] Version check for IE7 not working anymore

2006-10-20 Thread Jonas Windey
Hi, I just upgraded to IE 7 final, and I'm getting the "Alternate HTML content should be placed here. This content requires the Adobe Flash Player. Get Flash" message when I open my app. Anyone with a quick fix? I got fp9.0 installed Thanks, Jonas -- Flexcoders Mailing List FAQ: http://groups

RE: [flexcoders] Re: Label rotations, text disappears

2006-10-20 Thread KP
I have also faced similar problem but if you are new to flexcoders then you need to search archives and you can find the code for these I have posted some code related to this.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Derrick Grigg Sent: Thursd