Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Jeff Steiner
I have to say that I am in a similar boat. I work for an organization that spends a lot of money every year on different applications. Everything from spending roughly 250K on virtual load / performance testing systems to spending over 1 Million a day on high priced consultants to get a CRM up a

Re: [flexcoders] Re: Star System]

2005-03-25 Thread Ketan Bengali
here it is.. Sorry.. had all the display code in set. Shifted it to draw now. Now it should work. Attaching the updated file. P.S: The component checks if the number received as parameter is a whole integer else rounds off. Example: if num is 3.49 and lesser rounds to 3 else rounds to 4. Re

Re: [flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Manish Jethani
On Fri, 25 Mar 2005 20:32:14 -0800, Matt Chotin <[EMAIL PROTECTED]> wrote: > wonder if Manish ran into this with the map example J The map sample loads images from the same host, but the flickr/delicious sample loads them directly from flickr.com. http://www.flexauthority.com/Samples/delicious/

RE: [flexcoders] Re: Cyclical References

2005-03-25 Thread Matt Chotin
I wish I could offer more, obviously it’s a bug we’d rather not have.  If we had a tool that showed the circularity we’d probably also have the fix for it J  As for doing the wrong thing silently, we did not ship the product knowing that this case could happen.  We thought the rare case w

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Matt Chotin
I’m not an expert at this by any stretch.  The security sandbox violation when dealing with images/movies generally occurs because the SWF that did the loading (myserver.com/index.mxml) tries to access properties of the loaded movie (otherserver.com/someImage, and yes I realize it may not

Re: [flexcoders] image scroll

2005-03-25 Thread Manish Jethani
On Fri, 25 Mar 2005 08:58:12 -0500, Doodi, Hari - BLS CTR <[EMAIL PROTECTED]> wrote: > Yes, I am zooming image using > scaleX and scaleY and also I did check my mxml file and parent is not big > enough to hold the zoomed Image. A couple of things: 1. Use scaleX and scaleY instead of _xscale a

Re: [flexcoders] Attaching Custom Component

2005-03-25 Thread Manish Jethani
On Fri, 25 Mar 2005 08:43:58 -0800, Jack Waknitz <[EMAIL PROTECTED]> wrote: > I can't get my custom component to show. Do I need to import it first > somehow like you would do with a normal component? It says "There is > no property with the name 'customcomponent'". Any ideas? CustomComponent

Re: [flexcoders] Image caching

2005-03-25 Thread Manish Jethani
On Fri, 25 Mar 2005 11:20:28 -0500, Joe Berkovitz <[EMAIL PROTECTED]> wrote: > Basically, it would be really helpful to understand how to minimize > overhead for repeatedly loading a movieclip from an external URL, > because even if the URL's response bytes are cached by the browser, > there's st

[flexcoders] Any Idea about Cairngorm 1.0?

2005-03-25 Thread Shahnavaz Alware
Hi Steven,   I have seen that there is a reference of PDF file along with Cairngorm 0.9, but unable to find it L .  This architecture is awesome, I read the book and was able to get the application up and running.   Thanks,   Shahn Yahoo! Groups Sponsor ADVERTISEMENT

[flexcoders] Re: Cyclical References

2005-03-25 Thread Eric Raymond
Apparently it's not so rare...! If you can't fix the problwm, perhaps there's a tool which will make it easier to detect and/or track down these issues? Silently doing the wrong thing in some cases is not a great position statement for a tools vendor. Of course I would care less about this if t

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Dennis Jackson
We have a similar situation in that we have plenty of cash for investment, certainly more than some of the companies I have worked with in the past. The license is a small cost compared to the labor that goes into the projects. We also need to factor intraining and support and the like. I think

Re: [flexcoders] Xamlon Flash Edition (was: Flex 1.5 price)

2005-03-25 Thread Scott Barnes
Ontop of all that, FLEX and FLASH Player future changes/requests will dictate each others end release? where is "other" products will always be feeding off the scraps provided (ie what they get is it, thanks for coming). It would be a different story if Flash Player took on features requested by

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Scott Barnes
hehhehe funny, how we all suddnely commence a mass exodus. I won't comment on the price whether its rumour or not, but what I will comment is why I think either way it won't make that much of a difference (well its totally not my own opinion) At present in my company FLEX price tag was never a c

RE: [flexcoders] How to pass AS Objects to a CFC

2005-03-25 Thread Mohanraj Jayaraman
Thanks for the explantion Peter. That really helps. Mehdi thanks for yet another Tip. It works in FLEX. Mohanraj --- "Mehdi, Agha" <[EMAIL PROTECTED]> wrote: > Thanks Peter for the explanation. That explains it. > I am glad it worked > Mohanraj. > > There's one more way of doing it without ha

RE: [flexcoders] Cyclical References

2005-03-25 Thread Matt Chotin
If you do have binding this can sometimes come up.  The way to eliminate it for sure (I think) would be to eliminate any bindings in the components that claim there are cycles and just use event handlers to do your variable assignments.   Unfortunately there isn’t a good way to debug wh

[flexcoders] Re: edit ContextMenu

2005-03-25 Thread viraf_bankwalla
Ok - now how do I use this as the CellEditor of a data grid? Thanks. --- In flexcoders@yahoogroups.com, "viraf_bankwalla" <[EMAIL PROTECTED]> wrote: > > Thanks - it works. > > --- In flexcoders@yahoogroups.com, Abdul Qabiz <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > Problem in your C

[flexcoders] Re: edit ContextMenu

2005-03-25 Thread viraf_bankwalla
Thanks - it works. --- In flexcoders@yahoogroups.com, Abdul Qabiz <[EMAIL PROTECTED]> wrote: > > Hi, > > Problem in your CellEditor.as code, > > _cm.customItems.push(new ContextMenuItem(new ContextMenuItem ("Details", > details))) > > *Nested ContextMenuItem(...) > > > ##Corrected Code##

RE: [flexcoders] Re: edit ContextMenu

2005-03-25 Thread Abdul Qabiz
Hi, Problem in your CellEditor.as code, _cm.customItems.push(new ContextMenuItem(new ContextMenuItem("Details", details))) *Nested ContextMenuItem(...) ##Corrected Code## class CellEditor extends mx.controls.TextInput { function CellEditor() { var _cm = new

[flexcoders] Re: edit ContextMenu

2005-03-25 Thread viraf_bankwalla
Thanks - I tried it but it does not seem to be working. Any suggestions ? --- application http://www.macromedia.com/2003/mxml"; xmlns="*"> - class class CellEditor extends mx.controls.TextInput { function CellEditor() { var _cm = new Cont

RE: [flexcoders] edit ContextMenu

2005-03-25 Thread Abdul Qabiz
Hi, Try this: _ti.label.menu = cm; Where _ti is instance of TextInput. ###Modified Code## class CellEditor extends mx.controls.TextInput { var _cm = null; function CellEditor() { _cm = new ContextMenu(); _cm.customItems.push(new ContextMenuItem(new ContextMenuItem ("D

[flexcoders] Re: Cyclical References (and faulty binding code)

2005-03-25 Thread Eric Raymond
I have that problem as well but didn't want to mention it because it was too hard to explain and I thought it might be a symptom of the compiler error issue. And I also have referneces between .as files and .mxml files. But this is very scary because at runtime you have binding not working but

[flexcoders] Xamlon Flash Edition (was: Flex 1.5 price)

2005-03-25 Thread Kristopher Schultz
As quoted by Darron (third party quote): > "with something like this out on the market, buying Flex > or Lazslo would be such a lame decision." What!? With what (very) few details are available about Xamlon, I could maybe see it being a direct competitor to the traditional Flash IDE, but a compe

[flexcoders] edit ContextMenu

2005-03-25 Thread viraf_bankwalla
When I right-click in a TextInput I get the edit menu. How do I add items to this edit ContextMenu ? I tried the following, however the compiler complains that there is no property with the name Menu. class CellEditor extends mx.controls.TextInput { var _cm = null; function Cell

[flexcoders] Re: Star System

2005-03-25 Thread pioplacz
Could you please send it again.. i deleted mail by misstake... :( --- In flexcoders@yahoogroups.com, Ketan Bengali <[EMAIL PROTECTED]> wrote: > Sorry.. had all the display code in set. > Shifted it to draw now. > > Now it should work. > > Attaching the updated file. > > P.S: The component ch

[flexcoders] Re: Image caching

2005-03-25 Thread pioplacz
Yes it sounds kind of that way.. i use repeater component do make it appear. find it way easier then writing code myself. but it fills kind of sad that nobody can really answear our questions. It would be really good if it just could cache all the images same way "old" HTML did. just store al

RE: [flexcoders] URGENT: drag and drop problem!

2005-03-25 Thread Matt Chotin
I’ve posted before that the DragManager does not seem to do very well with loaded applications.  You may want to try to get the DragManager to start doing something (anything) from the main application before attempting the drag and drop in the loaded one.   I don’t know quite what you’

Re: [flexcoders] Cyclical References

2005-03-25 Thread Joe Berkovitz
Eric, I recently ran into a compiler bug (confirmed as such by MM) that is very reminiscent of the problem you mention, in that the compiler breaks in a full compile, but works in an incremental compile. (In my case, the breakage consisted of emitting faulty property-binding code, rather tha

RE: [flexcoders] Editable DataGrid

2005-03-25 Thread Deepa Subramaniam
Set the editable property to true; by default it is false. -Original Message- From: naidim8 [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 12:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Editable DataGrid Is there a way to make the DataGrid editable, so you can

[flexcoders] Editable DataGrid

2005-03-25 Thread naidim8
Is there a way to make the DataGrid editable, so you can enter data directly, like a spreadsheet? Or embed textboxes within the cells so you can type into them? Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscrib

RE: [flexcoders] How to pass AS Objects to a CFC

2005-03-25 Thread Mehdi, Agha
Thanks Peter for the explanation. That explains it. I am glad it worked Mohanraj. There's one more way of doing it without having to specify the other argument. var testObject = new Array(); // it has to be an array. It won't work if you did new Object() testObject["var1"] = "var1"; testObject

[flexcoders] Cyclical References

2005-03-25 Thread Eric Raymond
Are there any tools or suggestions to diagnose the problem further and/or resolve it? Sometimes my flex application fails to compile with the following message: 03/25 09:22:50 ERROR flex.compiler.HtmlOutputHandler: Results of compiling ... /App.mxml 5 Errors found. Error .../UserDetailWindow.mx

RE: [flexcoders] How to pass AS Objects to a CFC

2005-03-25 Thread Peter Farland
The history of this problem stems way back from Flash Remoting in ColdFusion 6.0. ActionScript 1.0 APIs for Flash Remoting introduced "named arguments" for CF-based invocation. The syntax for passing named arguments was usually listed like this in documentation: myCFService.cfFunction({var1:"foo

RE: [flexcoders] How to pass AS Objects to a CFC

2005-03-25 Thread Mohanraj Jayaraman
WOW! It works Mehdi. As you pointed out the second variable passed in the CFC function call did the magic! If possible, an explanation on why it works with the second variable will be more useful Mehdi. My guess is that one should have good knowledge of Flash/ActionScript before venturing into d

Re: [flexcoders] SWF Timeout

2005-03-25 Thread JesterXL
What the heck... ok, it said Trial Edition enabled.  So, I went in license.properties again, and this time upped the case to FED vs. fed.  I then rebooted, and tested; now it says non-commercial enabled.   ...don't know if it was the reboot or the case.   :: checks SWF with ASV ::   Ok, th

Re: [flexcoders] How to pass AS Objects to a CFC

2005-03-25 Thread Mohanraj Jayaraman
Thanks Paul. This seems to be a complex project and I am having a hard time following it. I wish they had a simple example. But I am still experimenting with ValueObject.cfc and hope I can get this done pretty soon. --- Paul Kenney <[EMAIL PROTECTED]> wrote: > At work we figured out how to do

[flexcoders] Security Sandbox Violation when loading image

2005-03-25 Thread Kristopher Schultz
I'm trying to load some images from a different domain than the one my Flex app lives on. When I do, the debugger prints out a bunch of errors like this:   *** Security Sandbox Violation *** SecurityDomain 'http://myserver.com/index.mxml?debug=true' tried to access incompatible context 'h

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Darron J. Schall
Matthew Shirey wrote: >Thanks for the information on Laszlo. It doesn't look as robust as >Flex, but if they do raise the price , I doub't we'll have much choice >but to switch. All we can do now is hope that its just a rumor. If >not, hello Laszlo. > >-- Matthew > > Not to get too far OT h

Re: [flexcoders] Attaching Custom Component

2005-03-25 Thread Jack Waknitz
Here's my code that doesn't work. http://www.macromedia.com/2003/mxml"; initialize="appInit()"> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Thijs Triemstra | Collab
Looks like Laszlo 3.0 (beta now) supports FlashPlayer 6: Flash Video and AMF, right :) Here's how to deploy it on JRun btw : http://www.openlaszlo.org/wiki/LaszloWithJrun I'm trying to do this on Mac OSX now.. Thijs Op 25-mrt-05 om 19:10 heeft Matthew Shirey het volgende geschreven: > > Th

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Matthew Shirey
Thanks for the information on Laszlo. It doesn't look as robust as Flex, but if they do raise the price , I doub't we'll have much choice but to switch. All we can do now is hope that its just a rumor. If not, hello Laszlo. -- Matthew On Fri, 25 Mar 2005 12:43:18 -0500, jeff tapper <[EMAIL P

RE: [flexcoders] Flex 1.5 price

2005-03-25 Thread Simon Fifield
I heard that Macromedia decided that they wee going to move Flex over to Apache to be released as an Open Source Project. ;-) -Original Message- From: Jeff Steiner [mailto:[EMAIL PROTECTED] Sent: 25 March 2005 17:21 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 price

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread jeff tapper
Can I recommend everyone waits for an official word from MM before jumping to conclusions. This is still just unconfirmed rumors... At 12:39 PM 3/25/2005, you wrote: >Laszlo it is. I expected that the price of Flex would drop, and >certainly not double, this is crazy!!! > > >Thijs > > >Op 25-m

RE: [flexcoders] Flex 1.5 price

2005-03-25 Thread Shahnavaz Alware
With Lazlo around price for Flex should go down or MM looses the ground to OpenSource. -Original Message- From: Thijs Triemstra | Collab [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 9:39 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 price Laszlo it is.

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Thijs Triemstra | Collab
Laszlo it is. I expected that the price of Flex would drop, and certainly not double, this is crazy!!! Thijs Op 25-mrt-05 om 17:36 heeft Dennis Jackson het volgende geschreven: > Sounds like laszlo time :) > -Original Message- > From: Matthew Shirey <[EMAIL PROTECTED]> > Date: Fri, 2

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Dennis Jackson
Our macromedia account rep indicated a price change on april 1, and that it would be an increase. I think he thought that would help close the sale this month. But I think it may have the opposite effect. We are taking a long hard look at laszlo right now. -Original Message- From: "Kri

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Jeff Steiner
I heard months ago that the price was going to change on April 1st. I still don't know if it will go up or down - as I have heard both from different sources. I would also guess that if the price goes up that sometime soon MM will introduce a scaled down version of Flex server to serve companies

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Duccio
I totally agree. Regards Duccio - Original Message - From: "Dennis Jackson" <[EMAIL PROTECTED]> To: Sent: Friday, March 25, 2005 5:36 PM Subject: Re: [flexcoders] Flex 1.5 price > Sounds like laszlo time :) > -Original Message- > From: Matthew Shirey <[EMAIL PROTECTED]> > Date:

RE: [flexcoders] Silly question

2005-03-25 Thread Robert Stuttaford
One simple over-looked page in the help file! And it's exactly what I needed. I just cleaned up a mess of folders.. this works beautifully! Thanks for pointing that out Darron, this totally obviates the need to do crazy new [](); stuff! robert -Original Message- From: Darron J. Schall [

RE: [flexcoders] Flex 1.5 price

2005-03-25 Thread Kristopher Schultz
Title: 메시지 Come on, Yang Lim. You can't just post a message like that and not tell us the source of the information. That's how rumors proliferate! If there isn't official mention of it on Macromedia's site then I wouldn't be too quick to assume that it is true. Kris   --   Kristopher Sch

RE: [flexcoders] Silly question

2005-03-25 Thread Gordon Smith
import mx.utils.ClassUtil; var x = new ClassUtil.findClass(className); - Gordon -Original Message- From: Robert Stuttaford [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 3:53 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Silly question Probably not specifically Flex

Re: [flexcoders] Attaching Custom Component

2005-03-25 Thread Jack Waknitz
I can't get my custom component to show. Do I need to import it first somehow like you would do with a normal component? It says "There is no property with the name 'customcomponent'". Any ideas? On Thu, 24 Mar 2005 18:51:33 +0530, Manish Jethani <[EMAIL PROTECTED]> wrote: > On Wed, 23 Mar 20

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Dennis Jackson
Sounds like laszlo time :) -Original Message- From: Matthew Shirey <[EMAIL PROTECTED]> Date: Fri, 25 Mar 2005 08:32:45 To:flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 1.5 price Our shop cannot hardly pull the current price... If it goes up I don't know what it will mean for

[flexcoders] TextInput and cellEditor questions

2005-03-25 Thread viraf_bankwalla
Hi, I noticed that if I right click on a TextInput field the context menu displays Cut, Copy, Paste, Delete and Select All. How can I add an item to this menu? In a DataGrid, when one selects the cell, one is able to edit it. It appears that a TextInput is being displayed. I would like

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Matthew Shirey
Our shop cannot hardly pull the current price... If it goes up I don't know what it will mean for us, but I doubt its good. We're in love with flex, but we may have to give it up if they raise the price on it like that. -- Matthew On Fri, 25 Mar 2005 14:25:38 +0200, Robert Stuttaford <[EMAIL P

Re: [flexcoders] Image caching

2005-03-25 Thread Joe Berkovitz
I would also like to see some response from MM on this subject (I have asked support, but no response yet). Basically, it would be really helpful to understand how to minimize overhead for repeatedly loading a movieclip from an external URL, because even if the URL's response bytes are cached

RE: [flexcoders] Re: Calling Java Servlet

2005-03-25 Thread Peter Farland
Hi Libby, You can invoke a servlet, but it's really a deprecated method of contacting the server from Flash Remoting. It's not a preferred method as the "servicename"."functioname()" invocation isn't as straight forward as a plain old java object "classname.methodname()" idea. For a servlet inv

RE: [flexcoders] Re: Calling Java Servlet

2005-03-25 Thread Cathy Murphy
Libby - I think this is possible but haven't tried it myself. Here's some information which should set you down the right path. Good luck! I've seen examples for the Flex 1.0 session servlet [Replaced in Flex 1.5 with new session access but not relevant to this discussion.] http://www.macromed

RE: [flexcoders] Custom security for RemoteObjects

2005-03-25 Thread Lin Lin
Hi, For working with Tomcat, please follow the steps in readme.txt under Your_flex_install\resources\security\TomcatLogin . For setting tomcat-users.xml, you need to follow the Tomcat doc. You can also see other samples under resources\security. -lin -Original Message- From: Laurent Cor

Re: [flexcoders] Flex 1.5 price in euro

2005-03-25 Thread Duccio Del Ministro
Maybe you don't know that $ 12,000 today are about 9,264.97 euro. That mean about 55% increase. I am sure there is a reason, maybe the costs for the support... Regards Duccio --- Valy Sivec <[EMAIL PROTECTED]> wrote: > I think that VAT has nothing to do with the tag > price For each country

Re: [flexcoders] Flex 1.5 price in euro

2005-03-25 Thread Valy Sivec
I think that VAT has nothing to do with the tag price For each country the VAT is different and will add to the tag price... Maybe  for non-US markets the costs to sell/support this product is a little bit higher and it's reflected in the final price Dave Carabetta <[EMAIL PROTECTED]> wr

Re: [flexcoders] Re: Calling Java Servlet

2005-03-25 Thread Harris Reynolds
The fact that RemoteObject uses a servlet is an "implementation detail". You can see that it is by looking at the [FLEX_APP]/WEB-INF/web.xml file in your Flex application. It is the servlet named "AMFGatewayServlet". With regard to your problem, depending on how your code is factored, you may b

Re: [flexcoders] Flex 1.5 price in euro

2005-03-25 Thread Dave Carabetta
On Fri, 25 Mar 2005 13:44:26 +0100 (CET), Duccio Del Ministro <[EMAIL PROTECTED]> wrote: > > Hi all, > i have another question: why flex pricing starts at > $12,000 USD and in euro 14,400 (18,671.84 US Dollar > taken from > http://www.macromedia.com/software/flex/buy/) VAT? Regards, Dave.

RE: [flexcoders] image scroll

2005-03-25 Thread Doodi, Hari - BLS CTR
Hi Manish, Thanks for considering my question. Yes, I am zooming image using scaleX and scaleY and also I did check my mxml file and parent is not big enough to hold the zoomed Image. I am attaching my file for your reference. I would like to have scroll bars(both) only for the zoomed image

Re: [flexcoders] Silly question

2005-03-25 Thread Darron J. Schall
Robert Stuttaford wrote: >BTW, are there any concrete multiple-swf RSL examples out there? Currently >I'm writing intrinsics for each class that gets used in any other swf, and >it seems like I might be going the long way around. > > > Instead of using intrinsics for each class, make use of the

Re: [flexcoders] Members' email addresses in the archives

2005-03-25 Thread Scott Barnes
aye, its time to adopt a gmail account for "mailing-lists" ... I've got 50 invites for any who are in need of a throw-away-email address / account. GMAIL has pretty darn good anti-spam catchments. On Fri, 25 Mar 2005 01:27:16 +0530, Manish Jethani <[EMAIL PROTECTED]> wrote: > > It was brought

RE: [flexcoders] Silly question

2005-03-25 Thread Robert Stuttaford
Thanks! This is actually for a Flash project.. using multiple swfs, and trying to share strongly typed VO's among them RSL-style.. saw it becoming complex quickly, so decided against strict typing of value objects. BTW, are there any concrete multiple-swf RSL examples out there? Currently I'm wr

RE: [flexcoders] Silly question

2005-03-25 Thread Erik Westra
This subject has been discussed many times (either here or on FlashCoders). The main problem lies in the fact that the class must be compiled into the swf. There are several ways to do this. One is to have a swf for each class with only one line of code on the root, to make sure the class is comp

[flexcoders] Flex 1.5 price in euro

2005-03-25 Thread Duccio Del Ministro
Hi all, i have another question: why flex pricing starts at $12,000 USD and in euro 14,400 (18,671.84 US Dollar taken from http://www.macromedia.com/software/flex/buy/) Regards Duccio Del Ministro ___ Nuovo Yahoo! Messenger: E' molto più d

Re: [flexcoders] Silly question

2005-03-25 Thread Darron J. Schall
Robert Stuttaford wrote: >var x = new [ className ](); > >But obviously the compiler doesn't like that. > > Classes are stored in the _global scope of the movie, so you can do that by using this code: var x = new _global[ className ](); ... where className is the fully-qualified name (i.e.

RE: [flexcoders] Flex 1.5 price

2005-03-25 Thread Robert Stuttaford
Title: 메시지 Ohh lord it’s that time again…   I started freelancing on April 1 2004 … my boss thought I was trying to pull his leg!   I guess that means it’s champagne time for me soon …   From: ?? [mailto:[EMAIL PROTECTED] Sent: 25 March 2005 01:54 PM To: flexcoders@yahoog

Re: [flexcoders] Flex 1.5 price

2005-03-25 Thread Scott Barnes
shhh.. its not suppoed to be widely known as yet ;) it could be an april fool mind you ;) On Fri, 25 Mar 2005 14:01:00 +0200, Robert Stuttaford <[EMAIL PROTECTED]> wrote: > > > > Could you provide a link to the press release? J > > > > > > > From

RE: [flexcoders] Flex 1.5 price

2005-03-25 Thread Robert Stuttaford
Title: 메시지 Could you provide a link to the press release? J   From: ?? [mailto:[EMAIL PROTECTED] Sent: 25 March 2005 01:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 1.5 price   I heard bad news today. Macromedia will change Flex 1.5 price $12,000(2

[flexcoders] Flex 1.5 price

2005-03-25 Thread 양임
Title: 메시지 I heard bad news today. Macromedia will change Flex 1.5 price $12,000(2cpu) to $20,000(1cpu). This price will be started at april 1, 2005.   Is it true?    yang lim.     Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the we

[flexcoders] Silly question

2005-03-25 Thread Robert Stuttaford
Probably not specifically Flex related. Can I do what the following is accomplishing, using Actionscript 2, with out statically mapping it out? switch ( className ) { // base case "ClassA": return new ClassA(); break; case "ClassB":

RE: [flexcoders] Image caching

2005-03-25 Thread Erik Westra
Well, my guess is that this has nothing to do with cache, but the fact that the flex components delete and create the movieclips again and then load the image. If it is cached or not, it takes some time before the image can appear. I don't know exactly how these components are constructed or if th

[flexcoders] Image caching

2005-03-25 Thread pioplacz
Have a question i made a movie library based on the exampel flex store... and i have aroun 150 images loading everytime i want to found a movie... is it possible to make the images stor in cache to make a faster browsing. it loads fast cause it's local but i can only feat aroun 20 images in a

[flexcoders] URGENT: drag and drop problem!

2005-03-25 Thread Alessio Prosperi
I still haven't found a solution to the problem described below.   Could you please help me and send me some suggestion?   Thanks Alessio         - Original Message - From: Alessio Prosperi To: flexcoders@yahoogroups.com Sent: Thursday, March 24, 2005 10:25 AM Subject: [flexcode