Re: [flexcoders] Filter an ArrayCollection into an ItemRender

2008-07-21 Thread Scott Bachman
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="

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

2008-07-22 Thread Scott Bachman
r to apply 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 th

Re: [flexcoders] accessing styles of children

2008-07-22 Thread Scott Bachman
have to cast it to a more specific type to be able 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 PR

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

2008-07-22 Thread Scott Bachman
terMenuItems method with a filter object, 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 provi

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

2008-07-22 Thread Scott Bachman
You need to call collectionData.refresh() when the data property changes for the itemRenderer. One way to do it would be: then add the method: private function dataChanged(data:Object):void { collectionData.refresh(); } Hopefully that does it. Scott On Tue, Jul 22, 2008 at 10:23 AM

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 ne

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

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: >

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

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

2008-07-28 Thread Shearer, Scott
osed IE7 and retried. 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 __

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

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 instead of . > > > > Gordon Smith > >

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. As a

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

2008-08-14 Thread Scott Barnes
gt; a matter of time before everyone else gives up on them. There is a limit, > and I think we're reaching it now. That's a good thing. > > You know the funny part to all this? Having Microsoft in a standards > committee called "Harmony" is the ultimate oxymoron. This is

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

2008-08-14 Thread Scott Barnes
wrote: > >> Hi All >> >> Is there any flex component like a Silverlight Deep Zoom? >> >> Regards >> Jerry >> >> > > > -- > "Therefore, send not to know For whom the bell tolls. It tolls for thee." > > :: Jos

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

2008-08-14 Thread Scott Barnes
> > Search Archives: >> > > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! >> Groups >> > > Links >> > > >> > > >> > > >> > > >> > >> > >> > -- >> > "Therefore, send not to know For whom the bell tolls. It tolls for >> thee." >> > >> > :: Josh 'G-Funk' McDonald >> > :: 0437 221 380 :: [EMAIL PROTECTED] >>> >> >> >> >> >> >> -- >> Flexcoders Mailing List >> FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt >> Search Archives: >> http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups >> Links >> >> >> >> > > > -- > "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
he use of open source software whenever I > can. YMMV, 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-plat

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

2008-08-15 Thread Scott Barnes
ittle skewed 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? > &

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

2008-08-15 Thread Scott Barnes
dFusion and Flex Combination. My choice > But given what Guy said, I can certainly see his point, 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 i

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

2008-08-15 Thread Scott Barnes
ing app I can run on Mac or Linux. > > Guy > > >On 16/08/2008, at 10:16 AM, Scott Barnes wrote: > > > Let me clarify, > > My background was flex, my boss's background was the Product Designer for > Flex/Flash, educating us on what Flex is or should be etc

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 pla

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

2008-08-16 Thread Scott Barnes
27;m using it. But the Silverlight streaming video implementation on NBCOlympics.com is truly awesome … I have to give Microsoft and its technology partners 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

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

2008-08-16 Thread Scott Barnes
ng online. As long as the brand is trusted and well known, the security risk analysis that consumers conduct 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,

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

2008-08-16 Thread Scott Barnes
s over 95% world wide (96% - 98%). > > Flash Player 9.0.115 is around 80% world wide. > > mike chambers > > [EMAIL PROTECTED] > > 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 >

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

2008-08-16 Thread Scott Barnes
at 5:41 PM, Guy Morton <[EMAIL 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/20

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

2008-08-16 Thread Scott Barnes
stall a new plugin they've never heard of. > > Add to that the fact that supporting 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

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;

Re: [flexcoders] Re: What is Flexcoders?

2008-09-06 Thread Scott Barnes
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/msmossyblog

Re: [flexcoders] Who is Robert Thompson?

2008-09-06 Thread Scott Barnes
> recipes<http://us.ard.yahoo.com/SIG=13o12n9ev/M=493064.12016243.13036160.8674578/D=groups/S=1705007207:NC/Y=YAHOO/EXP=1220376824/L=/B=CcAkBkLaX.M-/J=1220369624447229/A=5379224/R=0/SIG=11gatb1qb/*http://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
l likely get the ioError event... 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 =

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

2008-09-30 Thread Scott Melby
ly 2) Bind the local collection to something that will fire the binding when it changes filterFunction="filterPerson"/> height="100%"> hth Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com FYI: here is how my custom Hashtable collec

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: mycom

Re: [flexcoders] component reuse

2008-10-02 Thread Scott Melby
ibrary). 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

Re: [flexcoders] Re: Prototyping a form

2008-10-02 Thread Scott Melby
n 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

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

2008-10-02 Thread Scott Melby
objectB"; afterSplit[2] == "objectC"; Can you 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

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.

Re: [flexcoders] flow?

2008-10-03 Thread Scott Melby
order to update 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

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

2008-10-20 Thread Scott Melby
tal chain 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 .

Re: [flexcoders] Label not updating properly

2007-11-08 Thread Scott Melby
options are to update your dispDate as follows dispDate = new Date(Application.application.parameters.startTime) or alternatively set it the way you are, then manually update your label with something like myLabel.invalidateDisplayList(). hth Scott Scott Melby Founder, Fast Lane Software LLC

Re: [flexcoders] Re: TabNavigator hide/show tabs

2007-11-08 Thread Scott Melby
Should be possible to remove child using something like the following. In fact I believe this should work with regular TabNavigator as well. tabNav.removeChildAt(index); tabNav.invalidateDisplayList(); hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com

Re: [flexcoders] Bug in ContextMenu

2007-11-13 Thread Scott Melby
flex/3/langref/flash/ui/ContextMenuItem.html>. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Anzer wrote: The context menu is not working for some captions. Eg:- captions start with de is not displaying De, del, delete etc is not working. Is it a bug? I want to

[flexcoders] Editable data in data grid too easily edited

2007-11-13 Thread Scott Melby
so provide a custom itemEditor to resolve this issue. But wanted to hear if others had suggestions for the cleanest solution. Any help is appreciated. Thanks Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com

Re: [flexcoders] HELP! How to invoke a servlet from a Flex Application: Throws error 2032

2007-11-14 Thread Scott Melby
Not sure if this is your issue because you cut some of your servlet code. But, you need to set your response content type in the servlet as follows. resp.setContentType("application/xml"); Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.co

[flexcoders] Converting app to use modules

2007-11-14 Thread Scott Melby
SharedCodeModule approach would resolve this... but I must have done something wrong. As always any help is appreciated. Thanks Scott --- MainView.mxml --- http://www.adobe.com/2006/mxml"; layout="absolute" xmlns:components="common.components.*" creationComplete=&qu

Re: [flexcoders] Grid Editing

2007-11-19 Thread Scott Melby
tures that they want to add data... then hide it again after the data is added. Note: If you want even simpler just put an add button near the form, or context menu item, etc. then add the new row with dummy values when clicked. hth Scott Scott Melby Founder, Fast Lane Software LLC

Re: [flexcoders] Flex Builder 3 Beta 2 Resource Error (unable to resolve resource bundle "collections" for locale...)

2007-11-19 Thread Scott Melby
Mark - I saw something similar with the AdvancedDataGrid after upgrading. In my case there was a separate .swc file for the resource bundle stuff that needed to be added to the project (datavisualization_rb.swc)... My guess is that there is a similar solution for your issue. hth Scott

Re: [flexcoders] Performance Impact when using custom item renderer

2007-11-19 Thread Scott Melby
HBox, etc. Instead it extends the AdvancedDataGridItemRenderer class. In general you want to make your renderers as light weight as possible. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com letterpigeon wrote: Hi all, I'm seeing a huge performance

Re: [flexcoders] Re: Performance Impact when using custom item renderer

2007-11-19 Thread Scott Melby
user clicks on a particular data value (row/column). hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com letterpigeon wrote: Hi Scott, Thanks for your post. But I'm on flex 2 now so the AdvancedDataGridItemRenderer is not available to me. Also, in terms of k

Re: [flexcoders] Re: Performance Impact when using custom item renderer

2007-11-20 Thread Scott Melby
r the column to be the label text. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Scott Melby wrote: Check out CenteredCheckBox on Alex's blog (assuming you want it centered, otherwise just use CheckBox). I think Alex's blog also has something for a

Re: [flexcoders] Re: Performance Impact when using custom item renderer

2007-11-20 Thread Scott Melby
me off list if you want help with the image one. Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com letterpigeon wrote: Hi Scott and Alex, Thanks for all your help. I adopted Alex's example of the backgroundColorRenderer and it worked really well. So now I'

Re: [flexcoders] Re: Performance Impact when using custom item renderer

2007-11-20 Thread Scott Melby
Nope... I use it quite a bit. Must be a bug in the way you are specifying the renderer. Can you post a code snippet? Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com letterpigeon wrote: Hi Scott, Not sure why if I only use a checkbox (or CenteredCheckBox) as

Re: [flexcoders] DataGrid Performance issue

2007-11-21 Thread Scott Melby
g the data from the SharedObject once (creationComplete perhaps) and putting it in a local object then setting the local object as your grid provider. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com jitendra jain wrote: Hi guys, I have 200 rows and 32

[flexcoders] Weborb and FB3

2007-11-27 Thread Scott Melby
have LCDS installed anyway? Thanks Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com

Re: [flexcoders] Re: Flex Calendar...

2007-11-29 Thread Scott Melby
I found the same thing and decided to work with a modified version of Ely's calendar... It has been excellent for my project (once I fixed a few minor things). You can see it on my blog <http://blog.fastlanesw.com/?p=22> and view source if you right click. hth Scott Scott Me

Re: [flexcoders] Problems printing in Flex

2007-12-04 Thread Scott Melby
Not sure what your back end is... but I am using Java and have found it much simpler to just use the iText library to generate PDFs (from the back end) for printing. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Randy Martin wrote: I'm having all

Re: [flexcoders] Re: AdvancedDataGrid::toolTip formatting

2007-12-05 Thread Scott Melby
I just wrote this post <http://blog.fastlanesw.com/?p=31> on my blog this morning that shows how to do HTML tooltips in Flex. It is very simple. hth Scott tungchau81 wrote: The full code is : private function myDataTip(data:Object):String { return "Tung Chau"; }

Re: [flexcoders] Combo as itemEditor

2007-12-06 Thread Scott Melby
In the itemEditEnd handler I get the comboBox as follows: var comboBox:ComboBox = ComboBox(event.currentTarget.itemEditorInstance); hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Barry wrote: I am using a comboBox component as an itemEditor within a

Re: [flexcoders] Sloooooow Flex Builder

2007-12-06 Thread Scott Melby
much faster. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Tim Ashworth wrote: One project open, sometimes save to a network drive, sometimes save locally, always slow. I learnt about the open project thing and that's made things better, but really

[flexcoders] AdvancedDataGrid sortable column headers

2007-12-07 Thread Scott Melby
Can anybody tell me how to make the sortable column headers on an AdvancedDataGrid look like the headers on a regular DataGrid? All I want is the header text and the sort direction arrow. I'd rather not have the separator and sort number. Thanks Scott -- Scott Melby Founder, Fast

Re: [flexcoders] How To Hide Tab Of Tabnavigator

2007-12-10 Thread Scott Melby
tabNav.removeChildAt(index) works for me. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com yourName wrote: can any one tell my how i can set visibility of tabnavigator tab by using any variable or how can hide tabnavigator tab... Thanks in advance...

Re: [flexcoders] How To Hide Tab Of Tabnavigator

2007-12-12 Thread Scott Melby
Not sure I am entirely clear on the solution. Can you post a code snippet? I'd love to use visible flag of the tab if it works... Thanks Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Igor Costa wrote: set the id to the container and then put visible=&

Re: [flexcoders] Datagrid context menu question

2007-12-12 Thread Scott Melby
I did it by listening for the MENU_SELECT event on my context menu... works great. _myContextMenu.addEventListener(ContextMenuEvent.MENU_SELECT, handleMenuSelectEvent, false, 0, true); hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Alex Harui wrote

Re: [flexcoders] Re: Datagrid context menu question

2007-12-13 Thread Scott Melby
Yeah... my menus actually know which object they are invoked for. I do this by overriding the rollOver on the dataGrid and passing the row that was rolled over to the menu. So, in the MENU_SELECT the menu just finds that item in the grid and selects it (if not already selected). hth Scott

Re: [flexcoders] Flex & server & Subversion

2007-12-13 Thread Andrew Scott
There is no hard fast rules, but what best suits you. Here is what we do, and this applies mainly to more than 1 developer. If one developer then you can ignore the fact that you don't need to merge / sync code as much. 1) Create a repository with a trunk / branch / tag 2) Write code. 3) Sync wit

Re: [flexcoders] Re: DataGrid ItemRenderes HEADERS?

2007-12-19 Thread Scott Melby
are dispatching. Seems the event should bubble out to you. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Sajid Hussain wrote: hey . I want to add checkbox control in datagrid header ,I alredy render tht checkbox but problem is that I m not able to

[flexcoders] RemoteObject in an Air app

2007-12-28 Thread Scott Mulder
g when the app runs locally? Thanks in advance! Scott

Re: SPAM-LOW: [flexcoders] RemoteObject in an Air app

2007-12-30 Thread Scott Mulder
l"> http://www.mydomain.com:80/flex2gateway/"; class="flex.messaging.endpoints.AMFEndpoint"/> Sure it's not secure yet... but I'll look at that next. If anyone has any quick suggestions on sending over credentials and validating them in a CF Service

[flexcoders] Re:Looking for tool to auto generate class diagrams from a Flex project

2007-12-30 Thread Scott Hayman
Enterprise Architect from Sparxsystems ( http://www.sparxsystems.com/ ) may be able to do it. Scott

[flexcoders] Add FDS returned AS3.0 native array to local SQLlite DB?

2007-12-30 Thread Scott Mulder
server when connected. and... 3) Before I start looking at code samples Is there any way to develop using LiveCycles on a Mac? Thanks in advance... again! Scott On Dec 28, 2007, at 12:13 PM, Jeffry Houser wrote: You probably need to create a new services-config file with a hard cod

Re: [flexcoders] IE cache

2008-01-03 Thread Scott Melby
Are you using HTTPS? Check this post <http://blog.fastlanesw.com/?p=9> on my blog for a workaround. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com coder3 wrote: Hi All, I need an auto refresh feature in my flex application, my code is like this:

Re: [flexcoders] IE cache

2008-01-06 Thread Scott Melby
Did you try the max-age header? Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com coder3 wrote: i tried to set the no-cache header in my jsp, somehow it didn't work. so i have to use garbage parameter to work around. thx Scott Melby-3 wrote: > > Ar

Re: [flexcoders] Flex Calendar

2008-01-08 Thread Scott Melby
ttp://blog.fastlanesw.com/?p=22>. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com vivek wrote: Hey Guys, Thanks for looking into my message. I need some urgent help regarding creating a calendar in flex. I want to create a calendar as shown in the image in this link:

Re: [flexcoders] mx:binding equivalent in Actionscript? Need to dynamically bind text inputs..

2008-01-11 Thread Scott Melby
Rich - Haven't ever tried it... but, ChangeWatcher.watch() might be useful. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com zlayde wrote: Hi all: I'm looking to programattically bind a textInput box as a source and an xml element (via e4x) as a d

Re: [flexcoders] Dynamic DataGrid + slow horizontal scrolling

2008-01-11 Thread Scott Melby
chunks and clean them up repeatedly. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Gary Smith wrote: Can anyone explain why this datagrid is so slow at horizontal scrolling: source and demo here: it takes a few seconds to start over the internet due to

Re: [flexcoders] how to update database with update datagrid value.?

2008-01-14 Thread Scott Melby
Have a look at DataGrid.itemEditEnd hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com markflex2007 wrote: Hi, Datagrid can be editable, I need update the back end database after Datagrid updated. Which event I can use and how to pass the new value to

Re: [flexcoders] Dynamic DataGrid + slow horizontal scrolling

2008-01-14 Thread Scott Melby
); tmpArray.push(rowObj); } dgQuery.source = tmpArray; hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Gary Smith wrote: Thanks for the quick reply Am I missing something, I have stripped the previous dynamic column generation out of the source and just

Re: [flexcoders] How to force a module to compile

2008-01-14 Thread Scott Melby
Are you certain you are using the module anywhere within your app? I seem to recall running into this once and the issue was that them module was not referenced from the app source code anywhere, hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com reflexactions

Re: [flexcoders] Flex + WebORB for PHP

2008-01-15 Thread Scott Melby
I believe WebORB has a forum for this type of thing... but I think the last time I had this issue it was due to not copying the weborb.php as directed on this page http://www.themidnightcoders.com/weborb/php/gettingstarted.htm. See the big red IMPORTANT section for details. hth Scott Scott

Re: [flexcoders] HTTPService - save DataGrid data

2008-01-15 Thread Scott Melby
Is there a reason that you can't use SharedObject to save the grid size, etc. on the client side? hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com markgoldin_2000 wrote: I am using HTTPService to bring data from server. My DataGrid data is an xml. In

Re: [flexcoders] HTTPService - save DataGrid data

2008-01-15 Thread Scott Melby
Just re-read this and realized I may have mis-understood the question :) If you want to save data from grid back to server after user changes it, take a look at DataGrid.itemEditEnd event. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com Scott Melby wrote

RE: [flexcoders] Adobe AIR Disconnected storage with Credit Cards

2008-01-15 Thread Scott Mulder
insure that the info is unique. You'll want to clear the CCs out of your local SQLite db manually if you intend to store it the way I'm doing it. If I'm wrong someone correct me. Scott From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geo

Re: [flexcoders] Re: HTTPService - save DataGrid data

2008-01-15 Thread Scott Melby
Name"; myHttpService.send(params); on the backend you can then just parse the request params to get the changed data and commit them to your DB etc. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com markgoldin_2000 wrote: But I am not sure what exaclty I need to

[flexcoders] PopUpButton issue

2008-01-16 Thread Scott Melby
... but seems like it should not be necessary. Thanks Scott -- Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com

Re: [flexcoders] PopUpButton issue

2008-01-16 Thread Scott Melby
Deepa - Thanks! It seems you could avoid the memory leak without nulling _popUp couldn't you? i.e. just call PopUpManager.removePopUp(_popUp) without the following line that nulls the reference. Is that not right? Scott Scott Melby Founder, Fast Lane Software LLC

[flexcoders] Adding a 'baseline' to a Flex Chart

2008-01-17 Thread Scott Stroz
but for the life of me, I have been unable to figure it out. Thanx in advance for any help. -- Scott Stroz Senior Software Architect Alagad http://www.alagad.com 1-888 ALAGAD-4 ext.7

Re: [flexcoders] How to change the text in datagrid ?

2008-01-18 Thread Scott Melby
Have a look at DataGridColumn.labelFunction here <http://livedocs.adobe.com/labs/flex3/langref/index.html?package-summary.html&all-classes.html>. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com markflex2007 wrote: Hi, I have a account list

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Scott Barnes
annel of delivery in rich interactive applications. Keep moving forward :) - Scott Barnes Developer Evangelist Microsoft - FUD is a common word abbrevation lately, what's with that? On 16 Apr 2007 18:04:35 -0700, helihobby <[EMAIL PROTECTED]> wrote: Please comment after you ready and

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Scott Barnes
See there ya go ;) once you get past all this my muscles are bigger than yours stuff and you get to the heart of it, it doesn't hurt to know how SilverLight ticks though does it :) Scott. On 17 Apr 2007 06:29:35 -0700, driverdude <[EMAIL PROTECTED]> wrote: *snarf* I'

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Scott Barnes
ound are some barely working and butt ugly component experiments). I'd guess that Silverlight will get some video market share, but it has a long way to go to enter the RIA market. My 2 centavos. Cheers, Claus. -- claus wahlers côdeazur brasil http://codeazur.com.br/ http://wahlers.com.br/claus/blog/ -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Scott Barnes
engine for scripting. Basically, the XAML subset implement Silverlight handles Layout, and animation, while the browser's javascript engine actually provides for the scripting. IMHO, that's what we did with Flash 3. Although admittedly Flash 3 didn't event back. Ralph. On 17 A

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-17 Thread Scott Barnes
is is not a threat to Flash/Flex by any means. Microsoft will never be able to create a truly cross platform product. All of their past efforts have been clumsy at best, even on their own platform. Paul -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-18 Thread Scott Barnes
) either way You folks win, let the brands fight out the PR for a change as we (all) can only go up, not down right?. There's life after Microsoft, I just hope its much more exciting than it has been in the last 5 years is all ;) Scott Agnostic Evangelist Microsoft hehee - there will be complai

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-18 Thread Scott Barnes
way happy to take this offline so i don't pollute the Flexcoders list with Silverlight stuff hehe. On 4/19/07, Brian Lesser <[EMAIL PROTECTED]> wrote: Hi Scott, I'm just looking for information I can use that will help me understand why you seem to be saying the two plugins

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-18 Thread Scott Barnes
ve them), but rather to point out that they are > more of a market force than a true software company - and so the > relative success of Silverlight (or any other MS offering) is > pre-ordained, so long as they decide that's what they want to do - > it's independent of t

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-19 Thread Scott Barnes
is aok, i'm at times not a fan either) -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-19 Thread Scott Barnes
;s not just some "copycat Flash" competitor. If you're looking for a balanced view of Silverlight's effect, check out his latest blog entry: http://www.cynergysystems.com/blogs/page/davewolf?entry=wake_up_and_see_the Regards, Dave Carabetta. Cynergy Systems, Inc. On 4/18/07,

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-20 Thread Scott Barnes
On 4/20/07, Dave Wolf <[EMAIL PROTECTED]> wrote: Scott, > Sillyness aside, there is substance to this and it was a great read, but i think what hurt it's purity is the undercurrent of "MS is evil, watch them" mentality. I assure you that undertone wasn't purpo

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-20 Thread Scott Barnes
st? next thing you'll say Silverlight and Flash can co-exist.. pft crazy talk. Scott, your just a person that likes getting people talking regardless of the side your on. Your good at it to. Oh stop, you say that to all the Evangelists.. now you're making me blush *blush in asc

[flexcoders] Flash Remoting / Flex / Datagrid

2007-04-20 Thread Scott Hoff
Does anyone know how I should go about detecting that a row has been changed when a grid is editable and then pushing the change to the server? I'm currently searching for some sort of explanation but haven't found anything yet.

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-20 Thread Scott Barnes
Adobe charges FDS in US$ 20K and does not pay attention to .NET developers. Well it seems to me that this is another big mistake. if Adobe continues with this kind of comercial strategy, i am afraid that our beloved Flex will loose the race. --- In flexcoders@yahoogroups.com , "Scott Barnes

<    1   2   3   4   5   6   7   8   9   10   >