Re: [flexcoders] php flex-2 standalone

2005-11-20 Thread Scott Langeberg
Does PHP have any webservice libraries? I know with coldfusion, it is easy to set up a component to serve as a webservice. Scott On 11/20/05, JIGNESH M. DODIYA [EMAIL PROTECTED] wrote: hi,do anybody know any alternet way to use php and felx-2 standalone together?? i know that remote object

[flexcoders] OT: 2D array from Remoting

2005-11-23 Thread Scott Langeberg
Sorry for the OT, but I haven't found anyone with the same problem andI'm losing hope. I'm trying to return a 2D array from Coldfusion to Flash, via Remoting. However, I am getting the following error: Could not convert a value of type class [[I to an Array The component works fine, as I

Re: [flexcoders] OT: 2D array from Remoting

2005-11-23 Thread Scott Langeberg
Yeah, Flash accessing the built-in remoting in Coldfusion MX 7. Scott On 11/23/05, Dustin Mercer [EMAIL PROTECTED] wrote: Scott, Are you using Flex or Flash. You say Flash with remoting, but I have seen people refer to Flex the same way (Generalizing) J Just want to make sure I understand

Re: [flexcoders] OT: 2D array from Remoting

2005-11-23 Thread Scott Langeberg
Unfortunately, Flash doesn't appear to have that ArrayUtil class. Here is the code, where coldfusion is calling the java object. I can call the same component from a different page (CFM) and get proper array from java, but is causing errors with Remoting, for some reason! cfcomponent

Re: [flexcoders] WebService - Returning a complex object

2006-03-12 Thread Scott Langeberg
I've got a working sample set up, here:http://criticalpile.com/blog/index.cfm/2006/3/6/Webservices-in-Flex-2-beta--ColdFusion One example is for ArrayCollection to handle Array return type.ScottOn 3/10/06, phatboychatter [EMAIL PROTECTED] wrote: Where is the documentation on handling a

Re: [flexcoders] Cast Results from WebServices

2006-03-12 Thread Scott Langeberg
Can you share the code for your VO type?I've got a simple webservice example set up here:http://criticalpile.com/blog/index.cfm/2006/3/6/Webservices-in-Flex-2-beta--ColdFusion ScottOn 3/11/06, mvbaffa [EMAIL PROTECTED] wrote: Hi everybody, I am using Flex 2 Beta 1. I am receiving a VO

[flexcoders] Cairngorm App Structure

2006-03-21 Thread Scott Langeberg
I have a similar situation to Beck here, I believe. Previously, Steven Webster had said that he'd 'err towards Scenario 2'. Now, the difference for me is that we have one large project that will actually multi-task as different apps. That is, we want to share code for two very similar apps that

Re: [flexcoders] Listening for all activity in a component.

2006-03-22 Thread Scott Langeberg
I take it you're asking for more than the 'creationComplete' event? If you want to wait for data calls (your own) you'll definitely need to set up your own system. We created a CheckList object in flash, which would wait for all its added items to dispatch a complete event. ScottOn 3/22/06,

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread Scott Langeberg
Does anyone know the event that gets fired by Panels or TitleWindows, when the user clicks the header? This should be what the PopUpManager listens for, to enable dragging. I would like to intercept that event, for custom dragging or to stop dragging. ScottOn 3/22/06, mvbaffa [EMAIL PROTECTED]

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Scott Langeberg
2 pc: If you ever want to swap behaviors internally at runtime, use interfaces: : ) ScottOn 3/17/06, Michael Schmalle [EMAIL PROTECTED] wrote: Thanks roger, That answers my question exactly! :) This is how I program, so that makes me happy. Sometimes intuition of feeling goes along way

Re: [flexcoders] Headers of Panel in Flex 2 Similar to Flex 1.5

2006-03-23 Thread Scott Langeberg
Thanks so much. That's what I've been looking for, for some time!!ScottOn 3/23/06, jeremy lu [EMAIL PROTECTED] wrote: hi scott, extends Panel/TitleWindow then use following code: this.titleBar.addEventListener(mouseDown, onMouseDown); you can pretty much do anything you like to titleBar.

Re: [flexcoders] AS3 :: Interface type verses Concrete type return

2006-03-23 Thread Scott Langeberg
class. Peace, MikeOn 3/23/06, Scott Langeberg [EMAIL PROTECTED] wrote: 2 pc: If you ever want to swap behaviors internally at runtime, use interfaces: : ) Scott On 3/17/06, Michael Schmalle [EMAIL PROTECTED] wrote: Thanks roger, That answers my question exactly! :) This is how I program

Re: [flexcoders] [Flex 2 beta 2 - Cairngorm 2 - AMFPHP]

2006-03-27 Thread Scott Langeberg
Alex,Do you think this approach would apply to socket connections as well. E.g. XMLSocket, or Binary Sockets?My issue is that these socket connections would need to broadcast dataReceived() events. These should be caught by the FrontController, correct? Does it make sense for the ServiceLocator

Re: [flexcoders] Too many mistakes

2006-03-29 Thread Scott Langeberg
Actually, LinkButton does exist! (Not Link).ScottOn 3/29/06, snail [EMAIL PROTECTED] wrote: hello,everyone When I read the help content of Flex Builder 2 beta 2,I find many mistakes,such as use Link instead of LinkButton which is not exist in Flex 2. And the example code also make

[flexcoders] Beta 2: Evaluating interfaces

2006-03-29 Thread Scott Langeberg
Wondering if there is ability to find out if a Class implements an interface? As in:function checkImp(className:Class): Boolean { return (className is IMyInterface);}I'm using the PopUpManager internally, and want to check that whatever gets passed in implements my interface, first. Thanks, : :

Re: [flexcoders] Beta 2: Evaluating interfaces

2006-03-29 Thread Scott Langeberg
className() is IMyInterface; } will work. You could also use describeType(className) and iterate over the implementsInterface child tags, but this would be much more expensive. - Gordon From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg

[flexcoders] Beta 2: TitleWindow.titleBar = No Double Clicking!

2006-03-29 Thread Scott Langeberg
I'm unable to listen for doubleClick on the titleBar in my class that extends TitleWindow. I'm able to catch the mouseDown event, but not doubleClick: this.titleBar.doubleClickEnabled = true; trace(dblclcickenable: +this.titleBar.doubleClickEnabled)

[flexcoders] {flexcoders} Beta 2: ViewHelper, ViewLocator

2006-03-30 Thread Scott Langeberg
Does anyone have a working example of the ViewHelper, ViewLocator strategy? I'm going off the CairngormLogin example, which doesn't include those.I'm looking at the old Store example where it does this and not sure what to change this to (dispatch event in associated view?):

Re: [flexcoders] Beta 2: TitleWindow.titleBar = No Double Clicking!

2006-03-30 Thread Scott Langeberg
); On 3/30/06, Manish Jethani [EMAIL PROTECTED] wrote: On 3/30/06, Scott Langeberg [EMAIL PROTECTED] wrote: this.titleBar.doubleClickEnabled = true; trace(dblclcickenable: +this.titleBar.doubleClickEnabled) this.titleBar.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown

Re: [flexcoders] Beta 2: TitleWindow.titleBar = No Double Clicking!

2006-03-30 Thread Scott Langeberg
; } scott ;POn 3/30/06, Manish Jethani [EMAIL PROTECTED] wrote: On 3/31/06, Scott Langeberg [EMAIL PROTECTED] wrote: Would this be the correct synax? It doesn't appear to work...: this.titleBar.mouseChildren = false; this.titleBar.doubleClickEnabled = true; this.titleBar.addEventListener

[flexcoders] {flexcoders} SSL support for Sockets?

2006-03-31 Thread Scott Langeberg
Is there or will there be SSL support for XML and/or binary sockets?Thanks, : : ) Scott -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO!

Re: [flexcoders] Cairngorm 2 and mx:States

2006-04-01 Thread Scott Langeberg
Actually, application state can be stored in the Model. If you look at the login example, you'll see them storing a workflowState variable. However, if you're talking about your views, then that is probably the proper time to use the mx:States objects. ScottOn 4/1/06, sof4real03 [EMAIL

Re: [flexcoders] {flexcoders} SSL support for Sockets?

2006-04-02 Thread Scott Langeberg
don't bother asking about whether they share the same code in the Player and why it's so hard J Matt From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg Sent: Friday, March 31, 2006 7:43 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: {flexcoders} TLS support for Sockets?

2006-04-06 Thread Scott Langeberg
From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg Sent: Friday, March 31, 2006 7:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] {flexcoders} SSL support for Sockets? Is there or will there be SSL support for XML and/or binary sockets

[flexcoders] Fwd: {flexcoders} TLS support for Sockets?

2006-04-06 Thread Scott Langeberg
, it's more of a testing issue than a development issue, so don't bother asking about whether they share the same code in the Player and why it's so hard J Matt From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg Sent: Friday, March 31, 2006 7

[flexcoders] Cairngorm 2: Code Reuse

2006-04-07 Thread Scott Langeberg
I've finally got a handle on Cairngorm, but I'm now stuck in the position of how do I reuse code between Cairngorm apps? We need to maintain at least three different applications that should share the majority of their codebase: + Application + Main code base + + App1 +business +... +

[flexcoders] {flexcoders} Beta 2: Absolute class reference

2006-04-07 Thread Scott Langeberg
Any ideas why this doesn't work, without the imports? (I get a class definition not found error). I should be able to reference classes this way, without the imports!NOTE: This code is being executed in an MXML app. import com.cpds.nested.*; import com.cpds.nested.commands.*; function

Re: [flexcoders] FLEX and Open Lazslo Comparision

2006-05-04 Thread Scott Langeberg
Is it true that Laszlo is interpreted on the server? That you cannot produce an .swf that will run offline? That would be a deal-breaker for me.. Scott On 3/29/06, dos dedos [EMAIL PROTECTED] wrote: (eg. one markup generating either AJAX or Flash) As far as I'm aware, there are multimedia

Re: [flexcoders] Socket (not XMLSocket) Issue

2005-11-30 Thread Scott Langeberg
You need an asyncronous data read. You'll see I created a listener for the 'socketData' event to perform a callback to getMessage(), which performs the readUTF(), in my SocketClient constructor: package com.imagetrend.net {import flash.net.*;import flash.errors.*; import flash.events.*;import

Re: [flexcoders] Re: passing Map in remote object

2005-12-11 Thread Scott Langeberg
Darin, Small typo. Think you meant this: for (var key:String in obj){ trace(key: +key+ | Obj[key]: +String(obj[key])); Alert.show(key: +key+ | Obj[key]: +String(obj[key]) );} Scott On 12/10/05, Darin Kohles [EMAIL PROTECTED] wrote: Encounter this often in DOM JS coding. I would just add to

Re: [flexcoders] Scientific Notation

2005-12-16 Thread Scott Langeberg
Should be right, if:9.095531709556422E7 = (9.095531709556422 * 10^7) = 90955317.0955642which should be correct!ScottOn 12/16/05, Martin Wood [EMAIL PROTECTED] wrote: i just did a quick var x:Number = 9.095531709556422E7; trace(x); and it said 90955317.0955642 is that right? my brain

Re: [flexcoders] How do I know if a password is secure or not

2005-12-20 Thread Scott Langeberg
You can open the shared object as a text file and simply read it. i.e.: not secure!For example, in WinXP, my user name is 'slangeberg'. I can view shared objects here:C:\Documents and Settings\slangeberg\Application Data\Macromedia\Flash Player Open the files with the .sol extension using any

Re: [flexcoders] How do I know if a password is secure or not

2005-12-21 Thread Scott Langeberg
And transmit them via SSL (https://yourdomain.com).!!The SSL certificate is required for maximum security. Otherwise, someone can intercept the network packet and parse out the text that is sent to the server. If you don't care that much, then don't worry. ScottOn 12/20/05, [EMAIL PROTECTED]

Re: [flexcoders] Something like interop between two swf instances

2005-12-21 Thread Scott Langeberg
Do you know what the limitations are for parameters sent via LocalConnection?It would be nice if I could transmit bimaps or movieclips!ScottOn 12/21/05, Theodore E Patrick [EMAIL PROTECTED] wrote: Try the LocalConnection Class. Each SWF application can register as alistener and allow function

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-16 Thread Scott Langeberg
Has anyone been able to use code from one project inside of another? I haven't been able to get Martin's suggestion of setting the Classpath to work. Thanks, Scott On 12/4/05, Martin Wood [EMAIL PROTECTED] wrote: you can use the xmlns attribute either in the application tag (A) to define a

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-17 Thread Scott Langeberg
Thanks Martin, For some reason, when i first tried that, I also had to include a folder reference to the other project. Now, I've found that I'm killing eclipse when I try to include another application. Is this forbidden, in Flex? As in, I'm trying to include TimeSheet / in my application, where

Re: [flexcoders] How to add an MXML component which is not in the root folder?

2006-01-17 Thread Scott Langeberg
I guess, if your application were a class, but if you're using MXML, it is not!Java only requires a main() method. Flex requires extending Application /, which seems to be causing the problem.Scott On 1/17/06, Martin Wood [EMAIL PROTECTED] wrote: Java, not so sure, but seems likely to work

[flexcoders] Cairngorm Documentation - Event system

2006-02-02 Thread Scott Langeberg
Anyone know where to obtain documentation for using Cairngorm? I've gone through the 2.0 example and tracked through their classes, but still have trouble tracking down view event handling (ie. changing views, view state). In the example, I want to know who ultimately sets the 'selectedChild'

[flexcoders] Flex 2: popup depth management

2006-02-03 Thread Scott Langeberg
Anyone found how to control the depths of windows created in such a manner?: private var p1:IFlexDisplayObject; private var p2:IFlexDisplayObject; private function init() { p1 = PopUpManager.createPopUp(this, comps.TestPanel, false);p2 = PopUpManager.createPopUp(this,

Re: [flexcoders] Flex 2: popup depth management

2006-02-04 Thread Scott Langeberg
is just like using setDpeth() now. Play with the Windows that way. If I am wrong, I guess I do not fully understand the implied implementation of the PopUpManager. Peace, Mike On 2/3/06, Scott Langeberg [EMAIL PROTECTED] wrote: Anyone found how to control the depths of windows created

Fwd: [flexcoders] Flex 2: popup depth management

2006-02-04 Thread Scott Langeberg
I should clarify that I'm really going for a floating window effect like Jesse Warden's: http://dev.jessewarden.com/dndv5/dm.htmScott-- Forwarded message -- From: Scott Langeberg [EMAIL PROTECTED]Date: Feb 4, 2006 2:07 PMSubject: Re: [flexcoders] Flex 2: popup depth management

Re: [flexcoders] Fade effects with Forms

2006-02-06 Thread Scott Langeberg
If it's anything like Flash 8, you'll find that there's no alpha transparency for text. It's either visible or it's not!!Dan says: Place a colored block (something; Box, perhaps?) above the text and perform the fade on that. Sorry for the bad news,ScottOn 2/6/06, Jonathan Miranda [EMAIL

Re: [flexcoders] Flex 2: popup depth management

2006-02-06 Thread Scott Langeberg
;p1.y = 150;popupParent = p1.parent;//move p1 to toppopupParent.setChildIndex(p1, popupParent.getChildIndex(p2) + 1); // or -1 or 0 ); } On 2/6/06, Manish Jethani [EMAIL PROTECTED] wrote: On 2/3/06, Scott Langeberg [EMAIL PROTECTED] wrote: Anyone found how to control

[flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-09 Thread Scott Langeberg
I can't get the following keyboardevent to fire, unless you click into the textarea on the stage. Any ideas why that would be?Note: I've tried adding the listener to: application, Application.application, the canvas on the stage, etc... ?xml version=1.0 encoding=utf-8?mx:Application

Fwd: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-10 Thread Scott Langeberg
So, can we safely call it a bug: Flex doesn't pick up keyboard events - unless there's component focus?Thanks,Scott-- Forwarded message --From: Matt Horn [EMAIL PROTECTED]Date: Feb 9, 2006 10:20 AMSubject: RE: [flexcoders] Flex 2 Beta - KeyboardEvent - ProblemTo:

Re: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-10 Thread Scott Langeberg
. - Original Message - From: Scott Langeberg To: flexcoders@yahoogroups.com Sent: Friday, February 10, 2006 12:27 PM Subject: Fwd: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem So, can we safely call it a bug: Flex doesn't pick up keyboard events - unless there's component focus

Re: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-10 Thread Scott Langeberg
/mx:TextArea /mx:Canvas /mx:ApplicationOn 2/10/06, Scott Langeberg [EMAIL PROTECTED] wrote:Strange, but makes sense! Jester, how come you're always the one that figures out my problems? Isn't the Macromedia/Adobe staff on this list?;) Take care,Scott On 2/10/06, JesterXL [EMAIL PROTECTED] wrote

Re: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

2006-02-10 Thread Scott Langeberg
in _javascript_). Additionally, have you tried screwing with the 3rd (or 4th?) parameter, setCapture? - Original Message - From: Scott Langeberg To: flexcoders@yahoogroups.com Sent: Friday, February 10, 2006 1:47 PM Subject: Re: [flexcoders] Flex 2 Beta - KeyboardEvent - Problem

[flexcoders] Flex 2: popup window drag function

2006-02-17 Thread Scott Langeberg
Does anyone know if there's an event that the PopupManager is listening for, that triggers the dragging functionality?I'm trying to create custom buttons in the title area of a TitleWindow, that trigger custom events. However, when I use a skin to place buttons on top of the TitleWindow,

[flexcoders] Flex 2: Custom events disappearing

2006-03-01 Thread Scott Langeberg
I've got a component with a button (called dragBar) on it. The listener is set up as:firstComp dragBar.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown); private function onMouseDown(e:MouseEvent):void { e.stopPropagation(); dispatchEvent(new DragItemEvent(MouseEvent.MOUSE_DOWN,

Re: [flexcoders] Xiff and Flex

2006-03-01 Thread Scott Langeberg
We're starting work on porting over the Smack library for Jabber into AS3.ScottOn 3/1/06, João Fernandes [EMAIL PROTECTED] wrote: I asked once if they planned to port it (http://www.jivesoftware.org/community/thread.jspa?threadID=16111tstart=25 ) but got no response.

Re: [flexcoders] Xiff and Flex

2006-03-01 Thread Scott Langeberg
Jesse,You're best off installing your own. Wildfire is a very simple Jabber server (and well-developed) to set up:http://jivesoftware.org/I would suggest using the built-in database option, to start with and then deploy your own, once you get it figured out. They simply use the database to

Re: [flexcoders] Xiff and Flex

2006-03-01 Thread Scott Langeberg
I don't know. We host our own servers!ScottOn 3/1/06, JesterXL [EMAIL PROTECTED] wrote: Thanks Scott! So, assuming she's cool, are there servers out there that offer hosting options for Wildfire? - Original Message - From: Scott Langeberg To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: Xiff and Flex

2006-03-01 Thread Scott Langeberg
@yahoogroups.com, Scott Langeberg [EMAIL PROTECTED] wrote: Jesse, You're best off installing your own. Wildfire is a very simple Jabber server (and well-developed) to set up: http://jivesoftware.org/ I would suggest using the built-in database option, to start with and then deploy your own, once

Re: [flexcoders] Flexlet's and Yahoo Widgets

2006-03-03 Thread Scott Langeberg
Actually, I think Konfabulator only supported XML and _javascript_. No HTML and no Flash, as far as I know. All your layout tags were in the xml doc.ScottOn 3/2/06, JesterXL [EMAIL PROTECTED] wrote: How do they differ from Kapsules? http://www.kwidgets.com/ Basically, Kapsules used: -

[flexcoders] Flex / AS3 libraries available

2006-03-04 Thread Scott Langeberg
http://weblogs.macromedia.com/cantrell/: : ) Scott -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Flex 2 Beta - App Vars - Runtime Crash

2006-03-08 Thread Scott Langeberg
Anyone know why these would be crashing the browser?import mx.core.Application; var url:String = String(Application.application.url); if (Application.application.parameters.userid != undefined) { var userid:String = String(Application.application.parameters.userid); if(userid) {

[flexcoders] Local Flash (8) Player Installer

2006-06-02 Thread Scott Langeberg
Does anyone have a solution allowing for local installation of the Flash 8 player, instead of going to MM's site? Our problem is clients who have restricted user rights and may not be able to surf the internet, either. Thanks,: : ) Scott -- Flexcoders Mailing List FAQ:

Fwd: [flexcoders] Local Flash (8) Player Installer

2006-06-04 Thread Scott Langeberg
: flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg Sent: Friday, June 02, 2006 10:45 AM To: flexcoders@yahoogroups.com; [EMAIL PROTECTED] Subject: [flexcoders] Local Flash (8) Player Installer Does anyone have a solution allowing for local installation of the Flash 8 player, instead

Re: [flexcoders] Initialize funkyness

2006-06-08 Thread Scott Langeberg
I believe that initialize() is only triggered the first time the movie loads. You'll probably want to call the function again, using a listener on the statechange. Sorry I don't have any code to give... ;) Scott On 6/8/06, Jeremy Rottman [EMAIL PROTECTED] wrote: I am using initialize to

Re: [flexcoders] Multithreading?

2006-06-09 Thread Scott Langeberg
Well, there is no (process) blocking in Flash, so I'm not sure how you could ever freeze the user interface (other than endless loops!). Flash is basically an asynchronous, event-based VM. In MVC parlance, your controller would be set up to listen for events dispatched by the user interface

Re: [flexcoders] How to recover from 'cleaning' project?

2006-06-15 Thread Scott Langeberg
After clean, performing a build should get .swfs back. Scott On 6/15/06, Michael Schmalle [EMAIL PROTECTED] wrote: Also, there's a Project - Clean option which clears out the compiled stuff without deleting the html templates :-)Sometimes when you clean and there is still an error it

[flexcoders] Flex 2 - Release Date Pricing

2006-06-15 Thread Scott Langeberg
According to Sydney Sloan (Marketing - Adobe) in a Breeze webinar @ 11AM (c): Official release date: June 28, 2006 Pricing as follows: Flex 2 SDK - FREE Flex Builder 2 - $499, $749 w/charting FDS - $6,000 (100 concurrent users), $20,000 (enterprise) Interestingly: FDS Express - FREE (one

Re: [flexcoders] Re: Moderation + we're not moving to a new forum this week (or next) either :)

2006-06-16 Thread Scott Langeberg
GMail, baby. All posts archived + Google search = hooray Scott On 6/16/06, busitech [EMAIL PROTECTED] wrote: Personally, I have tried to use Flexcoders group and have all butgiven it up. 1. The Yahoo system has a horrible search facility, which is KEY toasking questions (has this been

Re: [flexcoders] Noob binding question

2006-06-21 Thread Scott Langeberg
According to ServiceCapture, your flash Remoting calls are bombing out... It says you were making 'the following service calls:' null.null() Never a good thing! Scott On 6/21/06, Shannon Hicks [EMAIL PROTECTED] wrote: I've racked my brain, and searched all the documentation I could

[flexcoders] flash player version picker in Firefox?

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

[flexcoders] Fluint bindable / IEventDispatcher error

2009-01-22 Thread Scott Langeberg
Sorry to cross-post, but this is something google is not helping with (as it seems not to, when dealing with flex compiler at any depth). I was going to generate docs using asdoc, which threw this error: fluint/net/digitalprimates/fluint/unitTests/frameworkSuite/testCases/TestBindingUse.as(65):

Re: [flexcoders] Re: Future Of Flex Developers?

2010-02-11 Thread Scott Langeberg
I'm developing Flex 3 apps in FlashBuilder 4 beta 2, right now - not too many probs On Thu, Feb 11, 2010 at 7:15 AM, GeorgeB grg_b...@yahoo.com wrote: Exactly Paul! I am now using Flex Builder3.x and will (when time comes) upgrade to whatever they call it. As I will have to. Obviously!