Re: [flexcoders] Re: Can't debug flex after Flexunit install

2008-07-30 Thread Clint Modien
If you run the IETab Add On in Firefox 3 it effs up debugging... Try disabling it if you have it running. On Mon, Jun 30, 2008 at 10:49 AM, Nate Pearson [EMAIL PROTECTED]wrote: I switched to IE and it works. It must be some weird cache thing with FF3. I did clear the cache though... Oh

Re: [flexcoders] Speed test, clear browser cache after each test

2008-01-02 Thread Clint Modien
You have to set the no-cache header on the urlRequest var header:URLRequestHeader = new URLRequestHeader(pragma, no-cache); var request:URLRequest = new URLRequest(http://yoururl.com;); request.requestHeaders.push(header); On Jan 1, 2008 6:04 PM, Stefan IONESCU [EMAIL

Re: [flexcoders] unable to create a link report...

2007-12-17 Thread Clint Modien
try -link-report=c:\report.xml On Dec 14, 2007 4:14 AM, Stephen Allison [EMAIL PROTECTED] wrote: Hi, I've been trying to create a link report using the mxmlc -link-report=report.xml option but always get an error unable to write link report to report.xml. I've checked permissions

[flexcoders] Default CSS file not found

2007-11-16 Thread Clint Modien
I'm creating a pure as3 application and when I use [Frame(factoryClass=com.somepackage.SomeClass] I'm getting a compiler warning... How do I make the warning go away?

[flexcoders] Re: Default CSS file not found

2007-11-16 Thread Clint Modien
() { } } } -- SysManager.as -- package { import flash.display.MovieClip; public class SysManager extends MovieClip { public function SysManager() { } } } On Nov 16, 2007 8:38 AM, Clint Modien

[flexcoders] Re: Default CSS file not found

2007-11-16 Thread Clint Modien
Figured it out... Drop a css in the root of your source… (e.g. Main.css) Add this to the compiler options. -defaults-css-url=Main.css On Nov 16, 2007 8:38 AM, Clint Modien [EMAIL PROTECTED] wrote: I'm creating a pure as3 application and when I use [Frame(factoryClass

Re: [flexcoders] passing variables to Timer handler routine

2007-10-23 Thread Clint Modien
Looks like this solution is broken. On 10 Apr 2007 12:29:19 -0700, Gordon Smith [EMAIL PROTECTED] wrote: You could also subclass Timer and store any additional data you want on MyTimer. - Gordon -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] passing variables to Timer handler routine

2007-10-23 Thread Clint Modien
); } t.addEventListener( TimerEvent.TIMER, f ); t.start(); } On 10/23/07, Clint Modien [EMAIL PROTECTED] wrote: Looks like this solution is broken. On 10 Apr 2007 12:29:19 -0700, Gordon Smith [EMAIL PROTECTED] wrote: You could also subclass Timer

Re: [flexcoders] passing variables to Timer handler routine

2007-10-23 Thread Clint Modien
, repeatCount); } } } -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Modien *Sent:* Tuesday, October 23, 2007 2:30 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders

Re: [flexcoders] passing variables to Timer handler routine

2007-10-23 Thread Clint Modien
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Modien *Sent:* Tuesday, October 23, 2007 12:32 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] passing variables to Timer handler routine Sorry... I guess I should have specified that I'm running

Re: [flexcoders] Remote controlling multiple Flex2 apps - Push, sockets anything ?

2007-06-01 Thread Clint Modien
It's possible... and it's easier than you think... your welcome Check out the bottom part on Application Sharing. http://www.cynergysystems.com/blogs/page/andrewtrice?entry=flex_2_bitmapdata_tricks_and java

Re: [flexcoders] Barcode scanning with pda (MC50 for instance)

2007-05-29 Thread Clint Modien
Sounds like a fun little project... what programming language were you thinking of using for interfacing with the Symbol scanner? I'm guessing you don't care about web security as this sounds like it's a local application so you'll be able to create a socket connection to a program listening on

Re: [flexcoders] Object to XML

2007-05-28 Thread Clint Modien
Use the introspection API to loop over the variables in an instance of your TestObject. http://livedocs.adobe.com/flex/201/html/usingas_053_9.html#225061 On 5/27/07, Marvin Froeder [EMAIL PROTECTED] wrote: Hi folks... Anyone knows if is possible to do something like the XStream on flex?

RE: [flexcoders] Re: AS3 codegen

2007-05-10 Thread Clint Modien
UML... but you generate both the Java and AS3 classes from the UML. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Sent: Tuesday, May 08, 2007 9:30 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: AS3 codegen

Re: [flexcoders] How to manage 2 applications with different output folders in one project?

2007-04-16 Thread Clint Modien
Create 2 projects or use ant to build your flex project. On 16 Apr 2007 01:30:27 -0700, Sergey Kovalyov [EMAIL PROTECTED] wrote: Hi All! I have two applications: client and administrator area. They have a lot of common classes, therefore I have created two Flex Projects (MyApplication and

Re: [flexcoders] PDF Preview

2007-04-16 Thread Clint Modien
I've used the links below to display a pdf in flex. Make sure you read the comments. http://www.deitte.com/archives/2006/08/finally_updated.htm http://www.deitte.com/archives/2007/04/using_multiple.htm On 13 Apr 2007 16:33:51 -0700, Kevin [EMAIL PROTECTED] wrote: I know this has been asked

Re: [flexcoders] Re: denying GETs on .NET WSDL web service file...

2007-04-16 Thread Clint Modien
Shot in the dark, and untested, but what about using basic auth and setCredentials on the webservice? On 13 Apr 2007 13:24:57 -0700, scott_flex [EMAIL PROTECTED] wrote: tried it, instead of calling the .loadWsdl() method, i just set the wsdl property so it at least know where the service

Re: [flexcoders] 360Flex vs. Adobe MAX - which would you attend?

2007-04-16 Thread Clint Modien
Save up... manage your schedule... go to both. 360 is the food. MAX is the air. ;) On 11 Apr 2007 13:24:05 -0700, Leif Wells [EMAIL PROTECTED] wrote: I believe that anyone who makes their decision to attend either 360Flex or MAX solely based upon the sessions for the event is making a

Re: [flexcoders] Flex 2.0 Primitive Explorer

2007-03-17 Thread Clint Modien
Bruce.. you might find this article helpful... http://weblogs.macromedia.com/pent/archives/2006/07/writing_flex_2.cfm On 3/14/07, Bruce H. Johnson [EMAIL PROTECTED] wrote: Nice. Exactly what I was look for to create a custom gauge componet in a half-circle. Bruce H. Johnson Sylmar, CA

Re: [flexcoders] Re: How to submit a bug to Adobe ? - 60 inch display is to wide

2007-03-09 Thread Clint Modien
An obvious solution would be to lower the resolution on the monitors and resize all your flex components accordingly. On 3/9/07, oneproofdk [EMAIL PROTECTED] wrote: OK so I went on to see what the limits are. Tracking mouseX I can see that the Panel background stop at 4079, also that's

Re: [flexcoders] How to submit a bug to Adobe ? - 60 inch display is to wide

2007-03-08 Thread Clint Modien
http://www.adobe.com/go/wish On 3/8/07, oneproofdk [EMAIL PROTECTED] wrote: For a internal application built in FB, we are deploying it on a PowerMac Pro with 2 30 display's attached. This enables a resolution of 5120 px by 1600 px. A funny thing happens when I open the app strecthing the

Re: [flexcoders] Web Services vs. WebOrb

2007-03-08 Thread Clint Modien
RemoteObjects are faster. http://www.themidnightcoders.com/blog/2007/03/flex-remoteobject-vs-webservice.html On 3/7/07, softwarecat [EMAIL PROTECTED] wrote: I am hoping someone can offer some information on the benefits to the different approaches. Web Services vs WebOrb/AMFPHP etc. We

Re: [flexcoders] list of events really dispatched by a view

2007-02-28 Thread Clint Modien
http://livedocs.flexsearch.org/index.shtml?cx=017079146949617508304%3Amv4wpsyofxucof=FORID%3A9q=_listeners#243 On 2/27/07, Eric Guesdon [EMAIL PROTECTED] wrote: Hi to All, I'm looking to get the list of events really connected in a view. For example: mx:Canvas

Re: [flexcoders] Adobe site

2007-02-20 Thread Clint Modien
Hi... it's probably just a bad route... Try running a tracert. It'll show you the bad node between you and adobe. http://en.wikipedia.org/wiki/Tracert On 2/20/07, Oleg Filipchuk [EMAIL PROTECTED] wrote: Hi, do you know what is going on with Adobe site, it's so slow and a lot of site's

Re: [flexcoders] Re: Getting notified when a user 'leaves/quits' the application

2007-02-16 Thread Clint Modien
Currently there's no event notification in AS3. I haven't implemented it myself (yet) but I've read that the javascript onBeforeUnload event works best. Currently we're using the session timeout on the server to tell us that the user has gone away. On 2/16/07, julien castelain [EMAIL

Re: [flexcoders] Re: Getting notified when a user 'leaves/quits' the application

2007-02-16 Thread Clint Modien
Hey Evan... do you think it would it be possible to post a simple example of this? It would be used by quite a few people I would imagine. On 2/16/07, Evan Bellinger [EMAIL PROTECTED] wrote: In the application that I'm developing, I do use the onbeforeunload event and it works well for me.

Re: [flexcoders] Col chart will not display a single column, need at least two - bug? (Flex 2.01)

2007-02-10 Thread Clint Modien
This is a pretty common problem people run into... When you do an xml get from a service... if you get back 2 or more elements it will be created as an array in AS2/AS3. But when that same service returns one element it will be deserialized as a single AS2/AS3 OBJECT. Import mx.utils.ArrayUtil

Re: [flexcoders] Flex Coding Guidelines

2007-02-10 Thread Clint Modien
Sincerely... Thank You. On 2/10/07, Fabio Terracini [EMAIL PROTECTED] wrote: Folks, As my commitment to community I'm releasing, with DClick support, our Adobe Flex Coding Guidelines, a document about Flex (MXML and ActionScript) coding conventions that we use on a regular basis. The

Re: [flexcoders] Convert Project To FDS

2007-01-23 Thread Clint Modien
Ya... I think you can just edit the (.project) file and then add a WEB-INF folder with the config files in it. On 1/22/07, m2281m2281 [EMAIL PROTECTED] wrote: Is there a way to convert an existing non FDS project to an FDS project? Thanks, Mike

Re: [flexcoders] antlr for as3? parsers?

2007-01-18 Thread Clint Modien
Check out Alessandro's blog... http://www.sephiroth.it/weblog/archives/2006/12/an_experience_with_antlr_with_java_an.php http://www.sephiroth.it/weblog/archives/2006/12/actionscript_parsing_the_yacc_revenge.php

Re: [flexcoders] External Linking of key libraries

2007-01-14 Thread Clint Modien
Umm... I think that's exactly what -load-externs is for. I saw a post about this on Keith Peters blog a few days ago... explains it pretty well. http://www.bit-101.com/blog/?p=941 On 1/14/07, m2281m2281 [EMAIL PROTECTED] wrote: In a large RIA which is primarily a back end application...

Re: [flexcoders] Re: External Linking of key libraries

2007-01-14 Thread Clint Modien
Yes.. I think what you want to do is possible. However... I believe Modules are what you're really after. The browsers cache will store the shell that you use to load modules if it hasn't changed. That way you only have to worry about the initial hit on your application til you update it.

Re: [flexcoders] QTP plug in?

2007-01-14 Thread Clint Modien
It's still in beta... you have to ask to get on the beta list. On 1/14/07, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Hi, Has anyone found the QTP plug in after installing Flex Builder 2.0.1 or FDS 2.01? I cant seem to find it... for those that do have it, did u have to ask Adobe

Re: [flexcoders] Data Binding warning -- PHP, Weborb for PHP

2007-01-14 Thread Clint Modien
I've never ran the php example but it sounds like you're missing a [Bindable] meta data tag on your dataProvider1 variable. I also corssposted this to the weborb list. You'll get the best support on weborb here: http://tech.groups.yahoo.com/group/flashorb/ On 1/14/07, jason_panko [EMAIL

Re: [flexcoders] Inerface IManaged not found Re: Performance Enhancement of Flex Application

2007-01-12 Thread Clint Modien
tag to use the mxmlc.exe in the fsdk2/bin in the Flex Builder installed directory. Thanks regards Hara --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: http://livedocs.flexsearch.org/index.shtml?cx=017079146949617508304%http

Re: [flexcoders] Re: Performance Enhancement of Flex Application

2007-01-11 Thread Clint Modien
??? Thanks regards Hara --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: Ya... precompiling would definitely help. While your waiting for that minute. 90% of that time is probably compilation. Precompiling is in the docs... http

Re: [flexcoders] Flex Builder no longer compiles

2007-01-11 Thread Clint Modien
What's the error? On 1/11/07, dustyjewett [EMAIL PROTECTED] wrote: I made a variable of a class private instead of public, then attempted to sort an ArrayCollection based on this variable. Now, no matter what changes I make to the code, I get the same output in the console, and the same

Re: [flexcoders] arguments class?

2007-01-11 Thread Clint Modien
Not sure what you're trying to do... but you might want to have a look at this? http://livedocs.macromedia.com/flex/2/langref/statements.html#..._(rest)_parameter On 1/11/07, sbyrne_dorado [EMAIL PROTECTED] wrote: The Flex 2/AS3 docs make it appear that arguments is both a variable, as

Re: [flexcoders] Performance Enhancement of Flex Application

2007-01-10 Thread Clint Modien
Ya... precompiling would definitely help. While your waiting for that minute. 90% of that time is probably compilation. Precompiling is in the docs... http://livedocs.flexsearch.org/index.shtml?cx=017079146949617508304%3Amv4wpsyofxucof=FORID%3A9q=precompiling#816 Which version of Flex is

Re: [flexcoders] RPC Pro's and Cons

2007-01-06 Thread Clint Modien
Use AMF. http://www.jamesward.org/census/ AMF is much faster. WebORB is cheaper than FDS and has more features. We've used the current version of WebORB it works nice. For 10K/socket WebORB for .NET Enterprise supports AMF3 RemoteObjects, RTMP data pub/sub as well as Media Streaming.

Re: [flexcoders] Remote Objects Java to Actionscript conversion

2007-01-06 Thread Clint Modien
It's probably being deserialized on the actionscript side as an Array. Try changing the type from an ArrayCollection to an Array. On 1/5/07, Raider226 [EMAIL PROTECTED] wrote: I have a java class I created that contains an ArrayList as one of the i-vars. I am trying access this class as a

Re: [flexcoders] How to clear a TileList of its items?

2007-01-06 Thread Clint Modien
I would try any new non-null complex type: new Object(); new Array(); new ArrayCollection(); On 1/5/07, Sascha [EMAIL PROTECTED] wrote: I'm trying to initialize a TileList after items were put into it so that it is empty again and I can load new items into it after that. I'm setting the

Re: [flexcoders] Flex Builder 2 classpaths

2007-01-06 Thread Clint Modien
Hmm... I think I understand your question. Unless your code is compiled into a swc... the answer is no. It has to be in your workspace. There is a workaround however. You can map a folder in your workspace to a folder on your hard drive. When you create a new folder in your project there is

Re: [flexcoders] Need some direction from the Pros, on Event Dispatching, and Scoping issues

2007-01-06 Thread Clint Modien
Not to quash your hopes of getting to play with Adobe's really pretty eventing but... traceArea.vPosition = traceArea.maxVPosition; http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19784.html

Re: [flexcoders] Need some direction from the Pros, on Event Dispatching, and Scoping issues

2007-01-06 Thread Clint Modien
here but it seems like a bit overkill. On 1/6/07, Clint Modien [EMAIL PROTECTED] wrote: Not to quash your hopes of getting to play with Adobe's really pretty eventing but... traceArea.vPosition = traceArea.maxVPosition; http://www.mail-archive.com/flexcoders@yahoogroups.com/msg19784.html http

Re: [flexcoders] How to clear a TileList of its items?

2007-01-06 Thread Clint Modien
? -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Clint Modien *Sent:* Sunday, 07 January, 2007 10:40 *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] How to clear a TileList of its items? I would try any new non-null complex type

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
The code is opensource so you can see how it works... here's the call it makes. (This is cairngorm v2) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday, January 05, 2007 10:53 AM To:

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
Oops wrong key... The code is opensource so you can see how it works... here's the call it makes. (This is cairngorm v2) /** * Return the WebService for the given service id. * @param serviceId the service id. * @return the RemoteObject. */ public

RE: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
() ? Jay Proulx [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Clint Modien Sent: January 5, 2007 3:00 PM To: flexcoders@yahoogroups.com Cc: Ben Lucyk Subject: RE: [flexcoders] Cairngorm

Re: [flexcoders] Cairngorm ServiceLocator

2007-01-05 Thread Clint Modien
:[EMAIL PROTECTED] *On Behalf Of *Clint Modien *Sent:* January 5, 2007 3:41 PM *To:* flexcoders@yahoogroups.com *Cc:* Ben Lucyk *Subject:* RE: [flexcoders] Cairngorm ServiceLocator I'm assuming you've seen my second email by now but… the reason is because you're calling the static

Re: [flexcoders] Blog post on Flex 2 Developer Certification exam

2007-01-04 Thread Clint Modien
I stumbled on this a while back also... can download an initial draft of the certification document here. http://clintm.esria.com/2006/10/06/adobe-flex-certification-coming/ On 1/4/07, lar.drolet [EMAIL PROTECTED] wrote: Saw this and thought it would be of interest to the group.

Re: [flexcoders] Re: Trace?

2006-12-20 Thread Clint Modien
You'll need to configure your system for trace output first. This is for flex 1x but the same is true for 2.x . http://www.adobe.com/devnet/flex/articles/client_debug.html On 12/20/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: ... and this works without using the debug mode. Cheers, Ralf.

Re: [flexcoders] Cairngorm 2.1 - calling a webservive more than once

2006-12-20 Thread Clint Modien
Add this to your Application mxml file. !-- Logging configured in MXML. -- mx:TraceTarget !-- 2 is represents the LogEventLevel.DEBUG constant. -- mx:level2/mx:level /mx:TraceTarget If you can paste the soap going back and forth to the list it would help to diagnose your problem. You

Re: [flexcoders] Functions as objects

2006-12-08 Thread Clint Modien
Here's some code to get the name of the currently executing function dynamically if that's what you're after... var traceTarget:TraceTarget = new TraceTarget(); // Log only messages for the classes in the mx.rpc.* and // mx.messaging

Re: [flexcoders] Functions as objects

2006-12-07 Thread Clint Modien
Function inherits from Object so you should be able to do... Object(this.test).prop = someprop; Why are you doing this? What are you trying to do... it sounds interesting. On 12/6/06, Derek Vadneau [EMAIL PROTECTED] wrote: I've tried using the example from the docs where you assign the

[flexcoders] Global error / exception handler or event

2006-12-02 Thread Clint Modien
that exception some where.. some how. Thanks Clint Modien Esria Inc.

[flexcoders] MiniDebug Application

2006-12-02 Thread Clint Modien
=1213746highlight_key=ykeyword1=minidebug Is this an internal Adobe app? Thanks... Clint Modien Esria Inc.

[flexcoders] Announcing FlexSearch.org !

2006-11-30 Thread Clint Modien
me why we'll keep it that way. You can tell me why via the blog. If you have ideas post comments on the blog I setup @ http://blogs.flexsearch.com http://blogs.flexsearch.com/ Thanks! Clint Modien http://esria.com http://esria.com/ p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750

Re: [flexcoders] Announcing FlexSearch.org !

2006-11-30 Thread Clint Modien
Oops... that's what I get for sending email @ 5 am. the actual blog site is of course not .com but .org ... my bad. http://blog.flexsearch.org Please direct all feedback to there. Thanks! On 11/30/06, Clint Modien [EMAIL PROTECTED] wrote: I created an aggregation of developer content

Re: [flexcoders] Books Flex and Action Script

2006-11-16 Thread Clint Modien
There arn't many... We've got the AS3 cookbook and it's pretty well done. We alos have Adobe Flex 2 training from the source. (Good beginner books.) The dvd's from Lynda... (There are 3) are pretty good as well.

Re: [flexcoders] File Upload and Cross Domain issues

2006-11-07 Thread Clint Modien
This may helphttp://tech.groups.yahoo.com/group/flexcoders/msearch?query=FileReference+Download+patricksubmit=Searchcharset=ISO-8859-1 On 11/7/06, sbyrne_dorado [EMAIL PROTECTED] wrote: Hi. I know there is someone who knows the answer. It may be the

Re: [flexcoders] Cancel usergesture?

2006-10-22 Thread Clint Modien
As a workaround you could use a TabBar and a ViewStack instead.http://livedocs.macromedia.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=0536.html On 10/22/06, Ralf Bokelberg [EMAIL PROTECTED] wrote: I wonder, if it is

Re: [flexcoders] Whats the best way of adding print/pdf output to a flex app?

2006-10-17 Thread Clint Modien
This is a server side game right now... flex doesn't support printing (very well) yet...Some good info here if you don't already have a backend reporting solution setup. http://ask.slashdot.org/article.pl?sid=06/03/08/2259203On 10/17/06, iko_knyphausen [EMAIL PROTECTED] wrote:

Re: [flexcoders] Flex 2.0 And .net webservices Dataset retrieving problem

2006-10-11 Thread Clint Modien
http://www.themidnightcoders.com/weborb/On 10/11/06, Sajid Hussain [EMAIL PROTECTED] wrote: Hi to all . I am new to flex Development ,I am stuck with following conceptsI have one webservice method who is returning DataSet ,What will be the best way to

Re: [flexcoders] WebOrb for Rails

2006-10-10 Thread Clint Modien
, Clint Modien [EMAIL PROTECTED] wrote: How is WebORB a competitor to FDS in the AMF3 space? Backends FDS WEBORB Java Yes No CFYes No .NET

Re: [flexcoders] Flex 2 Application Modeling

2006-10-10 Thread Clint Modien
We Enterprise Architect from Sparx Systems here at Esria.It'll foward and reverse engineer the UI (AS3) Tier, Middle (Java, .NET, PHP) Tier, and any ODBC database Tier and you can't beat the price. http://www.sparxsystems.com.au/products/ea.htmlOn 10/10/06, Nick Collins [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Flex Marketing

2006-10-10 Thread Clint Modien
it on my car! :) Clint Modien wrote: I mentioned this @ the Silicon Valley Flex User Group meeting the other day but I wanted to reiterate it here and see if I couldinvoke a response from Adobe. Mr. Mendels? Where is the marketing for Flex? Why keep the most beautiful framework in the world

Re: [flexcoders] Running The Flex Application in Tomcat 5.5 server

2006-10-10 Thread Clint Modien
I remembered seeing this before... I think you do need to explode it. Not sure why.http://www.mail-archive.com/flexcoders@yahoogroups.com/msg41839.html On 10/10/06, haravallabhan [EMAIL PROTECTED] wrote: Hi all, I am trying to run a sample flex application

[flexcoders] Adobe Flex Certification Document

2006-10-06 Thread Clint Modien
. It looks pretty well done guys!! Where do I sign up!! Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

RE: [flexcoders] WebOrb for Rails

2006-10-05 Thread Clint Modien
language it supports)I can supply the Breeze room. :-) (hit me offlist) On 10/4/06, Clint Modien [EMAIL PROTECTED]com wrote: I love how much buzz WebOrb is getting. Adobe is trying to keep the price of their java/flash remoting server high. Which is understandable. They need

Re: [flexcoders] WebOrb for Rails

2006-10-04 Thread Clint Modien
I love how much buzz WebOrb is getting. Adobe is trying to keep the price of their java/flash remoting server high. Which is understandable. They need to make money on the product or we'll all be out of jobs. (Well I would be anyway.) But if Adobe were to aquire WebOrb how much do you think

[flexcoders] Flex Marketing

2006-10-04 Thread Clint Modien
I mentioned this @ the Silicon Valley Flex User Group meeting the other day but I wanted to reiterate it here and see if I could invoke a response from Adobe. Mr. Mendels? Where is the marketing for Flex? Why keep the most beautiful framework in the world for creating applications a secret?

Re: [flexcoders] SQL Server and Flex 2

2006-10-03 Thread Clint Modien
SqlServer - .NET - WebOrb - Flex On 10/3/06, Joe [EMAIL PROTECTED] wrote: Okay, I'm pretty new to the Flex scene and am very impressed with thedevelopment so far. My company is wanting to start developing adatabase application using an Ajax technology and realize I'm a little behind the

Re: [flexcoders] Stats on flash player 9 penetration.

2006-10-01 Thread Clint Modien
] Stats on flash player 9 penetration. Clint Modien wrote: Do we have stats for flash player 9 penetration yet? Has Adobe turned on the auto-update for flash 9 player yet? If not... when? Do we have stats for when Adobe turned on auto-update for flash 8 player? What was the adoption rate before

Re: [flexcoders] Stats on flash player 9 penetration.

2006-10-01 Thread Clint Modien
: Friday, September 29, 2006 2:47 PMTo: [EMAIL PROTECTED] ups.comSubject: Re: [flexcoders] Stats on flash player 9 penetration. Clint Modien wrote: Do we have stats for flash player 9 penetration yet? Has Adobe turned on the auto-update for flash 9 player yet? If not... when? Do we have stats

[flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread Clint Modien
Few questions... Do we have stats for flash player 9 penetration yet? Has Adobe turned on the auto-update for flash 9 player yet? If not... when? Do we have stats for when Adobe turned on auto-update for flash 8 player? What was the adoption rate before and after it was turned on? --

Re: [flexcoders] Stats on flash player 9 penetration.

2006-09-29 Thread Clint Modien
50% in3 months are you kidding? That's insane. Thanks John... On 9/29/06, John Dowdell [EMAIL PROTECTED] wrote: Clint Modien wrote: Do we have stats for flash player 9 penetration yet? Has Adobe turned on the auto-update for flash 9 player yet? If not... when? Do we have stats for when

Re: [flexcoders] Lots of images and 403 errors

2006-09-26 Thread Clint Modien
403 is a security error. Check the ntfs permissions on the files. On 9/25/06, David Harris [EMAIL PROTECTED] wrote: I'm not sure if this is a Flex issue or maybe my server set up...butif any of you have any ideas, I'm be glad to hear them!I have a Flex Movie that is loading a lot of

Re: [flexcoders] Lots of images and 403 errors

2006-09-26 Thread Clint Modien
ColdFusion (using cfcontent if you know what that means) and direct with a HTTP:// reference, but I suspect again that IIS is chocking... Cheers! On 9/27/06, Clint Modien [EMAIL PROTECTED] wrote: 403 is a security error. Check the ntfs permissions on the files. On 9/25/06, David Harris

Re: [flexcoders] Lots of images and 403 errors

2006-09-26 Thread Clint Modien
connection due to load...@b0b0bb0b (nice name!): I'll give that a go. I have tried both return via ColdFusion (using cfcontent if you know what that means) and direct with a HTTP:// reference, but I suspect again that IIS is chocking... Cheers! On 9/27/06, Clint Modien [EMAIL PROTECTED] wrote

Re: [flexcoders] mxml escape character??

2006-09-12 Thread Clint Modien
try { = #123; } = #125; On 9/12/06, Chad Callahan [EMAIL PROTECTED] wrote: I need to include the { and } characters inside of an mxml tag's argument value but mxml reads the { and } as bindable. Is there a way to escape the { and } characters within the quotes? CHAD

Re: [flexcoders] Flex Books? Suggestions...

2006-09-01 Thread Clint Modien
Did someone say PHP... ? That's what I call timing.http://www.themidnightcoders.com/blog/Looks like they'll be releasing a php version of FDS in the next few hours... On 9/1/06, Micky Hulse [EMAIL PROTECTED] wrote: Hi, Just joined the list... Nice to meet

Re: [flexcoders] Flex Books? Suggestions...

2006-09-01 Thread Clint Modien
Forgot to mention it''s opensource. On 9/1/06, Clint Modien [EMAIL PROTECTED] wrote: Did someone say PHP... ? That's what I call timing.http://www.themidnightcoders.com/blog/ Looks like they'll be releasing a php version of FDS in the next few hours... On 9/1/06, Micky Hulse [EMAIL

Re: [flexcoders] Re: Anyone else using yahoo webhosting

2006-09-01 Thread Clint Modien
Or you can use weborbs php implementation of fds.. it's opensource.http://www.themidnightcoders.com/blog/On 9/1/06, Mike Collins [EMAIL PROTECTED] wrote: All yahoo plans can serve swf files so you should be fine. It looks like it supports PHP\MySQL so you

Re: [flexcoders] Flex 2 Remoting and ASP.net (flourine?) examples?

2006-08-30 Thread Clint Modien
You may want to try WebORB 2.1 Beta 5 . http://www.themidnightcoders.com/weborb/ On 8/30/06, a1 [EMAIL PROTECTED] wrote: I have spent the last several years in the CF/J2EE world and have gotten quite used to the idea of using remoting with Flex. I just joined an asp.net

Re: [flexcoders] web service result type=Object,E4X,XML and the conversion function

2006-08-30 Thread Clint Modien
Hey Tom... I don't think that particular function is public... what exactly are you trying to do... maybe the framework has it built in? Are you just converting from objects to xml or vice versa? On 8/30/06, Tom Ortega [EMAIL PROTECTED] wrote: I imagine

Re: [flexcoders] POP3 by Socket

2006-08-25 Thread Clint Modien
I would also include this article...http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thing It's gotta kewl flash slide show that explains it pretty well.On 8/25/06, Ted Patrick [EMAIL PROTECTED] wrote: I will get that added ASAP. Great

Re: [flexcoders] unable to load wsdl?? flex, you're pissing me off...

2006-08-15 Thread Clint Modien
http://www.martijndevisser.com/blog/article/why-crossdomainxml-is-a-good-thingOn 8/15/06, Greg Morphis [EMAIL PROTECTED] wrote: When I run my app I get the error Unable to load WSDL... I can view my cfc in the component explorer and I can create a .cfm page

RE: [flexcoders] ASDoc now available on Labs

2006-08-14 Thread Clint Modien
Awesome news J thanks Matt!! Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 10:54 AM

Re: [flexcoders] [FB 2] Using Ant with Flex Builder 2

2006-08-11 Thread Clint Modien
You should install FB2 as an Eclipse plugin to use the built in ant support that ecipse offers. They removed it from the FB2 install.On 8/11/06, astgtciv [EMAIL PROTECTED] wrote: If Flex Builder 2 is installed as standalone, can Ant be configured to be used

Re: [flexcoders] Firefox + Network debugging + you

2006-08-03 Thread Clint Modien
Second to none... supports AMF, integrates with firefox and IE and it's super low priced...http://kevinlangdon.com/serviceCapture/ On 8/3/06, james_dhap [EMAIL PROTECTED] wrote: Hey All, I found an amazing tool last night that helped us track down an issue

Re: [flexcoders] Re: Firefox + Network debugging + you

2006-08-03 Thread Clint Modien
--- In flexcoders@yahoogroups.com, Clint Modien [EMAIL PROTECTED] wrote: Second to none... supports AMF, integrates with firefox and IE and it's super low priced... http://kevinlangdon.com/serviceCapture/ On 8/3/06, james_dhap [EMAIL PROTECTED] wrote: Hey All, I found

Re: [flexcoders] Flex and ASP/IIS update?

2006-07-31 Thread Clint Modien
PROTECTED] wrote: Awesome, that's exactly what I was looking for, have you used this solution successfully? Thanks a lot Clint, Evan From: [EMAIL PROTECTED] ups.com [mailto: [EMAIL PROTECTED] ups.com] On Behalf Of Clint Modien Sent: Friday, July

Re: [flexcoders] Tomcat 5.5/Flex Data Services/OutOfMemoryError

2006-07-29 Thread Clint Modien
I think the default allocation for Tomcat is something small like 128Megs...Assuming your running windows... crack open the tomcat service manager and you'll see an area where you can edit the JVM settings. Set the initial memory pool to 300+ Megs and the Max (depending on how much ram you

Re: [flexcoders] Flex and ASP/IIS update?

2006-07-28 Thread Clint Modien
Try weborb for a .net flash remoting implementation.http://www.themidnightcoders.com/On 7/28/06, Evan Gifford [EMAIL PROTECTED] wrote: Back before Flex 2 was released, the adobe website touted that Flex (via Data Services) would (in future release)

Re: [flexcoders] F2.0 final - Possbile bug with PopUpButton and PopUpMenuButton

2006-07-27 Thread Clint Modien
I'm noticing this behavior as well... (No. 2) but in PopUpButton.Has this bug been filed? Is there a workaround?On 7/3/06, sinatosk [EMAIL PROTECTED] wrote: thanks that worked ;)ok thats the PopUpButton partially fixed... now for PopUpMenuButtonI'm gonna

Re: [flexcoders] testing of Flex apps

2006-07-26 Thread Clint Modien
There's FlexUnit and Mercury Quick Test Pro. There is an internal beta for a Flex 2.0 plugin for Quick Test Pro that you may want to request to be a part of if your using AS3. On 7/25/06, Robert Kaeth [EMAIL PROTECTED] wrote: What is the best way to

Re: [flexcoders] Python / Flex solution

2006-07-24 Thread Clint Modien
Umm... if the data is read-write to the server (which I'm assuming it is since you asked about fds)I'd use value objects and a webservce.The closest thing I've seen to an amf solution is Flashticle and I don't think they've upgraded to AMF3 yet. Technically the AMF3 spec isn't out till sometime

Re: [flexcoders] ASP.NET and Flex2

2006-07-24 Thread Clint Modien
1. Is it necessary for me to use FDS to send and return data to the flex clients and what can you only do using FDS that can't be achieved using web services?Not necessary no. The sweetest thing about using FDS is using the data synchronization features. You can essentially create CRUD code

Re: [Junk E-Mail - MED] Re: [Junk E-Mail - MED] [flexcoders] Yahoo Groups Problems

2006-07-16 Thread Clint Modien
That is of course unless you own the domain groupvii.net and the mail server and not using your isp's email. After doing a whois on groupvii.net I'm assuming that you do own that domain.An example of the filtering that Shannon is talking about would be if your using dial-up or dsl from ATT and

  1   2   3   4   >