Re: [flexcoders] Select all checkboxes in datagrid with a single click

2008-03-21 Thread Scott Melby
); } } grid.invalidateList(); } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com p_repetti wrote: Hello I have created a DataGrid component whose last column is rendered/edited with a checkbox. This checks whether the row data will be sent

Re: [flexcoders] Select all checkboxes in datagrid with a single click

2008-03-21 Thread Scott Melby
... cuz I wouldn't recommend doing that either :) Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Tracy Spratt wrote: Yes that example in that other reply will show you how to do this, but I want to make a key idea very clear. When

RE: [flexcoders] FB2 Keyboard Shortcut to insert variables/member names?

2008-03-21 Thread Beau Scott
Control + Space For a list of other hotkeys, press Control+Shift+L Beau From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, March 21, 2008 3:18 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FB2 Keyboard Shortcut to insert

Re: [flexcoders] Re: ArrayCollection of String as single-column DataGrid provider

2008-03-25 Thread Scott Melby
{ super.dataProvider = value; } } } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com mario.blataric wrote: Ok, how do I display and edit ArrayCollection that contains only String types in it if I can't use DG? --- In flexcoders

Re: [flexcoders] Re: ArrayCollection of String as single-column DataGrid provider

2008-03-25 Thread Scott Melby
true, true... guess I assumed the OP had some reason for wanting to use DG. Column headers etc. Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Alex Harui wrote: Or just use List. From

Re: [flexcoders] Actionscript/Flex 3 - Communicating with an itemRenderer from the main applicati

2008-03-27 Thread Scott Melby
=cbItemRenderer/ /mx: Component /mx: itemRenderer hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com jeffreyr6915 wrote: I know that if you want to communicate with the main application from within the itemRenderer component, you have to use

Re: [flexcoders] filterFunction - blows up when item field blank

2008-03-27 Thread Scott Melby
(searchTerm) != -1); } } return result; } Though I may use RegExp and String.search() instead of indexOf... Check out this page http://livedocs.adobe.com/flex/3/html/help.html?content=09_Working_with_Strings_09.html for more info on string searches. hth Scott Scott Melby Founder, Fast

Re: [flexcoders] Re: Datagrid with different objects in each cell

2008-03-28 Thread Scott Melby
to do as Tracy suggested and translate to display objects in preprocessing. I am thinking you would need to use untyped objects, then set properties into them (as you are doing now), then set the column.dataField property to match the property name you set into the object you created. hth Scott

Re: [flexcoders] Re: Flex Builder and Ant

2008-03-28 Thread Scott Melby
with FB here http://blog.fastlanesw.com/?p=23... though it is not nearly complete and not updated since FB 2, it should get you started. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Shailesh Mangal wrote: Why do you want

Re: [flexcoders] Custom Component and Parent Communication

2008-03-30 Thread Scott Melby
handleMyEvent(event:MyEvent):void { //handle the event... } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com kenny14390 wrote: How can I make the custom component tell the parent when it was clicked? I can't figure out how to make

Re: [flexcoders] Re: memory leak in converting string to xml

2008-03-30 Thread Scott Melby
the back end. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Douglas Knudsen wrote: which is really pushing limits IMHO. I would never trust running a web app for longer than a couple hours. Heck, can FF or IE run for more than 12

Re: [flexcoders] itemRenderer on TileList question

2008-03-30 Thread Scott Melby
, the way you handle this is to override the set data(value:Object) method in your renderer... the object you are passed as a parameter will be an item from your data provider. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Alexander

Re: [flexcoders] Re: itemRenderer on TileList question

2008-03-30 Thread Scott Melby
, then right click on the app to view source. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Alexander Tsoukias wrote: Thank you so much for this info, can you possibly give me a code example scenario? thanks alexander --- In flexcoders

Re: [flexcoders] interactions among multiple flex projects

2008-03-31 Thread Scott Melby
You probably want to use the compc compiler http://livedocs.adobe.com/flex/3/html/help.html?content=compilers_22.html to create .swc libraries that you can then include from your main application. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http

Re: [flexcoders] Problem with tab navigator

2008-04-01 Thread Scott Melby
Seems you could explicitly set the selectedIndex of the tab navigator back to 0 each time you change back to that page. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com ghus32 wrote: I have a problem with a tab navigator on my page

Re: RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-01 Thread Scott Melby
the methods you define in that interface before actually setting the selected tab. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com guitarguy555 wrote: Thanks for the reply, That doesn't work though. If I set up an IndexChangedEvent event

Re: [flexcoders] Datechooser date select

2008-04-02 Thread Scott Melby
I believe you can just set the selectedDate property. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com ghus32 wrote: Hello everyone, Is there a way to have a date preselected in the date chooser?? ex.. I pull a date from my

Re: RES: [flexcoders] TabContainer with modules - how to cancel Tab change

2008-04-02 Thread Scott Melby
are using will do the job. Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com guitarguy555 wrote: Thanks for that suggestion. I was able to cancel the TabNavigator change by doing the following: In my main app (where the TabNavigator

Re: [flexcoders] Calendar View Control / Samples

2008-04-03 Thread Scott Melby
blog http://blog.fastlanesw.com/?p=22 (with source code) that fixes some of the more major issues I found. I also gave the changes back to Ely, but am not sure if he incorporated them etc. Anyway, just run the sample app on that page and right click to view source code. hth Scott Scott Melby

Re: [flexcoders] How to copy or clone Dictionary?

2008-04-04 Thread Scott Melby
, oldDiciontary[key]); } return new; } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com lytvynyuk wrote: Because var temp:Dictionary = new Dictionary(); // put something in Dictionary var new:Dictionary = ObjectUtil.copy(temp

Re: [flexcoders] How to copy or clone Dictionary?

2008-04-04 Thread Scott Melby
newDictionary; } Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Scott Melby wrote: How about the following? Haven't tried it, but it seems it would work... static public funciton cloneDictionary(oldDictionary:Dictionary, weakKeys:Boolean

Re: [flexcoders] Re: How to copy or clone Dictionary?

2008-04-04 Thread Scott Melby
hey... i was close ;) Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com lytvynyuk wrote: Sorry friend but I think your case will not gonna work ;) what is put methods? Dictionary doesn't have it :) But here is my corrected case, where I

Re: [flexcoders] Copying all data from one column of DataGrid to another column

2008-04-07 Thread Scott Melby
have changed the grid provider behind the scenes, so invalidate the list to update the display theGrid.invalidateList(); } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Baljeet singh wrote: Hi all, I am using an dataGrid

Re: [flexcoders] General list consensus using 'this' when referencing local vars

2008-04-08 Thread Scott Melby
the same list I don't think I'd ever have this in my code again. Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Bjorn Schultheiss wrote: drop the 'this' unless its necessary to explain something.. On 08/04/2008, at 5:39 PM, Mike Anderson

Re: [flexcoders] General list consensus using 'this' when referencing local vars

2008-04-08 Thread Scott Melby
; } } 2 more of my cents :) Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com shaun wrote: Mike Anderson wrote: Greetings All, Whenever I study code generated by seasoned programmers (i.e. all the Adobe people supporting Flex on this list

Re: [flexcoders] General list consensus using 'this' when referencing local vars

2008-04-08 Thread Scott Melby
NICE... actually that is even better since it includes locals as well as members etc. Guess I should have said If I knew of a hot-key sequence :) Thanks! Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com Giles Roadnight wrote: ctrl

[flexcoders] [newbie] Numbered list support in RichTextEditor?

2008-04-13 Thread Scott Finnie
Hello, Am looking for numbered list support but standard component only seems to support unnumbered (bulleted) lists. Wondering about options: . Any 3rd party components? . Any advice on extending existing? Thx, Scott.

RE: [flexcoders] Flash Player 9.0.124.0 - Web Services Stopped Working

2008-04-14 Thread Beau Scott
Without knowing your code details it would be hard to pinpoint exactly which change is causing your issues, but you should read the change log as 9.0.124 was a security update and RPC/SOAP calls are often the targets of security updates. HYPERLINK

Re: [flexcoders] Resetting a datechooser

2008-04-14 Thread Scott Melby
myDateChooser.selectedDate = new Date()? hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com ghus32 wrote: Hello everyone, anyone know a code to reset a datechooser back to todays date?? Thanks Steve

Re: [flexcoders] View States Vs using the visible flag with multiple UI components..

2008-04-15 Thread Scott Melby
directly without the use of view states. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com sk_acura wrote: Hi All, I am trying to display multiple DataGrids in a Panel. User will have the option of switching between DataGrids

[flexcoders] Expanding RichTextEditor

2008-04-17 Thread Scott Smith
I need to add a superscript and subscript capability to the RichTextEditor that work just like the Bold or Italic features (highlighted text goes superscript, punch the button and now you are in superscript mode until you release the mode by hitting it again.) Suggestions?

Re: [flexcoders] How do I call the correct web services server in Flex

2008-04-23 Thread Scott Melby
back to the originating server (with relative URL of course) that returns the desired configuration data. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com scarfire2004 wrote: I have 3 different platforms/web farms at work. Development

Re: [flexcoders] Bind property to data

2008-04-23 Thread Scott Melby
); this._surfaceColWidth = ns.value; } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com markgoldin_2000 wrote: Can I bind a column's width to data? so, when that data is changed so is the width? Thanks

Re: [flexcoders] How to prevent tab change

2008-04-27 Thread Scott Melby
This has been discussed a number of times on this list. Try searching the list archives for TabNavigator. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com deepcworld wrote: I need to prevent a tab from being changed when user

Re: [flexcoders] Event Calendar component

2008-04-28 Thread Scott Melby
if you have questions about how to develop. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com txakin wrote: Hi guys! I have checked some examples in internet...about how to create an event calendar component. i love

Re: [flexcoders] EmptyString

2008-04-28 Thread Scott Melby
want to process input that has only spaces just leave off the call to StringUtil.trim. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com reflexactions wrote: I have an if statement that is supposed to catch nulls and empty strings

Re: [flexcoders] Get id of what called the event.

2008-04-28 Thread Scott Melby
: + myButton.id); } hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com http://blog.fastlanesw.com timgerr wrote: How can I get from an event the id of a flex item, mx:Form mx:FormItem label=User Name required=true mx:TextInput name=User

RE: [flexcoders] Bug or bad programming?

2008-05-20 Thread Beau Scott
It’s not wrapped within a CDATA tag, so it has to be valid XML in order to be parsed. Use amp;amp; ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:CheckBox id=ch1 / mx:CheckBox id=ch2 / mx:Button

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-28 Thread Scott Barnes
Expression Studio is not required to write Silverlight (It's obviously recommended though). That being said it's kind of like saying Flex Builder is/isn't required to write Flex? :) - Scott Barnes Product Manager Microsoft. On Wed, May 28, 2008 at 10:18 AM, Troy Gilbert [EMAIL PROTECTED] wrote

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-29 Thread Scott Barnes
to include the DLR as well as the CLR (ie if you wish to carry the Smalltalk torch forward into the RIA space, go for it! choose your own language and compile!) All the best. - Scott Barnes Product Manager Microsoft. On Thu, May 29, 2008 at 1:54 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Scott Barnes
). Scott was able to provide an authoritative answer on that, which is good, because it was suggested that it was not an option and that one would have to purchase Expression. I think the marketing effort in Scott's e-mail was little to non-existent. Troy

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-06-01 Thread Scott Barnes
. All the best and have another glass of wine! :) (if it's good, keep the flow going!). Scott Barnes Product Manager Microsoft. On Sat, May 31, 2008 at 4:27 PM, Paul Andrews [EMAIL PROTECTED] wrote: oops too much red wine. I was going to say I wouldn't have been been bothered if it had been

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-06-02 Thread Scott Barnes
behaviour is a lot more complex than a product fact placement in a random list?. Protect your community yes, but don't blind them as their ability to see will be that much more diminished. Scott. Product Manager Microsoft. On Sun, Jun 1, 2008 at 10:49 PM, Paul Andrews [EMAIL PROTECTED] wrote

Re: [flexcoders] Re: Thinking about going to the dark side....Apple Mac Book

2008-06-08 Thread Scott Barnes
the shelves this month (XP that is)/picketing on the partyline -- Scott Barnes Product Manager Microsoft. On Fri, Jun 6, 2008 at 9:01 AM, Tim Hoff [EMAIL PROTECTED] wrote: I use Vaio. Nothing wrong with Macbook Pro though. But, we really should get back to a Flex thread, don't you think

Re: [flexcoders] Order datagrid by date in DD/MM/YYYY format

2008-06-11 Thread Scott Melby
livedocs entry on sorting data in datagrids http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0598.html. hth Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com David Pariente wrote: Hi everyone, I have

Re: [flexcoders] Re: string to actual actionscript code?

2008-06-16 Thread Scott Melby
) { if(location == knownLocation) { ret = true; break; } } return ret; } Then call this method passing your image.location and your array of things that you want to check against (which you can now build dynamically). hth Scott mariovandeneynde wrote: ok, I just have

RE: [flexcoders] width via style/css

2008-06-25 Thread Shearer, Scott
, then it is a style item and you can use a style sheet, setStyle() etc. for setting the value of that style. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Schmalle Sent: Wednesday, June 25, 2008 11:54 AM To: flexcoders

[flexcoders] flash player version picker in Firefox?

2008-07-12 Thread Scott Langeberg
Anyone remember an extension for firefox (I think) that lets you pick which of your installed flash players to use in the browser, on the fly? That thing was handy, when it worked... -- : : ) Scott Helping your grandma on the interweb at: http://blog.criticalpile.com

Re: [flexcoders] Filter an ArrayCollection into an ItemRender

2008-07-21 Thread Scott Bachman
of ArrayCollection in the Flex documentation. Scott On Mon, Jul 21, 2008 at 9:28 AM, luis_roman_am [EMAIL PROTECTED] wrote: Hi people! Situation as follows: MYARRAYCOLLECTION (Example fields) - TITLE - URL INDEX.MXML - TILELIST - DataProvider={MyArrayCollection} - ItemRenderer =MyRenderer

Re: [flexcoders] Re: Filter an ArrayCollection into an ItemRender

2008-07-22 Thread Scott Bachman
the filterFunction to so that each renderer is filtered without affecting the others. Scott On Tue, Jul 22, 2008 at 4:00 AM, luis_roman_am [EMAIL PROTECTED] wrote: Thanks, Scott. Taking this way, i have another doubt. How can i refer (inside a item renderer) to the data.Url inherited from

Re: [flexcoders] accessing styles of children

2008-07-22 Thread Scott Bachman
to call setStyle. If none of this makes sense to you, you probably need to do some reading up on the object-oriented programming concept called polymorphism. Scott On Tue, Jul 22, 2008 at 2:34 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: for (var i:int = 0; i numChildren; i++) { StyleClient

Re: [flexcoders] ArrayCollection filterFunction only gets called on root item

2008-07-22 Thread Scott Bachman
, traversing down through other Menu's children (via the recursive call) setting the filterFunction. Scott On Mon, Jul 21, 2008 at 5:55 PM, Greg Hess [EMAIL PROTECTED] wrote: Hi All, I have a tree control who's data provider is an ArrayCollection holding a single File object I defined

Re: [flexcoders] Re: Filter an ArrayCollection into an ItemRender

2008-07-22 Thread Scott Bachman
it. Scott On Tue, Jul 22, 2008 at 10:23 AM, luis_roman_am [EMAIL PROTECTED] wrote: Lets try to add more info. Theres a TileList with a ItemRenderer. The ItemRenderer code is: mx:Script ![CDATA[ import mx.core.Application; import mx.collections.ArrayCollection; [Bindable] private var

Re: [flexcoders] Re: Filter an ArrayCollection into an ItemRender

2008-07-22 Thread Scott Bachman
Oops... I misread the source code. Actually, in the one place where I had used it it was bound to an implicit setter, like this: private function set dataChanged(data:Object):void { collectionData.refresh(); } On Tue, Jul 22, 2008 at 2:48 PM, Troy Gilbert [EMAIL PROTECTED] wrote: You need

Re: [flexcoders] Re: Filter an ArrayCollection into an ItemRender

2008-07-22 Thread Scott Bachman
But in this case it's not an item in the ArrayCollection that changed, but instead the criteria you want to filter with, so you need to refresh manually, unless I'm missing something. Scott On Tue, Jul 22, 2008 at 3:11 PM, Alex Harui [EMAIL PROTECTED] wrote: In theory, if you have [Bindable

Re: [flexcoders] reflection of proerties in an object

2008-07-23 Thread Scott Bachman
As long as it is in fact an Object you can do for (var key:String in object) { // do something with the key } Scott On Wed, Jul 23, 2008 at 11:07 AM, v.cekvenich [EMAIL PROTECTED] wrote: if I get an object, I want to enumerate the properties. Ex: var object:Object

Re: [flexcoders] Datagrid Query Issue

2008-07-24 Thread Scott Bachman
On the change event for dgCountry, do another httpService call passing in the country identifier as a parameter (e.g. dgCountry.selectedItem.id) to filter your store query by the country. Scott On Wed, Jul 23, 2008 at 8:15 PM, spark.edesigns [EMAIL PROTECTED] wrote: New to Flex but enjoying

RE: [flexcoders] Re: Flex 3 Preloader broken when using deep linking ?

2008-07-28 Thread Shearer, Scott
. Both the html and SWF loaded quickly this time. On the second attempt for the html wrapper, the preloader briefly appeared and then disappeared as the page was displayed. Obviously caching was a factor in the second attempt. Scott From: flexcoders

Re: [flexcoders] Event Phase clarification bubbling - please Diagram

2008-08-06 Thread Scott Melby
why registering for the bubbling event out at the application level works. Your dispatching component contains the application in its ancestry (parental chain), so eventually the event will bubble up to that level. hth Scott djhatrick wrote: Fellow FlexCoders... I am sitting here having

Re: [flexcoders] WordWrapping a Label

2008-08-13 Thread Scott Melby
Make sure you set the width property, or the text will not wrap. hth Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Gordon Smith wrote: You need to use mx:Text instead of mx:Label. Gordon Smith Adobe Flex SDK Team

Re: [flexcoders] Re: WordWrapping a Label

2008-08-13 Thread Scott Melby
I have not tried... but, it appears the styles on this page http://livedocs.adobe.com/flex/3/langref/mx/controls/Text.html should get you where you want to go. hth Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com shafram wrote: Thanks for the responses

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-14 Thread Scott Barnes
part to all this? Having Microsoft in a standards committee called Harmony is the ultimate oxymoron. This is in Oslo, so I submit they should call the committee something more appropriate like Fjord or Loki. --Cole -- Regards, Scott Barnes Rich Client Platform Manager Microsoft. http

Re: [flexcoders] Deep Zoom (Silverlght) in Flex??

2008-08-14 Thread Scott Barnes
Deep Zoom? Regards Jerry -- Therefore, send not to know For whom the bell tolls. It tolls for thee. :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED] -- Regards, Scott Barnes Rich Client Platform Manager Microsoft. http://blogs.msdn.com/msmossyblog

Re: [flexcoders] Re: Web-based Sync data - Flex/Air VS.NET

2008-08-14 Thread Scott Barnes
380 :: [EMAIL PROTECTED] -- Regards, Scott Barnes Rich Client Platform Manager Microsoft. http://blogs.msdn.com/msmossyblog

Re: [flexcoders] Re: Web-based Sync data - Flex/Air VS.NET

2008-08-15 Thread Scott Barnes
, but I'd urge all developers to consider the ethics behind the tech they choose to support. On 15/08/2008, at 2:56 PM, Scott Barnes wrote: - Cross Platform - Silverlight is x-platform. - Much more traction and an established user base. - Depends on which brochure you want

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-15 Thread Scott Barnes
in thinking. HTH. On Fri, Aug 15, 2008 at 8:37 AM, Cole Joplin [EMAIL PROTECTED] wrote: --- On *Thu, 8/14/08, Scott Barnes [EMAIL PROTECTED]* wrote: C# is an ECMA-334 standard. As to how this affects Silverlight? Cole, could you elaborate? Sure. Microsoft wants a new standard for web scripting

Re: Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-15 Thread Scott Barnes
, smokey! Scott, you have not much claim in the RIA world with SilverLight compared to Flex 3, I have seen what it can do and cannot do. Now give if Microsoft stays with it, then eventually you can say some good stuff, maybe. I would try my best to stay in the Flex world P.S Scott, I am pretty

Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-16 Thread Scott Barnes
commercial interests. That's my view. YMMV. BTW, I'm still waiting to be shown a silverlight app that will run on an OS other than Vista without the user having to download a plugin, or in fact any example of a compelling app I can run on Mac or Linux. Guy On 16/08/2008, at 10:16 AM, Scott

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-16 Thread Scott Barnes
standard of their choosing, you're more than welcome to it and I'd be curious to see how you triumph! HTH. On Fri, Aug 15, 2008 at 8:36 PM, Anatole Tartakovsky [EMAIL PROTECTED] wrote: Scott,I hope you realize that this goes beyond Silverlight or any particular player - but to the heart

Re: [flexcoders] The end of ActionScript 3 as an EcmaScript 4 implementation

2008-08-16 Thread Scott Barnes
that pulled this off for the Olympics a huge round of applause. – Jon Perlow, ZDNET* ** HTH. On Sat, Aug 16, 2008 at 9:27 AM, Cole Joplin [EMAIL PROTECTED] wrote: Scott, I'm not exactly on board with Silverlight will continue to have successes as it has today. It's far too early to make

Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-16 Thread Scott Barnes
in their mind diminishes. *shrug*, there's always two sides to a story is more my point. On Sat, Aug 16, 2008 at 6:11 AM, Guy Morton [EMAIL PROTECTED] wrote: Scott, relax, you know the Flash plug-in is everywhere. :-) It's already on almost every desktop today. Ask most end users and they'll say

Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-16 Thread Scott Barnes
wide (96% - 98%). Flash Player 9.0.115 is around 80% world wide. mike chambers [EMAIL PROTECTED] mesh%40adobe.com On Aug 16, 2008, at 12:29 PM, Scott Barnes wrote: Actually, you're assuming that Flash's plugins are all up to date on every desktop. -- Regards, Scott Barnes Rich

Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-16 Thread Scott Barnes
PROTECTED] wrote: Scott, Rather than nit-picking about Flash's penetration stats, why not release your own for Silverlight? You won't, because they are low and don't suit your argument. Guy On 17/08/2008, at 10:24 AM, Scott Barnes wrote: Hi Mike, Just to clarify, when you say world-wide

Re: [flexcoders] Web-based Sync data - Flex/Air VS.NET

2008-08-16 Thread Scott Barnes
Silverlight has the side effect of supporting Microsoft's plans for world domination and you have a compelling case, IMHO, to avoid Silverlight. DRM just gives us one more reason to run in the other direction. On 17/08/2008, at 5:29 AM, Scott Barnes wrote: Actually, you're assuming that Flash's

Re: [flexcoders] How do I enter 2 arrays into one arraycollection

2008-08-27 Thread Scott Melby
Brute force approach (not sure if it'll compile, but it'll get you close): var combinedArray:Array = new Array(); for each(var obj:Object in array1) { combinedArray.push(obj); } for each(obj in array2) { combinedArray.push(obj); } myArrayCollection.source = combinedArray; hth Scott

Re: [flexcoders] Re: What is Flexcoders?

2008-09-06 Thread Scott Barnes
, and realize that none of this nonsense matters. Doug -- Therefore, send not to know For whom the bell tolls. It tolls for thee. :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED] -- Regards, Scott Barnes Rich Client Platform Manager Microsoft. http://blogs.msdn.com

Re: [flexcoders] Who is Robert Thompson?

2008-09-06 Thread Scott Barnes
://advision.webevents.yahoo.com/hellmanns/ and favorite meals w/ Real Food lovers. . -- Regards, Scott Barnes Rich Client Platform Manager Microsoft. http://blogs.msdn.com/msmossyblog

Re: [flexcoders] determine if image source exists

2008-09-30 Thread Scott Melby
... unless you have a security issue in which case you will catch the SecurityError that gets thrown. hth Scott bhaq1972 wrote: How can I check if a the jpg source defined by a string really exists. eg var image1:Image = new Image(); var sHello:String = images/hello.jpg; if(sHello exists

Re: [flexcoders] Re: Hide a list item without changing (filtering) the dataprovider?

2008-09-30 Thread Scott Melby
collection to something that will fire the binding when it changes mx:ArrayCollection id=peopleAC source={this._model.people.values} filterFunction=filterPerson/ mx:DataGrid id=peopleGrid dataProvider={this.peopleAC} width=100% height=100% hth Scott -- Scott Melby Founder, Fast Lane Software

Re: [flexcoders] how do I send a custom event from an application to a component?

2008-09-30 Thread Scott Melby
=myComp. Then in your button click handler call myComp.someFunction(blah); hth Scott luvfotography wrote: Hi, I'm able to send a custom event from a component to an application, but how do I send a custom event from the application to a component? example code: mycomp.mxml: ?xml version=1.0

Re: [flexcoders] component reuse

2008-10-02 Thread Scott Melby
). hth Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com sefi.ninio wrote: Hi everyone. I have a functionality that needs to be implemented both as a standalone app (for users with restricted access) and as a module in the main app (for users with full rights access

Re: [flexcoders] Re: Prototyping a form

2008-10-02 Thread Scott Melby
in the parent class, even if it is has an empty implementation. hth Scott Maciek Sakrejda wrote: Ok, what's the context here? If this is the error, it could be that you're not defining the method in the parent form. This is true even if the method doesn't do anything and *must* be overridden in child

Re: [flexcoders] Matching n groups with a regex?

2008-10-02 Thread Scott Melby
just split the String? hth Scott Josh McDonald wrote: Hey guys, I'm trying to turn this objectA.objectB.objectC into [objectA, objectB, objectC] using a regex, but all I seem to get using String.match() is [objectA, objectC]. Can anybody tell me what's wrong with the following? const

Re: [flexcoders] simple?? question

2008-10-03 Thread Scott Melby
Guessing wildly... Maybe your package statement in the vo file is incorrect??? hth Scott Greg Morphis wrote: I've got a VO, fooVO, it's located here root - com - vo - fooVO.as When I enter public var foo: fooVO shows up and I chose it.. why does FlexBuilder import com.vo.fooVO.fooVO

Re: [flexcoders] flow?

2008-10-03 Thread Scott Melby
the model. hth Scott Greg Morphis wrote: in my application. mxml I have a creationcomplete function initMe() which is suppose to create an event and send it to Cairngorm but it's not returning data, no errors though either, I don't know where to check for data to see if it's making it to a certain

Re: [flexcoders] Listem to an event sent by a DataGrid ItemRenderer

2008-10-20 Thread Scott Melby
until it reaches your application. Then all you need to do is register for the event at the Application level. hth Scott --- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com jitendra jain wrote: Where is the Timer control ? Which TimerEvent you are listening to .. Thanks

[flexcoders] Remote Debugging Air Application with FlexBuilder?

2008-11-05 Thread Scott Delap
the FlexBuilder to the now running application. Scott

[flexcoders] Degrafa Meter Component

2008-12-18 Thread scott chidester
I created a configurable vertical meter component using Degrafa for a project I am working on. Thought I would share it with the group in case some one else has a similar need. http://www.txtracks.com/flex-examples/degrafa-meter/degrafatemplate.html

[flexcoders] Fluint bindable / IEventDispatcher error

2009-01-22 Thread Scott Langeberg
, simply to get out of writing in the interface support. What is odd, is does anyone know where this is documented? And how do we get around this when trying to run ASDOC? -- : : ) Scott Helping your grandma on the interweb at: http://blog.criticalpile.com CROSS-POST PENANCE: Getting memory

[flexcoders] Debugger hosed

2009-01-22 Thread Scott Smith
Somebody help! My FlexBuilder quit debugging today. For a bunch of descriptions and ideas on this, please see: http://therush.wordpress.com/2008/03/10/flex-builder-3-debugger-stopped-working/#comment-8591 None of these suggestions have worked for me. Pulling hair out.

[flexcoders] Optimizing Allocated Memory versus Used Memory in Flex/Air Applications

2009-02-20 Thread Scott Delap
I've searched Google on this topic for a few hours with no success so I wanted to throw this out for the list to comment on. I'm working on an Air application that loads 20+ large png files. For some extreme cases we are seeing our application spike up to 800-1200m of operating system

Re: [flexcoders] Optimizing Allocated Memory versus Used Memory in Flex/Air Applications

2009-02-20 Thread Scott Delap
I think Alex said that size was not impossible and you read it as possible. So I think he's agreeing with you. I figured that a compressed PNG would be far larger in a bitmap data format. Scott

[flexcoders] 3.3 SDK AIR debugging issues

2009-03-06 Thread Beau Scott
(with regard to executables). Anyone else see this? -- Beau D. Scott Software Engineer

Re: [flexcoders] 3.3 SDK AIR debugging issues

2009-03-06 Thread Beau Scott
Excellent, thanks. On Fri, Mar 6, 2009 at 10:54 AM, Matt Chotin mcho...@adobe.com wrote: We’re working with the AIR team on this, *FB-16153 * Matt On 3/6/09 9:17 AM, Beau Scott beau.sc...@gmail.com wrote: I just updated our code base to use Flex SDK 3.3 AIR 1.5.1 (thanks

[flexcoders] Automation updates with 3.3 SDK?

2009-03-11 Thread Beau Scott
Just curious if the automation libraries were updated as well? and if so, where to obtain them. -- Beau D. Scott Software Engineer

Re: [flexcoders] Automation updates with 3.3 SDK?

2009-03-13 Thread Beau Scott
/flexdownloads/ Matt On 3/11/09 1:10 PM, Beau Scott beau.sc...@gmail.com wrote: Just curious if the automation libraries were updated as well? and if so, where to obtain them. -- Beau D. Scott Software Engineer

Re: [flexcoders] Automation updates with 3.3 SDK?

2009-03-13 Thread Beau Scott
/Download+Flex+3 , to the 3.2 sdk zip goes to the main flex product download page rather than to where it should: http://opensource.adobe.com/wiki/display/flexsdk/download?build=3.2.0.3958pkgtype=1 Beau On Fri, Mar 13, 2009 at 8:41 AM, Beau Scott beau.sc...@gmail.com wrote: K, I'm updating from 3.1

Re: [flexcoders] Perplexing regex/replace() issue

2009-03-16 Thread Beau Scott
making the second param a function that returns uppercase, but replace() doesn't do the group substitution in this case. Can this be done? -- Beau D. Scott Software Engineer

Re: [flexcoders] Re: datefield issue

2009-03-16 Thread Beau Scott
/30.. Is this a timezone issue with Flex? is this easy to fix? When I Alert the value I see Tue Mar 31 00:00:00 GMT -0500 2009 (when I choose March 31st) So why isnt it staying on March 31st? Thanks! -- Beau D. Scott Software Engineer

Re: [flexcoders] Re: datefield issue

2009-03-16 Thread Beau Scott
wait, my bad, I misread. disregard my previous remark. On Mon, Mar 16, 2009 at 2:26 PM, Beau Scott beau.sc...@gmail.com wrote: Months are 0-based in ecmascript (JS, AS, etc.) Date objects. 0 = jan., 1 = feb., etc. http://livedocs.adobe.com/flex/3/langref/Date.html#month Use a date

<    4   5   6   7   8   9   10   >