[flexcoders] NetStream - any way to play bytes

2008-02-15 Thread polestar11
Hi Is there any way that a Netstream class can play bytes in memory, rather than referencing a filename? Cheers Tracy

[flexcoders] simple renderer please help..........please review it

2008-02-15 Thread learner
Hi all, I am doing my constant effort to learn and make a decent item renderer for a list .. I have also attached a code that i have written for it... please please have a look at it and tell me where i am doing wrong and loopholes are... the problem that i am facing is ; in my image holder the

[flexcoders] Flex applications in Chinese

2008-02-15 Thread stephen50232
Hi, I have a flex application which is already in English, but has now been resold to a Chinese company. So I'll need to change the English to Chinese. Does Flex currently support Chinese? Stephen

[flexcoders] Re: Help with RegEx

2008-02-15 Thread marty.pitt
Yeah, that'd be great! My email is kiwicomposer at hotmail dot com Thanks Jhonny. Marty --- In flexcoders@yahoogroups.com, Jhonny Everson [EMAIL PROTECTED] wrote: To solve a similar problem I wrote a lexical analyzer and a parser in AIR. I use it to convert Java code to AS3 to using with

Re: [flexcoders] Re: Popup over a form

2008-02-15 Thread Tom Chiverton
On Thursday 14 Feb 2008, markgoldin_2000 wrote: Also how can I make my popup window a none transparent? Have a look at the styles for it on LiveDocs. -- Tom Chiverton Helping to greatly restore next-generation e-commerce on: http://thefalken.livejournal.com

Re: [flexcoders] Convert LineSeries to ColumnSeries

2008-02-15 Thread Tom Chiverton
On Thursday 14 Feb 2008, Brad Bueche wrote: How do I tell if the object that kicked it off is a Line chart or a column chart? props = ColumnSeries(hitData.element).displayName; Something like if (hitData.element is ColumnSeries){ ? -- Tom Chiverton Helping to globally accelerate

[flexcoders] Clear validation

2008-02-15 Thread Giles Roadnight
Hi All I am using validators on my form and all is workign well. I have a problem when I clear the form and set all of the text fields back to . All of the form items go red. Is there a way of resetting the validator / form item to get rid of this until it is next edited? Thanks

Re: [flexcoders] Clear validation

2008-02-15 Thread YOGESH JADHAV
when to do textfield.text = also make textField.errorString = ; On Fri, Feb 15, 2008 at 3:22 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I am using validators on my form and all is workign well. I have a problem when I clear the form and set all of the text fields back to . All

Re: [flexcoders] Clear validation

2008-02-15 Thread Giles Roadnight
fantastic, many thanks On Fri, Feb 15, 2008 at 10:05 AM, YOGESH JADHAV [EMAIL PROTECTED] wrote: when to do textfield.text = also make textField.errorString = ; On Fri, Feb 15, 2008 at 3:22 PM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All I am using validators on my form and

[flexcoders] Buttons in text

2008-02-15 Thread tvikatos
I want to have text, where specific words act like buttons, i.e. when clicked dispatch an event. Something like hyperlinks that instead of opening up web pages, do whatever I want them to do. Any idea how to achieve this?

Re: [flexcoders] Search Engines

2008-02-15 Thread Tom Chiverton
On Thursday 14 Feb 2008, Guilherme Defreitas Juraszek wrote: The Flash/Flex apps contents are indexed by Google and other search engines like a html, pdf and others types? No one is sure. Adobe have an SDK to allow this. You can of course provide search engine friendly HTML alternative content.

[flexcoders] File Download

2008-02-15 Thread jitendra jain
Hi friends, I'm developing an application in which my backend is Java and front end is flex. Now i want the java to generate dynamic files and send to the flex . I have a method in java that returns the File . Now all i have to do is to get this file and convert into the respective object.

Re: [flexcoders] Flex applications in Chinese

2008-02-15 Thread rabbit69
sure! All you have to do is change EN characters to Chinese characters, no problems! rabbit69 2008-02-15 发件人: stephen50232 发送时间: 2008-02-15 16:57:11 收件人: flexcoders@yahoogroups.com 抄送: 主题: [flexcoders] Flex applications in Chinese Hi, I have a flex application which is already in

Re: [flexcoders] File Download

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, jitendra jain wrote: FileReference, but it hasn't worked for me. Suggest me the best way to convert this incoming object(File object (java.io.File)) into the Flex Why not just navigateToFile() the Flex client ? -- Tom Chiverton Helping to apprehensively foster 24/7

Re: [flexcoders] Performance difference between ArrayCollection.removeAll() and ArrayCollection.source = []

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, Arpit Mathur wrote: the ArrayList class, I see that the removeAll loops through the entire array, looking at each member to see if its an event dispatcher and if so calling a function to remove the propertyChange listener. Why is this implemented this way ? Is there any

Re: [flexcoders] Simulating Flex Client requests using Java?

2008-02-15 Thread Marvin Froeder
Does flexunit support as3flexunitlib asynchronous call? VELO On Fri, Jan 4, 2008 at 2:23 PM, Jeffry Houser [EMAIL PROTECTED] wrote: I'm speaking a bit off the cuff here, but... Would it make sense to look into FlexUnit ( http://code.google.com/p/as3flexunitlib/ ) for these type of things?

[flexcoders] passing variables between two consecutive flex applications

2008-02-15 Thread yigit
hi all, i have 2 sperate flex applications (say A B), the user first uses A, then B; and A has to pass an XML file to B. i just could not find a way to pass the xml. it is long so i can not use GET method (so Application.application.parameters) and i do not want to use a server side script to

Re: [flexcoders] Buttons in text

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, tvikatos wrote: Any idea how to achieve this? LinkButton ? Text.htmlText with A HTML tags in ? -- Tom Chiverton Helping to greatly aggregate dot-com schemas on: http://thefalken.livejournal.com This email is sent

RE: [flexcoders] Buttons in text

2008-02-15 Thread Merrill, Jason
Which version of Actionscript? If you mean 1 or 2, read up on asfunction. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community From:

RE: [flexcoders] Buttons in text

2008-02-15 Thread Merrill, Jason
Ooops - my bad, it wouldn't be AS1 or 2 in Flex, I thought this was posted on a Flash list. For AS3, check out TextEvent.LINK. Here is a quick sample I googled: var linkText:TextField = new TextField(); linkText.htmlText = 'Link: a href=event:Link ClickedClick/a'; addChild(linkText);

[flexcoders] Loader.load() Error

2008-02-15 Thread NileAge, Mail
Hello all, I'm trying to execute this example but appear the error message (Call to a possibly undefined method load through a reference with static type Loader ). I'm using Flex 2. Plz tell me what is the problem?

[flexcoders] Any way to version a swf with major and minor

2008-02-15 Thread essuark
See subject? thanks r

[flexcoders] Re: Buttons in text

2008-02-15 Thread tvikatos
Thanks Jason!

[flexcoders] File exist

2008-02-15 Thread doldol35
Dear Flex Coders: I am using Flex2. IS there any way to find whether a certain file (ex: test.jpg) exists in the folder Any help or hint is appreciated. Thanks.

[flexcoders] composite component that calls remoteobject

2008-02-15 Thread mey0w
Hi, I have written a basic composite component which subclasses UIComponent. It uses addChildren() to add a number of shapes as children. My problem is I want to extend the component to fetch the number of shapes to be displayed from the server. My question is, how can I call my remoteobject

[flexcoders] Problem to re-render a Connector component

2008-02-15 Thread xmwang1982
Hi experts, I am going to design component called connector, which draws a line between the point at which you press your mouse and the point at which you release your mouse. Before release mouse, the line end point should follow the mouse -- like you see in MS visio when you draw a line to

[flexcoders] draw simple shapes in a Flex app?

2008-02-15 Thread learner404
Hi guys, I'm new at Flex3/AS3 and I'm already stuck at what I thought would be a simple hello world script: GOAL: A flex app with a button. When the button is hit it a simple shape (rectangle) would appear to the screen. PROPOSAL (doesn't work): draw.mxml: ?xml version=1.0 encoding=utf-8?

[flexcoders] OnClick event on tabnavigator

2008-02-15 Thread Manish Sharma
Hi Please let me know if I can create any onclick event for the tab navigator. Here is what I m looking for: I have an application with three tabs. Whenever the user clicks on any tab say on tab 2 then I want to display a confirmation msg that he need to save the changes made in the

[flexcoders] I got the the value when using trace, but failed when make a comparison

2008-02-15 Thread Jati Putra
Dear All, Please check this code, what is the problem? AS3 : public function validateLogin(e:String):void{ trace(e); if('OK' == e){ mx.controls.Alert.show(OK); //navigateToURL(tujuan,'_self'); }else{

Re: [flexcoders] Loader.load() Error

2008-02-15 Thread shiv . . ah
Hi all, I am currently working on an AIR product. I am facing the cache issue on images. We are loading around hundreds of images as thumbnails and i am using the below mentioned code : var myLoader:Loader = new Loader(); myLoader.name = loaderObj; var

RE: [flexcoders] draw simple shapes in a Flex app?

2008-02-15 Thread Merrill, Jason
You need to add the sprite to a container of some kind like a canvas or a panel. And to draw a Rectangle, why are you using beginBitmapFill? Just try beginFill instead. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform

[flexcoders] Re: Simulating Flex Client requests using Java?

2008-02-15 Thread aduston1976
Yes it does. But using flex unit for a purpose like this cannot really be properly called a unit test but rather an integration test. I typically find that the cost-to-benefit ratio of testing -- which can become arbitrarily high -- is lower when I am testing my java code and my as3 code

[flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread aduston1976
1. Use LocalConnection -- see the API doc at http://livedocs.adobe.com/flex/2/langref/flash/net/LocalConnection.html 2. Use ExternalInterface to write your xml string to a variable attached to javascript window -- see

[flexcoders] Re: Why does RTE lose formatting when parent's styleName changes? (w/ test case)

2008-02-15 Thread ben.clinkinbeard
Anyone? --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: The title pretty much sums it up but here is the deal. If the text in a RichTextEditor has been manually edited, changing the styleName of its parent will result in a complete loss of formatting. If the text

Re: [flexcoders] draw simple shapes in a Flex app?

2008-02-15 Thread learner404
On Fri, Feb 15, 2008 at 2:47 PM, Merrill, Jason [EMAIL PROTECTED] wrote: And to draw a Rectangle, why are you using beginBitmapFill? Just try beginFill instead. Oops, I went to quickly with the completion, thanks Jason. You need to add the sprite to a container of some kind like a canvas or

AW: [flexcoders] Rich Text Editor

2008-02-15 Thread Harald Dehn
Hi Gordon, yes but we don't need the full functionality of buzzword, for example we don't need tables. Our problems with the RTE component are: - htmlText - we like to generate pdf-documents with the .net-backend. - missing image support - missing page view

Re: [flexcoders] Any way to version a swf with major and minor

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, essuark wrote: See subject? With what purpose ? -- Tom Chiverton Helping to widespreadedly conquer front-end customers on: http://thefalken.livejournal.com This email is sent for and on behalf of Halliwells LLP.

[flexcoders] Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread djhatrick
HI, I just got the latest milestone, my previous one expired. Now, my actionscript projects, and flex projects have no code formatting or color coding. I just can't code with out indentation or color :( Any suggestions how to enable or fix this? Thanks, Patrick

Re: [flexcoders] Why upgrade to FB3?

2008-02-15 Thread Christophe Jolif
Hi Greg, The Flex Builder 3 profiler is for me a key differentiator when it comes to really track application performances pitfalls. -- Christophe http://www.ilog.com/elixir Mr Greg Murnock wrote: For the big discussion of the day/week... I have been given the task to give a strong case

[flexcoders] Why upgrade to FB3?

2008-02-15 Thread Mr Greg Murnock
For the big discussion of the day/week... I have been given the task to give a strong case on why we need to spend the money (proposed pricing schedule) on the upgrade to FB3, when available. Our company does not look to do AIR apps, we do not have a case to use Advanced Datagrid, we front

Re: [flexcoders] Rich Text Editor

2008-02-15 Thread Suketu Vyas
I am running under similar kind of RTE problem. my scenario is more complex. I am using FCKEditer which i have integrated with flex using Iframe and ExternalInterface API. I still have to work on browser compatibility part. but it works really well. ~ Suketu Vyas On Fri, Feb 15, 2008 at 9:34 AM,

Re: [flexcoders] Why upgrade to FB3?

2008-02-15 Thread Johannes Nel
as the sdk is for free you are asking why upgrade your IDE. the profiler. On Fri, Feb 15, 2008 at 9:46 AM, Mr Greg Murnock [EMAIL PROTECTED] wrote: For the big discussion of the day/week... I have been given the task to give a strong case on why we need to spend the money (proposed

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread yigit
sorry, i need to be more clear; the user navigates from application A to application B. so all js object are cleared, and two applications can not talk via localconnection because they are not running at the same time. by the way, an idea came to my mind right now, i can use external

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

2008-02-15 Thread xmwang1982
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 know some visio-like examples for me. Please help. Thanks. --- In flexcoders@yahoogroups.com, xmwang1982 [EMAIL PROTECTED] wrote: Hi experts, I

Re: [flexcoders] Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, djhatrick wrote: I just got the latest milestone, my previous one expired. Now, my actionscript projects, and flex projects have no code formatting or color coding. I just can't code with out indentation or color :( I assume something is up with Builder ? Standalone or

Re: [flexcoders] Why does RTE lose formatting when parent's styleName changes? (w/ test case)

2008-02-15 Thread Tom Chiverton
On Thursday 14 Feb 2008, ben.clinkinbeard wrote: You can see this behavior at http://www.returnundefined.com/tests/rte/ What about the obvious work around of saving the text, applying the styleName and then resetting the text ? -- Tom Chiverton Helping to ambassadorially optimize guinine data

Re: [flexcoders] OnClick event on tabnavigator

2008-02-15 Thread Sherif Abdou
you need to listen for a change Event which is the same - Original Message From: Manish Sharma [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 4:47:39 AM Subject: [flexcoders] OnClick event on tabnavigator Hi Please let me know if I can create any

Re: [flexcoders] Flex applications in Chinese

2008-02-15 Thread Stephen Adams
Cool, so Flex can support CHinese then? If I set up my application using Resource bundles I can create a set in chinese and run the app using them. Thanks On 15/02/2008, rabbit69 [EMAIL PROTECTED] wrote: sure! All you have to do is change EN characters to Chinese characters, no problems!

[flexcoders] Bring a component to the top layer

2008-02-15 Thread xmwang1982
Hi, how to bring a component to the top layer dynamically? I couldn't find out the method in AS3 help. Please give me a hint. Thanks.

Re: [flexcoders] I got the the value when using trace, but failed when make a comparison

2008-02-15 Thread Sherif Abdou
do e.toString() private function initApp():void{ myString('OK'); } private function myString(e:String):void{ if('OK' == e.toString()){ trace('here'); } } - Original Message From: Jati Putra [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 4:07:30 AM

Re: [flexcoders] Re: Why does RTE lose formatting when parent's styleName changes? (w/ test case)

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, ben.clinkinbeard wrote: Hmmm, that does work but I am looking for a more general purpose solution. Checking for any RTE children before every change isn't very reasonable in my scenario. It would only ever be a work around, I agree. But I get the impression Flex 3 is

[flexcoders] Re: Splitting Array Content , keyword by field content

2008-02-15 Thread simonjpalmer
mx:ListCollectionView filterFunction=doFilter id=lcv list={myArray}/ in your script... [Bindable] private var myArray:ArrayCollection; private function doFilter(o:Object):Boolean { if (o is MyClass) { var c:MyClass = o as MyClass; if (o.MyField == XXX) return true; } return false; } load your

[flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread Uber_Nick
In short: faster and more stable. FB3 is a lot smarter about compiling, so building a project after making a change goes a lot faster. Developers were increasingly frustrated and slowed by the long build times of our project with FB2.01. There were also a variety of small bugs in 2.01, such as

Re: [flexcoders] Any way to version a swf with major and minor

2008-02-15 Thread Samuel Neff
We have a Version.as class which defines a version number in a constant and then use the build script to populate the version number prior to compilation. We include major, minor, and include svn revision number. HTH, Sam On Fri, Feb 15, 2008 at 8:10 AM, essuark [EMAIL PROTECTED] wrote: See

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread yiğit boyar
actually it does no work :( i can store value to a cookie vie external interface and read in the other application; but when i try to save xml data, since the way to keep cookies via javascript is really weak, it does not work :( i need to make too many escape character control and to make it

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread Paul Andrews
Shared objects? - Original Message - From: yiğit boyar To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 3:41 PM Subject: Re: [flexcoders] Re: passing variables between two consecutive flex applications actually it does no work :( i can store value to a

Re: [flexcoders] Re: Mac mini for development?

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, Gustavo Duenas wrote: you will need a mac book pro for any development or design related things. Plus, you can take a MBP into the garden :-) -- Tom Chiverton Helping to seamlessly administrate robust products on: http://thefalken.livejournal.com

Re: [flexcoders] Re: passing variables between two consecutive flex applications

2008-02-15 Thread Joe
Id try a shared object. http://learn.adobe.com/wiki/display/Flex/Shared+Objects I have gotten it to communicate with a second browser before. -Joe On Fri, Feb 15, 2008 at 10:41 AM, yiğit boyar [EMAIL PROTECTED] wrote: actually it does no work :( i can store value to a cookie vie external

Re: [flexcoders] Why upgrade to FB3?

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, Mr Greg Murnock wrote: I have been given the task to give a strong case on why we need to spend the money (proposed pricing schedule) on the upgrade to FB3, when available. Our company does not look to do AIR apps, we do not have a case to use Advanced Datagrid, we front

Re: [flexcoders] Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread João Fernandes
Patrick, start FlexBuilder with the /clean command. -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

Re: [flexcoders] Bring a component to the top layer

2008-02-15 Thread Tom Chiverton
On Friday 15 Feb 2008, xmwang1982 wrote: how to bring a component to the top layer dynamically? I couldn't find out the method in AS3 help. Please give me a hint. Easy when you know how: click=if (parent){ parent.setChildIndex(this,parent.numChildren - 1) } -- Tom Chiverton Helping to

[flexcoders] Re: Why does RTE lose formatting when parent's styleName changes? (w/ test case)

2008-02-15 Thread ben.clinkinbeard
Hmmm, that does work but I am looking for a more general purpose solution. Checking for any RTE children before every change isn't very reasonable in my scenario. Testing your method did reveal something interesting though. Comparing the htmlText property before and after the styleName change

[flexcoders] Flex Book

2008-02-15 Thread Dan Vega
I downloaded a great component from http://www.quietlyscheming.com/blog/ and I am trying to customize it and I am coming across a problem. The example uses mx:XML and if understand that is acompile time tag. I want to load the xml at runtime so I changed the code. Here is my code and this is the

[flexcoders] Re: Rich Text Editor

2008-02-15 Thread cmalartre
Hi Gordon Smith all, I thought that the Buzzword aquisition was directly related to Flash Player code named Astro: http://labs.adobe.com/wiki/index.php/Astro Adobe is also developing a library of ActionScript-based text layout components based on these new APIs to provide easy-to-integrate

[flexcoders] Re: Why does RTE lose formatting when parent's styleName changes? (w/ test case)

2008-02-15 Thread ben.clinkinbeard
No I know, but if I can figure out whats happening I can probably subclass RTE and prevent the behavior, and then recommend using it instead of the problematic one from the framework. Here's hoping Alex and/or Gordon notice this thread... :) --- In flexcoders@yahoogroups.com, Tom Chiverton

Re: [flexcoders] NetStream - any way to play bytes

2008-02-15 Thread Steve Mathews
This keeps coming up all over, and unfortunately the answer always seems to be no. *Steve Mathews* *Senior Software Engineer* e [EMAIL PROTECTED] *Flypaper Studio, Inc.* www.flypaper.net On 2/15/08, polestar11 [EMAIL PROTECTED] wrote: Hi Is there any way that a Netstream class can play

[flexcoders] Re: Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread djhatrick
Actually, I am using the stand alone Flex Builder. Can I ask specific instructions of how to start with the /clean command, ie in terminal. Thanks, Patrick --- In flexcoders@yahoogroups.com, djhatrick [EMAIL PROTECTED] wrote: HI, I just got the latest milestone, my previous one

Re: [flexcoders] Re: Mac mini for development?

2008-02-15 Thread rogerhoward
If your only option is a Mini, which it sounds like it may be, you'll be fine - just put plenty of RAM in (cheap these days), get a nice big display, and grab an external drive for TimeMachine backups. A current Mini has plenty of horsepower for a Flex dev machine... of course, not as sexy

AW: [flexcoders] Re: Rich Text Editor

2008-02-15 Thread Harald Dehn
Hi Gordon, Do you have newer informations when a beta or the final release of astro will be available? Harald Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von cmalartre Gesendet: Freitag, 15. Februar 2008 17:28 An: flexcoders@yahoogroups.com Betreff:

Re: [flexcoders] Re: Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread João Fernandes
I'm using FB standalone too :) just open a command prompt and execute flexbuilder.exe /clean -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

Re: [flexcoders] draw simple shapes in a Flex app?

2008-02-15 Thread learner404
Ok, found myself the missing link... It is necessary to change the Shape by a UIComponent (don't ask me why...) After 3 hours lost, I can now continue and just deal with the fact that AS3 also doesn't have theadings and a great security policy (impossible to access an external public feed -

Re: [flexcoders] Re: Mac mini for development?

2008-02-15 Thread Brendan Meutzner
Thanks all... I made a fuss and now I'm getting a Mac Pro (not MacBook). Laptop feature doesn't matter much to me, so this works out much better in the end! I'm just still trying to figure out why a 2800 dollar price tag is doable when a 2200 dollar price tag is out of the question... go figure

[flexcoders] Checkbox with function problem

2008-02-15 Thread ghus32
Hello Everyone, I am emailing because I have a problem whenever I write a function with if (Checkbox.selected=ture/false){something} or if (!checkbox.selected){something} Flex reads the function before I call it, or it reads the selected. So when I run the program the checkbox is already

RE: [flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread Jim Hayes
Isn't the profiler only going to be available in the more expensive version? e.g. the one that costs a fair bit more than $250? This is from memory (at home time on a Friday) I've not checked it ... -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread madflexcoder
Don't forget about Ctrl-O for code navigation. --- In flexcoders@yahoogroups.com, Mark Lapasa [EMAIL PROTECTED] wrote: OMG i didn't know about Ctrl-3This is awesome. Anyways, I like FB3 cause it can handle the two plugins I use everyday Subversive Mylyn Refactoring is nice but I

[flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-15 Thread danielvlopes
Sorry Tracy, i don't know what talking about with Perhaps an invalidate of some kind? can you explain more? Thanks. --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: The OP is using a public setter function to implement his public property, instead of a public

Re: [flexcoders] Checkbox with function problem

2008-02-15 Thread Paul Andrews
Maybe it should really be: if (!signature_include.selected) { Paul - Original Message - From: steven pollard To: flexcoders@yahoogroups.com Sent: Friday, February 15, 2008 5:43 PM Subject: RE: [flexcoders] Checkbox with function problem I tried that and still the same

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread steven pollard
I tried that and still the same results.. here is my code mx:Script ![CDATA[ import mx.controls.Alert; private function Checked():void { if (!signature_include.selected==true) { signature.text= login_user.lastResult.signaturelookup.signature.signaturetext; } else { signature.text=; } } ]]

Re: [flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread Mark Lapasa
OMG i didn't know about Ctrl-3This is awesome. Anyways, I like FB3 cause it can handle the two plugins I use everyday Subversive Mylyn Refactoring is nice but I don't use it as often as I thought I would. -mL Uber_Nick wrote: In short: faster and more stable. FB3 is a lot smarter

RE: [flexcoders] Checkbox with function problem

2008-02-15 Thread Jim Hayes
Use == rather than = (the former compares, the latter sets the value). (That's from your first example, not sure If I'm missing the actual point you're making, tbh). -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ghus32 Sent: 15 February 2008

[flexcoders] Re: Why upgrade to FB3?

2008-02-15 Thread Todd
You could be right, I don't remember the exact pricing and what came with what, I only remember the charting components came in teh pro version.. the more expensive one was like only $500, $700 or so. (I don't remember the exact prices, I just know they seem quite reasonable) --- In

[flexcoders] Re: Milestone 4 - beta - color code and formatting for code

2008-02-15 Thread djhatrick
Tho, i am on a mac, thanks Patrick --- In flexcoders@yahoogroups.com, João Fernandes [EMAIL PROTECTED] wrote: I'm using FB standalone too :) just open a command prompt and execute flexbuilder.exe /clean -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

[flexcoders] Component Visbility in ViewStack

2008-02-15 Thread Brad Bueche
I am trying to assign a value to a component property in my actionscript. If the component is NOT in a viewstack, everything works fine. If the component IS in the viewstack, all I get are null object reference errors. I also get the warning unable to bind to property 'month' on class 'XML'

Re: [flexcoders] Flex Book

2008-02-15 Thread Rob Rusher
Simplify your code by using the mx:XML tag and set it's source property to the path to your XML. mx:XML id=myXML source=data/images.xml/ Your xml might look like: images image thumb=assets/thumb1.jpg/ ... Then reference it as myXML.image.thumb. HTH Rob On Fri, Feb 15, 2008 at 9:31 AM, Dan

[flexcoders] OpenEJB - Geronimo - Jetty Confusion -- Please Help!!

2008-02-15 Thread [p e r c e p t i c o n]
Hi Folks... Please pardon the X-POST but i really need some help here...i've been battleing this for a week now and can't find any ansers basically what Ive done is configure everything correctly(hopefully) and created a facade that uses my EJB's (stateless beans ) and then tried to access

Re: [flexcoders] Flex Book

2008-02-15 Thread Dan Vega
The problem with that is mx:XML is a compile time tag, the xml file will change on the server. Dan On Fri, Feb 15, 2008 at 11:41 AM, Rob Rusher [EMAIL PROTECTED] wrote: Simplify your code by using the mx:XML tag and set it's source property to the path to your XML. mx:XML id=myXML

[flexcoders] RE: [flexcomponents] simple renderer please help..........please review it

2008-02-15 Thread Alex Harui
Not bad for a first try. I would: 1) extend UIComponent instead of Canvas. You aren't using any of Canvas's features so you'll save on size and performance 2) only call invalidateProperties() in the data setter. Move the code in there to commitProperties instead. That'll probably remove

[flexcoders] Simple questions for an SQLite specialist

2008-02-15 Thread cmalartre
Hi, SQLite documentation is a bit lite ;-) I'm developping my first Air app. I did some test and now I have some basic questions: 1) Two SQLConnection Would it be a good strategy to open two SQLConnection on the same DB? One Asynchrone and one Synchrone. - Could it lock the db? - What happens

[flexcoders] Flex hummmmmm in PC speakers...bizarre

2008-02-15 Thread Don Kerr
Strangest thing. A user's speakers have a faint hum sound when a Flex App is open in their browser. Close it, sound goes away. I don't have any audio/video in the app. If he opens other web pages, no hummm sounds. Seem bizarre to me that a Flex app could generate some kind of vibration of

Re: AW: [flexcoders] Rich Text Editor

2008-02-15 Thread Weyert de Boer
Well, you can roll that your own I had the idea to write a series of articles about how to write custom components for Flex -- and after the smiley component I want to work on a RTE component. Only I haven't heard back from Adobe yet about this article idea. Maybe I should just put it on

Re: [flexcoders] Flex Book

2008-02-15 Thread Rob Rusher
Then use HTTPService. Example: http://blog.flexexamples.com/2007/07/27/loading-xml-at-run-time-using-the-mxhttpservice-tag/ Rob On Fri, Feb 15, 2008 at 11:07 AM, Dan Vega [EMAIL PROTECTED] wrote: The problem with that is mx:XML is a compile time tag, the xml file will change on the server.

[flexcoders] Handeling ItemPending Errors in LabelFunctions and DataTipFunctions

2008-02-15 Thread Kevin
What is the preferred method for catching and handling IPE errors that get thrown from labelFunctions and dataTipFunctions? Is there a way to handle these and still take advantage of dataBinding or do I need to force load the whole collection first before I bind to the data grid. If so, this

[flexcoders] Piclens view

2008-02-15 Thread Greg Hess
Hi All, Has anyone seen any examples of a 'piclens' viewer done in Flex? Would the flash runtime support this type of view efficiently? Any comments much appreciated. -Greg

[flexcoders] Re: Simulating Flex Client requests using Java?

2008-02-15 Thread Anthony DeBonis
Yes it supports Async calls using addAsync Here is a snip beerDataService.addEventListener(ResultEvent.RESULT, addAsync(result, 3000)); beerDataService.send();

RE: [flexcoders] Loader.load() Error

2008-02-15 Thread Alex Harui
Do you have another class, function or variable called Loader somewhere in your app? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of NileAge, Mail Sent: Friday, February 15, 2008 5:00 AM To: [EMAIL PROTECTED]; 'Flex Components'; [EMAIL

RE: [flexcoders] Why upgrade to FB3?

2008-02-15 Thread Tracy Spratt
FB3 is much faster and more stable/predictable than FB2. The UI is significantly enhanced. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mr Greg Murnock Sent: Friday, February 15, 2008 9:47 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Example of Object.isPrototypeOf ()

2008-02-15 Thread Johannes Nel
prototype chain is in for ecma complience. the white paper is a good source of info On Fri, Feb 15, 2008 at 1:03 PM, Roscoe P Coltrane [EMAIL PROTECTED] wrote: What exactly does it mean when the Flex doco says: This method returns true if the object is in the prototype chain of the object

[flexcoders] CollectionEvent.COLLECTION_CHANGE is firing twice problem.

2008-02-15 Thread madflexcoder
I have an array collection that i'm listening to collection changes on. For some reason when the event is an update, the event gets fired twice. I've been searching for an answer all morning, and I was wondering if anybody has had this same problem? or could point me in the right direction. My

RE: [flexcoders] Re: Adobe SDK, why flex comps accept bind in properties and custom comps dont?

2008-02-15 Thread Tracy Spratt
I am trying to think of a way to make the binding fire after the maxChars is set on the first component. Calling an invalidate method will make the component re-render. Just thinking aloud here. Maybe you can debug this by stepping through the initializing of the components? There will

[flexcoders] Re: Example of Object.isPrototypeOf ()

2008-02-15 Thread Roscoe P Coltrane
What exactly does it mean when the Flex doco says: This method returns true if the object is in the prototype chain of the object specified by the the Class parameter. What does prototype chain mean here? Sorry for my ignorance if this is a dumb question. And are you saying this is an obsolete

  1   2   >