Re: [flexcoders] Datagrid Password Column?

2008-06-11 Thread sLangeberg
Did you try the 'itemEditor' property, instead of 'itemRenderer'? If memory serves, the row will toggle between your textinput and the default text renderer, when you use the editor setup. -Scott On Tue, Jun 10, 2008 at 6:27 PM, Dennis Falling [EMAIL PROTECTED] wrote: I have an editable

[flexcoders] Global / application level error handling

2008-06-02 Thread sLangeberg
Does anyone know if this is possible in flex? By the look of this JIRA item, it is not currently supported: http://bugs.adobe.com/jira/browse/ASC-3139 Our company is looking at setting up server-side logging, and this would be a valuable addition! I see that most web-application languages

[flexcoders] Re: Global / application level error handling

2008-06-02 Thread sLangeberg
Sorry, found feature request in Adobe JIRA: https://bugs.adobe.com/jira/browse/SDK-11423 Good one to vote for. I can see how this would be show-stopper for some looking at adopting this tech. -Scott On Mon, Jun 2, 2008 at 5:33 PM, sLangeberg [EMAIL PROTECTED] wrote: Does anyone know

[flexcoders] Adobe Weblogs site malfunctioning!

2008-05-27 Thread sLangeberg
Trying to view page: http://weblogs.macromedia.com/pmartin/archives/2006/06/flexunit_ant.cfm Is serving up the CFM source, rather than parsing!! However, weblogs.macromedia.com redirects to an adobe.feeds site, which has no contact info, that I see... -- : : ) Scott Helping your grandma on

[flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-12-12 Thread slangeberg
You want a for..in loop, NOT for...each: var newDict:Dictionary = new Dictionary(); var item:Object; //don't think you want Class type, here.. for (item in myDictionary) { //now perform the deep copy... //for which you may need to have the class def... newDict[item] =

Re: [flexcoders] Simple game question with Flex

2007-12-12 Thread slangeberg
You can embed either an entire swf, or linked assets from its library: [Embed( '/assets/icon_lib_f9.swf#arrow_rt_wt' )] public static var arrow_rt_wt : Class; Where '#arrow...' is a linked asset with the file.swf. -Scott On Dec 8, 2007 4:23 AM, pirzadaz_ali [EMAIL PROTECTED]

[flexcoders] TweenEffect does NOT trigger bindings(?)

2007-10-31 Thread slangeberg
I am using the Flex Scheduling Framework in FlexLib, and notice that the AnimateProperty (a TweenEffect) class does not trigger binding on the property that it animates. In this case, it is the 'xPosition' property that is animated. When changing this property in code, your bindings will fire.

[flexcoders] Flex Bug: ComboBox shows IBeam cursor and text is selectable by default

2007-10-05 Thread slangeberg
I found a bug in the Adobe bug tracker. It says it's only in Flex Moxie Beta: ComboBox shows IBeam cursor and text is selectable by default: http://bugs.adobe.com/jira/browse/SDK-12032?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel However, I am experiencing the exact same

Re: [flexcoders] Access dragImage within dragDrop event?

2007-05-13 Thread slangeberg
an item to show up at the exact location as the thumbnail that gets dragged by DragManger! -Scott On 5/7/07, Manish Jethani [EMAIL PROTECTED] wrote: On 5/7/07, slangeberg [EMAIL PROTECTED] slangeberg%40gmail.com wrote: Here's the handler to capture the 'dragDrop' event: private function

Re: [flexcoders] Re: Staging an AS3 for Flash 8?

2007-05-10 Thread slangeberg
I believe that is what http://www.kongregate.com/ is doing with some AS3 content (search for understanding games). When I looked up that article, the page has a disclaimer that says that Flash player 9 is required. This doesn't mean they couldn't do what you're saying, but I don't know of

Re: [flexcoders] Access dragImage within dragDrop event?

2007-05-10 Thread slangeberg
I guess that would be easy enough! ;) Hey man, thanks for replying to my message. I could have sworn people weren't even seeing my posts on this board, any more! -Scott On 5/7/07, Manish Jethani [EMAIL PROTECTED] wrote: On 5/7/07, slangeberg [EMAIL PROTECTED] slangeberg%40gmail.com wrote

Re: [flexcoders] Require urgent help

2007-05-10 Thread slangeberg
'Meter'? Are you talking about a gauge on an instrument panel? Have you looked at the charting components? -Scott On 5/10/07, Rajesh Deshmukh [EMAIL PROTECTED] wrote: Hi All, I am new to this group. I have a small problem which I need to resolve as soon as possible. I am working for

[flexcoders] Access dragImage within dragDrop event?

2007-05-07 Thread slangeberg
Here's the code I used to initiate the drag - Thumbnail is just a component with an image and metadeta: var dragProxy:Thumbnail = new Thumbnail(); // Call the DragManager doDrag() method to start the drag. // For information on this method, see // the

[flexcoders] Possible to access dragImage within a DragEvent?

2007-05-07 Thread slangeberg
I want to access the thumbnail created in drag/drop operations, to create an item exactly where you see this thumbnail on stage. I initiate drag/drop here, where Thumbnail is basically a component with an Image and metadata. I want to be able to access the Thumbnail that is created and dragged

Re: [flexcoders] Staging an AS3 for Flash 8?

2007-05-07 Thread slangeberg
Sorry Nate, You can't run an AS3/VM2 (Flash 9) .swf under the AS2/VM1 player (Flash 8). Same as you can't run a flash 7 movie in the flash 6 player. RE: I can't use getURL on myspace due to the new FP9 security features. Flash 9 uses URLLoader, and not getURL(). I'm afraid I don't have

Re: [flexcoders] flex passing values

2007-05-07 Thread slangeberg
Simplest approach is to have one .mxml file that contains two other components, such as Input.mxml and Output.mxml. I tend to follow the Cairngorm approach, even if just by using a Singleton ModelLocator, which allows you to store values such as _searchString - input by user - globally.

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-05-02 Thread slangeberg
, slangeberg [EMAIL PROTECTED] slangeberg%40gmail.com wrote: Any one come up with a strategy so that labels in the DataGrid column headers (or elsewhere) can wrap, but not be broken in the midde of a word? That's the behaviour of the built-in TextField object and I don't think anything can be done

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

2007-05-02 Thread slangeberg
If you ever watch the developer videos on Channel 9, you'll see that many MS devs have macbooks (or whatever they're called) sitting on their desks! -Scott On 4/29/07, dorkie dork from dorktown [EMAIL PROTECTED] wrote: the problem with microsoft is they live in a bubble. they live in their

Re: [flexcoders] Re: Bug in Flex while setting DataGridColumn.width programatically?

2007-04-30 Thread slangeberg
Manfred, can you post a link to this fix? Thanks, -Scott On 17 Apr 2007 07:31:29 -0700, manfred.maierhofer [EMAIL PROTECTED] wrote: After recompiling a few times it works properly. I spend a whole day to fix this issue. Thanks a lot for your hint, Mane -- : : ) Scott

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-30 Thread slangeberg
::DetailItem/::render() at MethodInfo-4641() at Function/http://adobe.com/AS3/2006/builtin::apply() at mx.core::UIComponent/::callLaterDispatcher2() at mx.core::UIComponent/::callLaterDispatcher() -Scott On 4/27/07, Manish Jethani [EMAIL PROTECTED] wrote: On 4/28/07, slangeberg [EMAIL

Re: [flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-30 Thread slangeberg
Ok, disregard. Fix should be: col.headerRenderer = new ClassFactory( HeaderRenderer ); As found here: http://www.returnundefined.com/tags/as3/ -Scott On 4/30/07, slangeberg [EMAIL PROTECTED] wrote: Is there any reason why you can't set the headerRenderer in AS3? I'm getting the following

[flexcoders] DataGrid column header - wordWrap - but not break whole words

2007-04-27 Thread slangeberg
Any one come up with a strategy so that labels in the DataGrid column headers (or elsewhere) can wrap, but not be broken in the midde of a word? EX: Actual Response NOT: Actual Respons e Thanks, : : ) Scott

Re: [flexcoders] Re: Mapping xml objects to custom classes? [new subject]

2007-04-09 Thread slangeberg
%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: Anyone know of any AS3 systems for mapping XML to custom classes, such as this Castor? Seems like a cool idea (and I could use it right now ;) : http://www.castor.org/xml-framework.html -Scott -- Forwarded message -- From

[flexcoders] Java Castor - AS3

2007-04-06 Thread slangeberg
Anyone know of any AS3 systems for mapping XML to custom classes, such as this Castor? Seems like a cool idea (and I could use it right now ;) : http://www.castor.org/xml-framework.html : : ) Scott

[flexcoders] Mapping xml objects to custom classes? [new subject]

2007-04-06 Thread slangeberg
Anyone know of any AS3 systems for mapping XML to custom classes, such as this Castor? Seems like a cool idea (and I could use it right now ;) : http://www.castor.org/xml-framework.html -Scott -- Forwarded message -- From: slangeberg [EMAIL PROTECTED] Date: Apr 6, 2007 4:21 PM

Re: [flexcoders] VBox, constraint based layout not clipping content

2007-03-30 Thread slangeberg
The trick I just used for this is to set maxHeight on the 'scrolling' container. Will allow dynamic height add, to point, before scrolls kick in. -Scott On 3/9/07, scott_flex [EMAIL PROTECTED] wrote: Any particualar reason why a Vbox won't correctly clip content and show scrollbars when the

Re: [flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread slangeberg
Yeah, mine is regularly that high (~300MB) or even more. I set my limit to the exact same (768MB), and it's been running much better! So, no crashes, here. You may want to look at all your installed plug-ins. They don't always play nice. I had most problems with a PHP plug-in, but it may have

Re: [flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread slangeberg
-vmargs -Xms256m -Xmx768m On 3/29/07, dorkie dork from dorktown [EMAIL PROTECTED] wrote: can you guys post your eclipse ini or just the line of code that you changed? i have a couple of different memory values i'm not sure which to change. On 29 Mar 2007 09:40:46 -0700, slangeberg [EMAIL

Re: [flexcoders] What's your average amount of memory usage in Eclipse?

2007-03-29 Thread slangeberg
was working with java environment and flex builder plugin. took down the number of crashes completely. * On 29 Mar 2007 11:38:25 -0700, slangeberg [EMAIL PROTECTED] wrote: -vmargs -Xms256m -Xmx768m On 3/29/07, dorkie dork from dorktown [EMAIL PROTECTED] wrote: can

Re: [flexcoders] Data binding will not be able to detect changes... ?

2007-03-27 Thread slangeberg
It's because the .default node is not bindable (it's an anonymous element of an xml object). Doesn't the warning mention something about not implementing the IEventDispatchable (or other!) interface? What is the best practice for this? I know you could point a bindable property to that node

Re: [flexcoders] Registration point woes

2007-03-26 Thread slangeberg
I've started adapting Schall's code, and am getting close (view source): http://criticalpile.com/lab/DynamicRegistration/DynRegMain.html However, I just noticed that my alignment seems to be off, if you enter arbitrary numbers, rather than using the arrows on the number steppers! Also, I'd like

Re: [flexcoders] Re: Caching problem

2007-03-26 Thread slangeberg
You don't experience this with IE? This has followed me no matter where I've worked, what server I'm dealing with! What am I doing wrong here (other than using IE)? -Scott On 26 Mar 2007 01:59:50 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 23 Mar 2007, slangeberg wrote: Hmm, i've

Re: [flexcoders] Re: Caching problem

2007-03-26 Thread slangeberg
this for development. Production environments should be able to run without problems if there are browsers caching things. --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: You don't experience this with IE? This has followed me no matter where I've worked

Re: [flexcoders] If im using the same code twice, should i re-use?

2007-03-25 Thread slangeberg
-*will it be ok to create a class that just handle the service? Not just ok, but great! *does it really worth considering we are using the code just 2 times? *why? Just wait till you need to modify anything about that service, like the URL. Who wants to track down multiple instances that

[flexcoders] Re: Caching problem

2007-03-23 Thread slangeberg
(); url:String = resource + ?d= + date.UTC(); - Original Message - From: slangeberg [EMAIL PROTECTED] To: flexcoders@yahoogroups.com; Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Wednesday, March 14, 2007 10:52 AM Subject: [Flashcoders] Re: [flexcoders] Re: Caching

Re: [flexcoders] OS X Dock implemented in Flex

2007-03-23 Thread slangeberg
Doug used Ely Greenfield's(?) fish-eye to great effect: http://dougmccune.com/blog/2007/03/02/ -Scott On 3/23/07, Janis Radins [EMAIL PROTECTED] wrote: Thats funny, I just created my version of the very same thing :) http://www.mediaverk.lv/trash/macMv0.5 2007/3/23, Allen Riddle [EMAIL

Re: [flexcoders] Compiling themes / modules / CSS using Flex Builder?

2007-03-23 Thread slangeberg
Modules are compiled by creating a module, and adding it to the project's Application list. I'm assuming you're referring to the Module tag in v2.0.1. -Scott On 23 Mar 2007 05:57:04 -0700, Bryan Clover [EMAIL PROTECTED] wrote: Hi All, I have been able to use the command-line compilers to

Re: [flexcoders] Re: Caching problem

2007-03-23 Thread slangeberg
=X3oDMTJwZWY5M2o0BF9TAzk3MzU5NzE0BF9wAzMEZ3JwSWQDMTIyODYxNjcEZ3Jwc3BJZAMxNzA1MDA3MjA3BHNlYwNuY21vZARzbGsDZ3JvdXBzMgRzdGltZQMxMTczODg0ODcy in 3 easy steps. Connect with others. . On 23 Mar 2007 08:49:04 -0700, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 23 Mar 2007, slangeberg wrote: Now, my question is, what do people do to prevent caching of swf files themselves

Re: [flexcoders] FDS + stand-alone .swf files?

2007-03-21 Thread slangeberg
:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *slangeberg *Sent:* Tuesday, February 27, 2007 4:49 PM *To:* flexcoders@yahoogroups.com *Subject:* [flexcoders] FDS + stand-alone .swf files? Just read an old article from Forta ( CF + flex 2 ) where he mentions that using FDS in Flex 2

Re: [flexcoders] Runtime Memory Problems

2007-03-16 Thread slangeberg
Only after I hit a saturation point (Around 2.5Meg) would it Garbage Collect. My machine has 2Gig of Ram. You're worried about a Flex app using 2.5MB memory? That's nearly nothing. I've seen apps use upwards of 100M, and that's still not much compared to 2GB. If you look at the articles

Re: [flexcoders] Determining the idle state of a flex application

2007-03-14 Thread slangeberg
Could use the built-in idle event: http://livedocs.adobe.com/flex/2/langref/mx/managers/SystemManager.html#event:idle -Scott On 3/3/07, Rick Root [EMAIL PROTECTED] wrote: Does anyone have any suggestions for monitoring idleness of a Flex application? The way my app works, pretty much any

Re: [flexcoders] Caching problem

2007-03-14 Thread slangeberg
With Flash, I've learned to do the lo-tech method of attaching random numbers to the path. Simple, but it's been effective!: url:String = resource + ?rand= + Math.floor(Math.random() * 10); -Scott On 14 Mar 2007 08:07:52 -0700, Alex [EMAIL PROTECTED] wrote: Hi there! I have an xml

Re: [flexcoders] Form Handling?

2007-03-14 Thread slangeberg
I think the Form docs show an example of binding the inputs to a Model, but you could substitute another object/class in its place. -Scott On 14 Mar 2007 07:54:00 -0700, Brian Dunphy [EMAIL PROTECTED] wrote: Not a native feature built in to Flex I don't think, however one way to accomplish

Re: [flexcoders] standalone exe

2007-03-14 Thread slangeberg
Double-click your .SWF. - Select 'File' menu - Select 'Create Projector...' -Scott On 14 Mar 2007 09:36:03 -0700, Chad Gray [EMAIL PROTECTED] wrote: Can flex apps be run as a standalone flash executables? This way no browser is needed. -- : : ) Scott

Re: [flexcoders] Re: Caching problem

2007-03-14 Thread slangeberg
for that trick dude! --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: With Flash, I've learned to do the lo-tech method of attaching random numbers to the path. Simple, but it's been effective!: url:String = resource + ?rand= + Math.floor

Re: [flexcoders] Web Services: Nearing Wit's End

2007-03-10 Thread slangeberg
Give me your url and the calls your trying to make. I'll see if i can set up a sample for you! Oh yeah, service capture is indeed awesome. 30 day trial will be enough to convince you to pay the $30. It's been worth closer to $1-2K in savings of lost time debugging server transfers, for me! Best

Re: [flexcoders] Re: Problems with The E4X approach to XML processing

2007-03-05 Thread slangeberg
I think in the docs, these should be returning XMLList, technically. Not sure if it evals to XML in typeof(). -Scott On 3/5/07, greg h [EMAIL PROTECTED] wrote: Hi Allen, Glad to be of help. btw ... you wrote: it seems like that the return type is ArrayCollection or XMLList(I'm not sure)

Re: [flexcoders] Re: cairngorm strategy question

2007-03-05 Thread slangeberg
Actually, SoundManager doesn't seem to fit MVC. You have no view and no user input, correct? Why not just use a Command (or whatever patterns fit) structure without worrying too much about Cairngorm..? Cairngorm's great and all, but it is intended to manage large applications with many views, in

Re: [flexcoders] Re: Dynamically creating item IDs

2007-03-02 Thread slangeberg
Believe you need to pass the event object: mx:TextInput preinitialize=assignID(event)/ But, that's a pretty good idea! -Scott On 3/2/07, bhaq1972 [EMAIL PROTECTED] wrote: maybe your trying to do something like this mx:TextInput preinitialize=assignID()/ private function

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-02 Thread slangeberg
Oh yeah, did he say: limited to 2g As in a 2GB POST limit? That doesn't seem like much of a limit. I may question the logic of posting a 2G file! If that's not the current limit, what is? Tom, what's the current method you're referring to, for 'sending' files to server? -Scott On 3/2/07,

Re: [flexcoders] Circular Binding

2007-03-01 Thread slangeberg
What is the effect of this code? Were you able to do simple binding that way to both items? -Scott On 3/1/07, raz_gilad [EMAIL PROTECTED] wrote: Hi Does anyone knows how Circular Binding works? I've used the follwing action script code and I've expected it to go into endless loop - but it

Re: [flexcoders] Can Flex really compete with AJAX?

2007-03-01 Thread slangeberg
You can do this in AS3: var b:Button = new Button(); b.id = myid + 2; trace( b.id: +b.id ); However, i'm guessing he means in the mxml, which i've experienced myself. Hence you cannot do: Button id={'myid'+1} / -Scott On 3/1/07, Nick Collins

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread slangeberg
Uh, you're still going to have 'at least' all those capabilities (talking to networked service) already existing in Flex.. What kind of functionality / library / language are you comparing this to? -Scott On 3/1/07, Impudent1 [EMAIL PROTECTED] wrote: Just taking a quick look and this concerns

Re: [flexcoders] Apollo Book: Apollo for Adobe Flex Developers Pocket Guide

2007-03-01 Thread slangeberg
Binary sockets, for one.. Any other ideas out there? -Scott On 3/1/07, Impudent1 [EMAIL PROTECTED] wrote: slangeberg wrote: Uh, you're still going to have 'at least' all those capabilities (talking to networked service) already existing in Flex.. What kind of functionality / library

[flexcoders] scaling + ( localToGlobal and globalToLocal ) = Working??

2007-02-28 Thread slangeberg
I am trying to port Darron Schall's implementation of the DynamicRegistration for Flex 2 (haven't seen a way to set registration points in Flex 2). I have rotations working fine on dynamic registration points, but it's not working with scaling (scaleX, so far). So, does Flex 2 still take

[flexcoders] FDS + stand-alone .swf files?

2007-02-27 Thread slangeberg
Just read an old article from Forta ( CF + flex 2 ) where he mentions that using FDS in Flex 2 will still require the server to publish the swf. Is this true, or can you use locally compiled / stand-alone .SWF files with FDS? Thanks, : : ) Scott

Re: [flexcoders] Re: Best way for editing massive amounts of data?

2007-02-26 Thread slangeberg
What's your main concern with this issue? Simplicity? Performance? What are you going for? Worried that someone may lose their data half-way through, or something? You could do a sort of proxy where you store the user's data locally, then upload the entire thing on submit. Then, you're preserving

Re: [flexcoders] Finding out when an arraycollection in my model is set

2007-02-26 Thread slangeberg
You can use simple binding, via {} brackets. MyComp dataProvider={model.library} / Or, you can use the ChangeWatcher: ChangeWatcher.watch( model, library, onLibraryChange ); function onLibraryChange(){ /*do stuff*/ } -Scott On 2/24/07, Webdevotion [EMAIL PROTECTED] wrote: Hello, How

[flexcoders] Image scaling / smoothing

2007-02-23 Thread slangeberg
Not sure if I've seen a solution to this on-list, so here's one I was pointed to, that works swimmingly!: http://blog.739saintlouis.com/2007/02/05/scaling-an-image-with-smoothing/ : : ) Scott

Re: [flexcoders] Java to Flex shifting ! Major Hurdles!!! (Shud I say Roadblocks! )

2007-02-22 Thread slangeberg
Hey everyone, I know there exists an article/whitepaper from Adobe outlining the new AS3 VM2(?), but I can't find it. Anyone know where that is? I think it would be helpful for this gentleman's situation. Thanks, -Scott On 2/22/07, ravi kumar gummadi [EMAIL PROTECTED] wrote: Hi, I am

Re: [flexcoders] Java to Flex shifting ! Major Hurdles!!! (Shud I say Roadblocks! )

2007-02-22 Thread slangeberg
Ok, here it is. Right on my desktop, wouldn't you know!: (not it, but worth looking) http://www.adobe.com/devnet/actionscript/articles/actionscript3_overview.html (this is it!) http://www.onflex.org/ACDS/AS3TuningInsideAVM2JIT.pdf =Scott On 2/22/07, slangeberg [EMAIL PROTECTED] wrote: Hey

Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-16 Thread slangeberg
, Mike -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *slangeberg *Sent:* Wednesday, February 14, 2007 10:53 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's? If you

Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-16 Thread slangeberg
, slangeberg [EMAIL PROTECTED] wrote: Yeah, sorry. I'm not 100%, but you should be able to reference your loaded movie by that class type (your document class), from within Flex. I believe another gentleman referred to that, in this thread. Hold on, I did it, with a loader... I'll try to attach code

[flexcoders] Flash 9 - Flex 2 interface (previously): Can't we access MovieClips contained in embedded SWF's?

2007-02-16 Thread slangeberg
/articles/flash9_as3_preview.html -Scott On 2/16/07, slangeberg [EMAIL PROTECTED] wrote: Mike, I tried setting up a document class for Flash 9, but when you place named items on stage, you get this error: ReferenceError: Error #1056: Cannot create property square_mc

Re: [flexcoders] svn and flex not getting along

2007-02-15 Thread slangeberg
Of *slangeberg *Sent:* Tuesday, February 13, 2007 2:18 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] svn and flex not getting along You have html-template in version control? I don't include that or any of the eclipse/flex files (.project, etc.) - and no problems, here. I also don't

Re: [flexcoders] svn and flex not getting along

2007-02-15 Thread slangeberg
! -Scott On 2/15/07, slangeberg [EMAIL PROTECTED] wrote: I'm not entirely tracking you, but my approach is to only include those items in the /bin that are not already under source-control within the regular project (com, assets, etc.). Then, when I add items (like PHP) into the bin that I do want

Re: [flexcoders] Re: Cairngorm: ArrayCollection(ValuObject)-Event on changing data?

2007-02-15 Thread slangeberg
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: Dang, You got me excited with: [ArrayElementType(cairngorm.vo.FriendVO)] public var friends:ArrayCollection; But, according to the docs, this only applies to type: Array. I tried

Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-15 Thread slangeberg
in advance for your help, Mike -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *slangeberg *Sent:* Wednesday, February 14, 2007 10:53 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Can't we access MovieClips contained in embedded

Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-15 Thread slangeberg
@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *slangeberg *Sent:* Thursday, February 15, 2007 11:58 AM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's? Cool new feature of Flash Professional 9 ActionScript 3 Preview

Re: [flexcoders] getting a warning with a repeater

2007-02-15 Thread slangeberg
Throw a cast in each one: personID={YourClassThatHasPersonIDAndOtherDesiredProperties( employee.currentItem).PersonID} It's giving you that warning because 'employee.currentItem' is a POO (plain ol' Object). I'm doing the same thing on current project, and instead of setting all those

Re: [flexcoders] Re: getting a warning with a repeater

2007-02-15 Thread slangeberg
@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: Throw a cast in each one: personID={YourClassThatHasPersonIDAndOtherDesiredProperties( employee.currentItem).PersonID} It's giving you that warning because 'employee.currentItem' is a POO (plain ol' Object). I'm doing

Re: [flexcoders] Can't we access MovieClips contained in embedded SWF's?

2007-02-14 Thread slangeberg
If you are using Flash 9, you can use a document class (I believe) at the root level and have Flex reference it by that. Your document class would set up an API, so you don't have to peer into the movie itself. Basically a proxy. Sorry I don't have the implementation in front of me, but I believe

Re: [flexcoders] Cairngorm: ArrayCollection(ValuObject)-Event on changing data?

2007-02-14 Thread slangeberg
Dang, You got me excited with: [ArrayElementType(cairngorm.vo.FriendVO)] public var friends:ArrayCollection; But, according to the docs, this only applies to type: Array. I tried it and compiler does not appear to pick up on this restriction, for ArrayCollection (I tried adding item not of

Re: [flexcoders] svn and flex not getting along

2007-02-13 Thread slangeberg
You have html-template in version control? I don't include that or any of the eclipse/flex files (.project, etc.) - and no problems, here. I also don't include the /bin folder, until I create custom files, such as index.html, js, css (html), etc... -Scott On 2/13/07, Grant Davies [EMAIL

Re: [flexcoders] coords on dragged object

2007-02-13 Thread slangeberg
Take a look at DragEvent... -Scott On 2/12/07, Douglas Knudsen [EMAIL PROTECTED] wrote: ok, I have a List populated from a AC of objects. I have drag+drop setup to drag one of the items from the list and drop it onto a VBox contained view. I need to get the x-coord relative to the object

Re: [flexcoders] Any tips on how to do enable only vertical Sprite Drag and Drop ?

2007-02-11 Thread slangeberg
This example is Canvas, but... dragRule is vertical bar beneath the 'dragger' handle. mx:VRule id=dragRule x=182 y=64 height=315/ mx:Canvas id=dragger width=10 height=20 x={ dragRule.x-dragger.width/2 } y=62 mouseDown={ dragger.startDrag( false,

Re: [flexcoders] Scroll Position

2007-02-10 Thread slangeberg
May not be precise, but it should be something like: var myPos:uint = 250; myCan.verticalScrollPosition = myPos; -S On 2/10/07, jmfillman [EMAIL PROTECTED] wrote: I have canvas whose content scrolls verticaly about 3 pages. However, I don't want this to always start at the top, but is

Re: [flexcoders] Flex 2 + Wiimote + PaperVision 3D = good times

2007-02-09 Thread slangeberg
No, if you read his articles, or watch the right movie (can't remember!) you'll see he wrote a socket server (C++?) that communicates with the Wii. Then, flash hooks up with a binary socket and reads from that. -Scott On 2/9/07, Kevin Newman [EMAIL PROTECTED] wrote: slangeberg wrote

Re: [flexcoders] Re: any interest in an alternative to QTP to automate Flex apps?

2007-02-08 Thread slangeberg
Brian, I am very interested in in a testing library like you speak of, and was wondering what you thought of Matt's reply? Does your current system utilize mx.automation and/or are you considering leveraging this? Thanks, -Scott On 2/7/07, Matt Chotin [EMAIL PROTECTED] wrote: I am not

[flexcoders] Flex 2 + Wiimote + PaperVision 3D = good times

2007-02-08 Thread slangeberg
By way of bytearray.org: http://blog.je2050.de/2007/02/02/wiiflash-and-papervision3d/ : : ) Scott

Re: [flexcoders] Connection from Flex Builder 2.0 to VSS

2007-02-06 Thread slangeberg
I scoff at standalone flexbuilder, unless you're not a programmer! Not sure why you wouldn't want to be able to extend your IDE. Kind of like the original FF vs. IE conflict. The only con I've found is when you get any kind of collisions between plug-ins. Not common, and the ones that gave me

Re: [flexcoders] Intellectual property or licensing of posted/blogged work

2007-02-06 Thread slangeberg
That's an awesome topic and I'd love to hear more about it. My current understanding is that any published work comes under copyright protection, and that would necessitate permission from the author before incorporation into a commercial work, if there is no explicit licensing info provided.

Re: [flexcoders] Intellectual property or licensing of posted/blogged work

2007-02-06 Thread slangeberg
If no license is specified, then I would assume they are in the public domain and are available for free use. I would suspect that's a dangerous assumption. I realize that if you're posting code on a blog, than you can expect someone to probably copy it, but in a court, I understand that any

Re: [flexcoders] why doesn't this flex app load?

2007-02-05 Thread slangeberg
I got it to work in FF once. Only after viewing with IE tab in FF! However, couldn't recreate, again. -Scott On 2/5/07, Pan Troglodytes [EMAIL PROTECTED] wrote: In a related thread, I uploading a test Flex app to a free web host I found. Well, I noticed something tangential to the original

Re: [flexcoders] Re: Apollo features

2007-02-05 Thread slangeberg
Sorry if i missed first half of thread, but isn't the point to create desktop apps - whether online or not? You should see a significant performance increase, if your app is resource intensive, and you will gain access to the filesystem, without using sketchy third-party systems or .NET wrappers.

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread slangeberg
I'd first try adding the listener to the stage of the item, else you can place listener on the application itself.. something in ballpark of (sorry if not exact spelling, objects, etc): myHBox.stage.addEventListener( MouseEvent.MOUSE_UP, onMsUp ); -Scott On 2/5/07, Douglas Knudsen [EMAIL

Re: [flexcoders] File I/O Error - Error #2038

2006-12-01 Thread slangeberg
Check the coldfusion server's admin page. There probably is a setting on production server limiting file upload size. -Scott On 11/6/06, kristian_wright2002 [EMAIL PROTECTED] wrote: I've seen a few posts on this error but none of them seem to solve my issue. I'm trying to upload some files

Re: [flexcoders] IE 7 Vista

2006-11-30 Thread slangeberg
IE7 currently runs the Flash 9 plugin, so not sure why this wouldn't apply to Vista, as well. -Scott On 11/30/06, Jack Caldwell [EMAIL PROTECTED] wrote: A few questions for the experts. My questions below are the result of what issues, if any, a typical end-user of Flex 2.0 applications

Re: [flexcoders] My flex app's content on google search

2006-11-30 Thread slangeberg
Check out this article on 'progressive enhancement': http://www.adobe.com/devnet/flash/articles/progressive_enhancement.html Basically, your content is on the page, whether flash is present or not. -Scott On 11/30/06, mrinal wadhwa [EMAIL PROTECTED] wrote: Hi All, I know that something

Re: [flexcoders] Re: My flex app's content on google search

2006-11-30 Thread slangeberg
time I update my blog. :? Thank you for the help, Mrinal --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: Check out this article on 'progressive enhancement': http://www.adobe.com/devnet/flash/articles/progressive_enhancement.html Basically

Re: [flexcoders] Re: My flex app's content on google search

2006-11-30 Thread slangeberg
--- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: No, your page needs to generate the content, which is imported to Flash at runtime. Sorry if the original link didn't cover the entire gamut. This may have a better overview: http

Re: [flexcoders] Binding to a custom method: possible?

2006-11-28 Thread slangeberg
In this case, your function is not referencing anything Bindable. Something like this may work, but please clarify - if this is not what you're looking for: [Bindable] private var bindableProp:String; private function isEnabled( s:String ):Boolean { ... } mx:ComboBox id=cb enabled={isEnabled(

Re: [flexcoders] Flex implementation of Conway's the Game of Life

2006-11-27 Thread slangeberg
It seems to work pretty well. It would be cool if your app had selections for some of the starting configs, like gliders, etc. as found at: http://en.wikipedia.org/wiki/Conway's_Game_of_Life -Scott On 11/24/06, zzwi89 [EMAIL PROTECTED] wrote: Over the holiday weekend I put together a

Re: [flexcoders] Looping creating objects, how do you do this: var myRadio[b+i]:RadioButton = new RadioButton();

2006-11-19 Thread slangeberg
Not sure what your requirements are, but I usually just track dynamic objects in an array:** var radioButtons:Array = new Array(); for ( var i:int = 0; inumBtns; i++ ) { var rb:RadioButton = new RadioButton(); rb.property = value; . . radioButtons.push( rb ); } On 11/17/06, dj [EMAIL

[flexcoders] MXML - Problem embedding FLA symbol

2006-11-18 Thread slangeberg
I'm trying to import a swf symbol into Flex 2. However, the following code works great in AS3 project, but NOT in an MXML project: [Embed(source=../Art.swf, symbol=car_blue)] private var CarBlue:Class; private function init():void { var car_blue:Sprite =

[flexcoders] Google code search

2006-10-05 Thread slangeberg
Not sure how many have seen this yet, but I'd be intrigued to see what kinds of good stuff people might turn up. As it is, I'm not even real sure where to start!: http://news.zdnet.com/2100-3513_22-6122819.html?part=rsstag=feedsubj=zdnn : : ) Scott __._,_.___ -- Flexcoders Mailing List

[flexcoders] Flash 8 - Custom databinding

2006-09-13 Thread slangeberg
I'm adapting Cairgorm 0.99 for Flash 8. I want to set up databinding on my ModelLocator, to update a view, and I'm wondering if anyone has done anything like this before?Currently, my model is emitting a 'change' event when properties are changed through getter / setters. I'm guessing I could

[flexcoders] FlexCoders woes

2006-08-02 Thread slangeberg
Everyone,I have the solution for your flexcoders problems (too many emails).In Gmail, go to Settings - Filters - Create New Filter:- Place ' flexcoders@yahoogroups.com' in the 'to' field.- select 'Next Step'- check: Skip the inbox (Archive it)Apply the label: New label... - Flex, FlexCoders

Re: [flexcoders] Re: WebService Call

2006-07-28 Thread slangeberg
option is the straight XML.Rich --- In flexcoders@yahoogroups.com, slangeberg [EMAIL PROTECTED] wrote: Yeah, Try something more like (I'm not sure what your 'FlexData' object was supposed to refer to... ): mx:..sometag mx:WebService id=wsTest wsdl=http://localhost:9126/SOAP fault={trace(-1

Re: [flexcoders] WebService Call

2006-07-27 Thread slangeberg
Yeah, Try something more like (I'm not sure what your 'FlexData' object was supposed to refer to... ): mx:..sometag > mx:WebService id=wsTest wsdl=http://localhost:9126/SOAP fault={trace(-1);} result={trace(1);}/ /mx:...sometag On 7/26/06, richmcgillicuddy [EMAIL PROTECTED] wrote:

  1   2   >