Re: [flexcoders] X and Y position of AIR app...

2007-10-06 Thread Scott Prentice
OK .. it's working now. The get works fine with .. stage.nativeWindow.x .. OR .. nativeWindow.x .. (that's with a lowercase stage) But the set *only* works with .. nativeWindow.x This may be obvious to a more experienced Flex coder, but wasn't to me. :) Cheers, ...scott

Re: [Fwd: Re: [flexcoders] Mxml editor no longer working]

2007-10-05 Thread Scott - FastLane
That did it!!! Thanks... I probably should have found this myself, but I got thrown off by the bug report where it says workarounds: None Somebody should update that and document this procedure as a possible work around. Thanks again Scott João Fernandes wrote: wild guess, try this http

Re: [flexcoders] ArrayCollection XMLList?

2007-10-05 Thread Scott - FastLane
Assuming your ArrayCollection contains strongly typed objects, I think you can make the ArrayCollection itself be the dataprovider for your tree. Your class (the data stored in the ArrayCollection) just needs to implement the get children():Array and get label():String method iirc. hth Scott

[flexcoders] Mxml editor no longer working

2007-10-04 Thread Scott - FastLane
been using... but no luck. Any help is greatly appreciated. Scott

Re: [flexcoders] Mxml editor no longer working

2007-10-04 Thread Scott - FastLane
) at org.eclipse.core.launcher.Main.run(Main.java:977) at org.eclipse.core.launcher.Main.main(Main.java:952) Thanks Scott Tom Chiverton wrote: On Thursday 04 Oct 2007, [EMAIL PROTECTED] wrote: Does anybody know what causes this issue http://bugs.adobe.com/jira/browse/FB-8390, and if there is any way

[flexcoders] X and Y position of AIR app...

2007-10-04 Thread Scott Prentice
), but I'm not seeing how to get/set the x/y position of the application window. Any ideas? Thanks, ...scott

Re: [flexcoders] X and Y position of AIR app...

2007-10-04 Thread Scott Prentice
Hi Sunil... I've added a .. import flash.display.Stage; And when I try to use .. Stage.nativeWindow.x (or .y) I get the error .. Access of possibly undefined property nativeWindow through a reference with static type Class. Any ideas? ...scott Sunil Bannur wrote

Re: [flexcoders] Dates and Months Problem

2007-10-01 Thread Scott - FastLane
The docs on the date class http://livedocs.adobe.com/flex/2/langref/Date.html#month state that the month is zero based 0 = jan 1= feb ... 9=oct Scott hugocorept wrote: Hello all, how you doing ^^ I want to get the month we are by number. Can some one explain me why is flex saying the Month

Re: [flexcoders] HTTPService Error event

2007-09-30 Thread Scott - FastLane
params:Object = new Object(); params.firstName = firstName.text; ... srv.send(params); } hth Scott George Georgiou wrote: Hi, I have this code. It works perfect but I would like to get alerted only when I have some kind of error in my test.cfm file. Instead, the 'errorAlert()' function

Re: [flexcoders] HTTPService Error event

2007-09-30 Thread Scott - FastLane
a debugger or tracing in your cfm file and verified that it is actually getting called successfully? hth Scott George Georgiou wrote: Hi Scott, I have been through many Flex Tutorials but unfortunately our world lacks of tutorials for connectivity with ColdFusion. I am an experianced CF

Re: [flexcoders] Re: HTTPService Performance Issue - very slow

2007-09-29 Thread Scott - FastLane
of the ComboBox until the user actually wants to edit that cell. hth Scott Alex Harui wrote: If your resultFormat is Object, I'm pretty sure all of the XML has to be parsed into objects before the busy cursor goes away and the result handler fires. I would expect noticeably faster response

Re: [flexcoders] Re: Here we go again: Flex Vs Java

2007-09-28 Thread Andrew Scott
go again: Flex Vs Java What is Web 2.0, by Tim O'Reilly http://www.oreilly.com/pub/a/oreilly/tim/news/2005/09/30/what-is-web-20.html On 9/27/07, Andrew Scott [EMAIL PROTECTED] wrote: Oh my god, I really hate it when someone makes a comment like Flex front end is web 2.0 Web

Re: [flexcoders] HTTPService Performance Issue - very slow

2007-09-28 Thread Scott - FastLane
Tracy Spratt wrote: In my experience, the rendering of the UI is the bottleneck, not the data transfer. Use timer and the result handler function to time the actual data transfer. You ARE using a result handler, and not binding directly to lastResult, right? Are your item renderers

Re: [flexcoders] HTTPService Performance Issue - very slow

2007-09-28 Thread Scott - FastLane
oops... sorry about the prior message. Doh! It has also been my experience that rendering is usually the bottleneck. See this post on my blog http://blog.fastlanesw.com/?p=25 for an example of the difference a UIComponent based renderer can make over containers. hth Scott Tracy Spratt

Re: [flexcoders] Re: Here we go again: Flex Vs Java

2007-09-27 Thread Andrew Scott
Oh my god, I really hate it when someone makes a comment like Flex front end is web 2.0 Web 2.0 is not about RIA, web 2.0 is about collaboration. God forbid, you even know what Enterprise 2.0 is oh yeah thats MS Silverlight on steriods. On 9/27/07, gers32 [EMAIL PROTECTED] wrote: First of

Re: [flexcoders] Hyperlink in Flex 2...

2007-09-26 Thread Scott - FastLane
Daniel - mx:LinkButton label=Your Text color=0xff click=yourEventHandler(event)/ hth Scott Daniel Sanderson wrote: Is there a way to make a label look like a hyperlink. It may trigger a view state or send and e-mail, whatever but I want to make it look and function like a hyperlink

Re: [flexcoders] Re: Memory usage by flex

2007-09-24 Thread Scott - FastLane
an HTTPService and ways to work around it. hth Scott mohneeshs wrote: Here are the info about what the page is- The page has some tabs painted by using tab navigator and a timer schedule to run once after a pre configured time. Apart from this there is nothing much component wise on the screen

Re: [flexcoders] tabNavigator - dynamic tabs?

2007-09-24 Thread Scott - FastLane
Have you looked at SuperTabNavigator in FlexLib http://code.google.com/p/flexlib/wiki/ComponentList? hth Scott byte.sensei wrote: I have a tabNavigator with 3 mx:Canvas tabs, each containing a dataGrid for a different user/customer. Above the tabNavigator you can select up to 3 different

[flexcoders] Invisible checkbox renderer

2007-09-17 Thread Scott - FastLane
that this.visible is being set to false... but it always appears anyway. Seems this should be very simple, I must be overlooking something. Any Help is appreciated. Scott *** This works, but is heavier weight *** mx:itemRenderer mx:Component

Re: [flexcoders] Invisible checkbox renderer

2007-09-17 Thread Scott - FastLane
Thanks Alex! commitProperties() did not work, but updateDisplayList() did. Scott Alex Harui wrote: The list classes set .visible on renderers as part of the recycling, so we're overriding yours. You should be able to set it in commitProperties or later

Re: [flexcoders] Cache-Control header not working in HTTPService

2007-09-17 Thread Scott - FastLane
. Note: I also describe the workaround that I use to get around this issue. hth Scott Dan Todor wrote: Try adding current system time as a parameter to your request, it will avoid caching. hth On 9/17/07, *Guido* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Hi y'all, I've been

Re: [flexcoders] Follow-up on the watermark thing

2007-09-14 Thread Scott - FastLane
Scott Chris Luebcke wrote: Forgot a critical point of my complaint--we're building enterprise software and doing our QA and production builds via Ant and mxmlc. Yeah, I can get rid of the watermark in Flex Builder, but I really need to be able to build from the command line or my whole build process

Re: [flexcoders] Re: Follow-up on the watermark thing

2007-09-14 Thread Scott - FastLane
Chris - My bad... I thought you were saying you couldn't build at all from the cmd line. Sorry for the confusion. Scott Chris Luebcke wrote: Thanks Scott--I already have the ant build working, and I'm using the exact same datavisualization.swc in the ant build--I picked it up out

Re: [flexcoders] Re: Follow-up on the watermark thing

2007-09-14 Thread Scott - FastLane
not get rid of the watermark on my ADGs anyway. Scott Chris Luebcke wrote: Of course not! Why would I do that? (skulking away) Thanks Matt, that was pretty obvious. Much obliged. - Chris --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote

Re: [flexcoders] Using Ant in Eclipse to build

2007-09-13 Thread Scott - FastLane
Giles - Yes, it is not too hard. I just blogged about how to build a flex project using Ant http://blog.fastlanesw.com/?p=23... let me know if you need more than that. hth Scott Giles Roadnight wrote: Hi Guys I'm using the eclipse Flex 2 plugin and use an Ant build.xml file to put

Re: [flexcoders] How to check to see if an XML element exists

2007-09-12 Thread Scott - FastLane
assuming var itemSource:XML is assigned to the structure below... I think if(itemSource.Media != undefined) should do it. hth Scott kc7cia wrote: Hi, I was hoping someone could tell me how to check to see if an XML element exists in AS3. I have an XML structure that looks like

Re: [flexcoders] Re: goto flex command?

2007-09-11 Thread Scott - FastLane
...) { foundIt = true; scrollableBox.verticalScrollPosition = currBox.y; break; } } hth Scott djdyland wrote: --- In flexcoders@yahoogroups.com mailto:flexcoders

Re: [flexcoders] How to build on command line?

2007-09-10 Thread Scott - FastLane
to download the flexTasks.jar jar http://labs.adobe.com/wiki/index.php/Flex_Ant_Tasks file, and you may not need the datavisualization stuff... I have that for AdvancedDataGrid. hth Scott Mark Ingram wrote: Well that's exactly what I'm planning to do. I have a development server setup and I

Re: [flexcoders] How to build on command line?

2007-09-10 Thread Scott - FastLane
Christian - I'll post it on my blog http://blog.fastlanesw.com tmw or so... btw: check out the latest post that I just put up there. It shows a sample flex calendar app based on the work done by Ely Greenfield on Quietly Scheming. Scott Christian Edward Gruber wrote: Nice. Is that up

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Scott - FastLane
Steve - I believe you intend to be adding the listener for the Event.RESULT event instead of the Event.COMPLETE. hth Scott Steve Hueners wrote: All the samples i've come across so far show the mxml route - I'm able to instantiating and fireing the send correctly with: public var

Re: [flexcoders] help linking combobox to httpservice data

2007-09-10 Thread Scott - FastLane
currently selected when you need to. hth Scott Ramsey, Robert L wrote: Hi, I am calling an httpservice to get the following information: people person nameJohn Doe/name uid1/uid phone1234567890/phone email[EMAIL PROTECTED] mailto:a%40b.com/email /person person nameJane Doe/name uid2/uid

Re: [flexcoders] Getting xml in code only

2007-09-10 Thread Scott - FastLane
; } hth Scott Steve Hueners wrote: Gives: 1119: Access of possibly undefined property RESULT through a reference with static type Class. am importing: import mx.rpc.events.ResultEvent; import mx.rpc.http.HTTPService; import mx.rpc.events.FaultEvent; import

Re: [flexcoders] Datagrid editable cell loses focus on screen update

2007-09-10 Thread Scott - FastLane
. ($ddd.cc) dollar sign is optional.; event.preventDefault(); } else { //commit the user edited value... } hth Scott grantdotcox wrote: I have a datagrid with editable cells. When the user changes a value this is saved

Re: [flexcoders] DataGrid Speed

2007-09-06 Thread Scott - FastLane
performance acceptable for me. hth Scott j_lentzz wrote: Hi, I have an app where it uses a datagrid to display screen data. The grid is 25 columns wide with 3 columns of comboboxes, 5 columns of checkboxes and the rest are textinputs. The number of rows varies, but can be as high as 40. What I'm

Re: [flexcoders] Re: DataGrid Speed

2007-09-06 Thread Scott - FastLane
question. Seems you could easily create a EditableField custom renderer that has some type of indicator in addition to your Label or Text component. Just a thought... hth Scott j_lentzz wrote: I was wondering about using labels and text as renderers and then making the editor the combobox

Re: [flexcoders] Flex Builder 3 Profiler

2007-09-05 Thread Scott - FastLane
. But, the stuff above is what I recall. Please let me know if not correct etc. hth Scott Mark Ingram wrote: Hi, I'm having trouble with the new Profiler in Flex Builder 3 -- I just get errors saying socket timeout I'm googled and tried several things, using only firefox, having

Re: [flexcoders] Bubbling custom events

2007-09-05 Thread Scott - FastLane
checkBox:CheckBox; public function CheckBoxListEvent(type:String, dataObj:Object, targetCheckBox:CheckBox) { super(type, true); data = dataObj; checkBox = targetCheckBox; } } hth Scott donvoltz wrote: Hello everyone, I think the following question

Re: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-26 Thread Scott - FastLane
. In the mean time, I will attempt to find time to write a simple application that demonstrates this issue clearly. Glad you are planning to look into it too :) Thanks Scott Alex Harui wrote: Scott, I don't doubt you saw what you saw, and everything you've posted could be true (naturally I

Re: [flexcoders] Flex builder and VISTA

2007-08-26 Thread Andrew Scott
Its an Eclipse 3.2 thing. And Adobe really should support Eclipse 3.3, because it has serious problems running under Vista on Eclipse 3.2. On 8/26/07, rieraraul [EMAIL PROTECTED] wrote: Hi, I'm using Flex Builder 3 with Windows Vista, and the syntax coloring doesn't work, I see all the

Re: [flexcoders] Memory leaks - binding to e4x XML?

2007-08-25 Thread Scott - FastLane
to publish the post in case it might help others. Scott Alex Harui wrote: I thought it was a performance issue only. I do expect sealed classes to perform better than XMLLIstCollection (which does not convert to object). I'll have to investigate further. Always frustrating when

[flexcoders] Re: Question about Flex WebService

2007-06-06 Thread Scott Hoff
Why did you ask him if his port was 8200? --- In flexcoders@yahoogroups.com, Shibli Zaman [EMAIL PROTECTED] wrote: You may wish to specify that this is an SAP related question in the future as it will help those familiar with this subject identify the problem and offer solutions. You

[flexcoders] Re: Security error accessing url

2007-06-06 Thread Scott Hoff
Carson, I have placed a cross domain file in my localhost. I try to access a web service (running on port 80) from the path http://localhost:8700/fdstraining2/lesson17/lesson17.html. If I do not use the proxy, I get what I believe is a sandbox error: [FaultEvent fault=[RPC Fault

[flexcoders] FDS and Web Service: Unable to load WSDL

2007-06-05 Thread Scott Hoff
I have the following web service: mx:WebService id=dashboardWS wsdl=http://localhost/flexGrocer/cfcs/aggregate.cfc?wsdl; useProxy=true fault=Alert.show(event.toString()) mx:operation name=getTypeSalesData result=Alert.show(event.toString()) mx:request

[flexcoders] Convert project to Data Services

2007-06-04 Thread Scott Hoff
If you set up a project as basic, can you change it so that it can use flex data services? I'm hitting a brick wall with the Web Service tutorial in the training from the source book. I'm using it in basic mode and am wondering if I'm getting my error b/c I'm not using the FDS proxy.

[flexcoders] Re: Convert project to Data Services

2007-06-04 Thread Scott Hoff
-domain-policy SYSTEM http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd; cross-domain-policyallow-access-from domain=* / /cross-domain-policy --- In flexcoders@yahoogroups.com, Mark Piller [EMAIL PROTECTED] wrote: Hey Scott, Yes, you can definitely do that. Our WebORB plugin for Flex

[flexcoders] Re: Convert project to Data Services

2007-06-04 Thread Scott Hoff
I was able to get it to work by changing it from: ?xml version=1.0 encoding=UTF-8? flexProperties version=1 toolCompile=true flexServerType=0/ to: ?xml version=1.0 encoding=UTF-8? flexProperties version=1 toolCompile=true flexServerType=0/ However, I wasn't sure how to fill out the rest of the

Re: [flexcoders] Data Paging a la Matt Chotin for Flex 2.1

2007-05-23 Thread Scott Stroz
has already ported his samples to 2.1 as they are from way back in 04. Or, if anyone has a better option, I'm all ears. Thanks, Shaun Matt's post: http://weblogs.macromedia.com/mchotin/archives/2004/05/large_data_sets_2 .cfm -- Scott Stroz Software Architect AboutWeb, LLC http

Re: [flexcoders] Re: Skinning...

2007-05-20 Thread Scott Barnes
Woah that's a blast from the past :) and when I sent that it was for Flex 1.0 :) Scott. On 5/19/07, herklano [EMAIL PROTECTED] wrote: hi, i think these 2 sites that can give you some help on skining flex: http://www.scalenine.com/ http://onreflexion.blogspot.com/2007/01/napkin-skins

[flexcoders] Flex: Remote Objects

2007-05-17 Thread Scott Hoff
Do I have to have FDS2 do call remote objects? (Java etc.)

Re: [flexcoders] Flex on Vista?

2007-05-11 Thread Scott Barnes
is now Documents in Windows Vista and to rename it back to My Documents is next to impossible...(I think it's stupid aswell). - Scott / Microsoft. On 5/12/07, Court Shrock [EMAIL PROTECTED] wrote: Dell is still selling new laptops with XP--- so you don't have to go to Vista. Ben Forta wrote

[flexcoders] Extending ArrayCollection - where'd my 'source' go?

2007-05-08 Thread Scott Stroz
file, and bind { myAc.source.length} to a text bock, it displays the correct information. I can even set the new collection to the dataProvider of a dataGrid and everything displays as expected. Anyone have any ideas of what I may be doing wrong? Thanx in advance. -- Scott Stroz Software Architect

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

2007-05-03 Thread Scott Barnes
Weyert, I'm curious to learn more about what you mean by the browser part. If we could take this offline (I'm concious of the mail-list's context) and anyone else for that matter would throw there pain points in this regard my way I can feed it back to th SL Team. Scott Barnes Developer

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

2007-05-02 Thread Scott Barnes
work with Expression tools etc bottom line, there is no winner, just mashups of cool RIA technologies. Scott Barnes Developer Evangelist Microsoft

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

2007-05-02 Thread Scott Barnes
-- Regards, Scott Barnes http://www.mossyblog.com

[flexcoders] Re: Games in Flex / Apollo?

2007-04-27 Thread Scott Hoff
How about a direct link to something for those of us who are too lazy to search through your blog? --- In flexcoders@yahoogroups.com, Troy Gilbert [EMAIL PROTECTED] wrote: Check out my blog, http://troygilbert.com/. I'm doing some *big* stuff with games and Flex. Troy. On 4/27/07,

[flexcoders] Re: QTP 9.2 Eval version and Flex

2007-04-26 Thread Scott Hoff
Does open source = free going forward?

[flexcoders] Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Scott Hoff
Ok. I'm clearly a beginner and I'm trying to get a grasp on the best ways to develop applications in flex. The applications that I develop mostly interface with databases. I have been really impressed with all of the information and examples of Flex Data Services and its advantages. However, I

[flexcoders] Re: Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Scott Hoff
with the Flex client. This allows me to push data to the clients, keep multiple clients synchronized (without forcing the clients to poll), etc. Obviously this solution requires the most expertise, but I've found it preferable to wrangling with FDS. --- In flexcoders@yahoogroups.com, Scott Hoff

[flexcoders] Re: Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Scott Hoff
writing to do! --- In flexcoders@yahoogroups.com, Erik Price [EMAIL PROTECTED] wrote: On 4/25/07, Scott Hoff [EMAIL PROTECTED] wrote: C or perl. When people say CGI, do they refer to server side scripting in general or do they refer to a specific programming language? Technically, CGI

[flexcoders] Re: Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Scott Hoff
What makes AMFPHP much more advanced? Is that something I should just google? --- In flexcoders@yahoogroups.com, Scott Hoff [EMAIL PROTECTED] wrote: Thanks for that explanation. I wouldn't have much idea where to start about usign C or Perl because I have never used either of those

[flexcoders] Re: Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject

2007-04-25 Thread Scott Hoff
@yahoogroups.com on behalf of Scott Hoff Sent: Tue 4/24/2007 5:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Inserting data from Flex: FDS vs. HTTPService vs. RemoteObject Ok. I'm clearly a beginner and I'm trying to get a grasp on the best ways to develop applications in flex

[flexcoders] Re: Help on the syntax for function set blah(param:String)

2007-04-24 Thread Scott Hoff
What is super special about the syntax that you pasted? --- In flexcoders@yahoogroups.com, tjcox1969 [EMAIL PROTECTED] wrote: I have read the section on functions in the Adobe Programming Actionscript manual, but I see no reference to this type of syntax: [Bindable] public function set

[flexcoders] Re: Help on the syntax for function set blah(param:String)

2007-04-24 Thread Scott Hoff
OK, where did you see this to raise the question? Does wherever you took the code from work? --- In flexcoders@yahoogroups.com, Scott Hoff [EMAIL PROTECTED] wrote: What is super special about the syntax that you pasted? --- In flexcoders@yahoogroups.com, tjcox1969 tjc1969@ wrote: I have

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

2007-04-24 Thread Scott Barnes
at Adobe. btw. I've not only bought Adobe products, but I've sold them on your behalf, so with all due respect I'm still paying customer first, brand second. Focus on that. On 4/25/07, Mike Chambers [EMAIL PROTECTED] wrote: Scott, Don't you think you should make it clear in your emails

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

2007-04-23 Thread Scott Barnes
you guy screwed up in FLEX 1.5 and CFMX with FLASH FORMS (Pre-Microsoft, so this is me talking, just Flex developer Scott, and not [EMAIL PROTECTED] talking) http://www.mossyblog.com/archives/267.cfm http://www.mossyblog.com/archives/594.cfm http://www.mossyblog.com/archives/591.cfm http

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

2007-04-23 Thread Scott Barnes
http://www.youtube.com/watch?v=TyuDAzzKnz8 :) On 4/23/07, Gautam [EMAIL PROTECTED] wrote: http://www.youtube.com/watch?v=8zEQhhaJsU4 enjoy! On 4/23/07, Scott Barnes [EMAIL PROTECTED] wrote: David, (No good can come from this, but anyway, here goes nothing). *Let's get FUD

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

2007-04-23 Thread Scott Barnes
://en.wikipedia.org/wiki/Fanboy (gets silly when we call each other names like this don't you think?) Scott. P.S I own your book Brian, and so I respect your work and hope you don't take offense, merly trying to illustrate how easy it is to throw the mud and how silly it can get? On 4/23/07, Brian Lesser [EMAIL

[flexcoders] 1172: Definition mx.binding:RepeaterComponentWatcher could not be found?

2007-04-23 Thread Scott Hoff
I got this random error on my new data services project. The link below discusses a possible fix to this issue, but to my knowledge I haven't changed anything. It says the error at line 16, but line sixteen of what? It doesn't link directly to a file that I can view.

[flexcoders] Embedding iframes within IE

2007-04-23 Thread Scott Hoff
Has anyone had to deal with the losing of session variables in internet explorer b/c of the privacy settings? Apparently I need to set up some sort of P3P Privacy policy and yet it doesn't seem to work. There are suppposed to specifications on the W3C and I downloaded a generator from IBM and

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

2007-04-22 Thread Scott Barnes
lots of fingers on keyboard stuff). On 4/23/07, Paul DeCoursey [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Scott Barnes [EMAIL PROTECTED] wrote: Paul, How many enterprise / companies do you know are shopping around for electronic forms built

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

2007-04-22 Thread Scott Barnes
but the gist was there will be support for Java, .Net, PHP, and others.) I'm looking forward to Ted's longer Flex presentation. Yours truly, -Brian Paul DeCoursey wrote: --- In [EMAIL PROTECTED] ups.com mailto:flexcoders% flexcoders%2540yahoogroups.com, Scott Barnes scott.barnes@ ... wrote

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

2007-04-21 Thread Scott Barnes
forcing the issue. Microsoft has more to learn, and I'll be sure to flog them where I can to make that happen. I'm in Seattle next week and i'm not there to eat lunch/dinners and party, I have reasons and it's to do with Web 2.0 and RIA :) -- Regards, Scott Barnes

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

2007-04-21 Thread Scott Barnes
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Scott Barnes [EMAIL PROTECTED] wrote: I got could point for point with you and sound like a goose, but overall, I'll push back with a question. How many people on this list are in need of PDF work flow generation vs Remoting that's easier

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

2007-04-21 Thread Scott Barnes
discussions. I think they are still different technologies that may have an overlap in a few spots, but the direcion is different. On 4/22/07, John C. Bland II [EMAIL PROTECTED] wrote: Scott, you are right about co-existence. I've been following WPF (and /e) for a year now. Silverlight has quite a ways

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 purposeful. I did flub the Sparkle

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

2007-04-20 Thread Scott Barnes
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 ascii art*. As far as Microsoft's world

[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
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 flexcoders%40yahoogroups.com, Scott Barnes [EMAIL PROTECTED] wrote: On 4/20/07

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

2007-04-19 Thread Scott Barnes
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
: http://www.cynergysystems.com/blogs/page/davewolf?entry=wake_up_and_see_the Regards, Dave Carabetta. Cynergy Systems, Inc. On 4/18/07, Scott Barnes [EMAIL PROTECTED] wrote: Its an annoyance of mine aswell. I'm confused as to why .NET remoting was dropped from Flash/Flex (haven't yet seen

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

2007-04-18 Thread Scott Barnes
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 complaints. On 18 Apr 2007 04:50:46 -0700, Brian Lesser [EMAIL PROTECTED] wrote: Hi Scott, I don't understand what

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

2007-04-18 Thread Scott Barnes
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 and everything wrapped around them are so different. If you can't do that until after MIX

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

2007-04-18 Thread Scott Barnes
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 the present quality of the actual product. -Peter Demling Lexington, MA --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Scott Barnes

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

2007-04-17 Thread Scott Barnes
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 see this: http

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'm trying to stop laughing

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

2007-04-17 Thread Scott Barnes
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
. 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 Apr 2007 04:34:08 -0700, Scott Barnes [EMAIL

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

2007-04-17 Thread Scott Barnes
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] editable combobox

2007-04-05 Thread Scotty Scott
, Alex Harui [EMAIL PROTECTED] wrote: I think that's been reported as a bug. Try setting the .text property to the correct value. -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Scotty Scott *Sent:* Wednesday, April 04, 2007 9:52 AM

[flexcoders] editable combobox

2007-04-04 Thread Scotty Scott
that has a dropdown attached to it that only updates the textinput on itemClick? I can provide more information if needed. Thanks for any help -- Scotty Scott http://www.franciswscott.com

Re: [flexcoders] An open-source to Flex Data Services

2007-02-15 Thread Scotty Scott
-- Scotty Scott http://www.franciswscott.com

Re: [flexcoders] Ted Patrick vs Scott Barnes

2007-01-24 Thread Scott Barnes
:) Ditto, (love FLEX). There are many .NET developers who use FLEX, so all is good but anyway, nothing like a good ol fashion debate to cause a stir ;) (I really need to cut my novels down don't i). Scott. Microsoft Code Poet / Deep Sleep Zenmaster. On 1/23/07, Bjorn Schultheiss [EMAIL

Re: [flexcoders] Ted Patrick vs Scott Barnes

2007-01-24 Thread Scott Barnes
I had a joke here to go with that but umm not sure it's the appropriate forum hehehe (PG rated and all) On 1/25/07, Bjorn Schultheiss [EMAIL PROTECTED] wrote: half as long, twice as strong. ;) On 25/01/2007, at 1:28 PM, Scott Barnes wrote: :) Ditto, (love FLEX). There are many

Re: [flexcoders] Re: and I thought Adobe was a professional company. Whats going on with the upgrade

2007-01-07 Thread Scott Barnes
(or are we supposed to guess which ones they got?) We should NOT have to find out about these features on someones blog. This seems very amateurish to me. Bruce -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Why Do You Use Flex 2?

2006-12-26 Thread Scott Barnes
by the development tools. Flex 2 is our application development platform of choice for quickly delivering maintainable, industrial strength applications deployed both on the Internet and off. -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Flex Marketing

2006-12-26 Thread Scott Barnes
that was hot s**t. :P Same here. I already knew the client and the project manager for two years or more. Regards, Rogério Gonzalez -- Regards, Scott Barnes http://www.mossyblog.com

Re: [flexcoders] Re: Flex Marketing

2006-12-24 Thread Scott Barnes
to be the purple cow, the anomaly in the herd that stands out and people go 'holy shit, did you see that cow back there' and then 2 dinner parties later the conversation flows. - Scott Barnes (www.mossyblog.com) --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Rogerio Gonzalez [EMAIL PROTECTED

Re: [flexcoders] Flex Data Services

2006-08-15 Thread Scott Kinder
Resending - am I asking the wrong question? There were no responses.Cheers,Scott"scott.kinder" [EMAIL PROTECTED] wrote: Hi All, I'm new to Flex 2 and Flex Data Services. I have a problem and I need to find out if I need Flex 2 Data Services. I have a

Re: [flexcoders] How to migrate HAccordion from flex 1.5 to flex 2 ?

2006-08-07 Thread Scott Barnes
to:http://docs.yahoo.com/info/terms/ -- Regards,Scott Barneshttp://www.mossyblog.com __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

Re: [flexcoders] Firefox and multiselect list

2006-08-04 Thread Scotty Scott
hi there,I seem to have the same problem... I think I narrowed it down to wmode=opaqueDid you set a different wmode for your application?-- Scotty Scott http://www.franciswscott.comOn 8/4/06, swhitley02 [EMAIL PROTECTED] wrote: I'm having trouble with multi

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