[flexcoders] Tab navigator questions

2005-03-31 Thread r0main
Hello, few questions regarding a TabNavigator: - I'd like to left-align tab label inside of fixed-width tabs, how can I do this ? - I'd like to manage the placement of the icons I can display in tabs, like right aligning that icon when the label itself is left-aligned - Also, how can I change

[flexcoders] DataGrid getColumnName problem

2005-03-31 Thread Simon Fifield
Hi Flexcoders, I have a DataGrid that uses the same data in 2 columns but each with a different labelFunction to display the data in different ways. the data is called 'depart' in the dataProvider and so to get this data I have to the same name to the 2columns in the DataGrid that

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Michel Jansen
Matt Horn wrote: An old dutch saying : Prices can only go down... Laszo/BackBase time?? Was this before or after the tulip craze? :) You can make a joke off this but i think that raising the price for your licenses more than 100% is not the smartest thing to do! It can be actually

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Sjors Pals
4CPU? Why on earth would someone like to use that on precompiled stuff? Regards, Sjors Pals Michel Jansen wrote: Matt Horn wrote: An old dutch saying : Prices can only go down... Laszo/BackBase time?? Was this before or after the tulip craze? :) You can make a joke off this but

[flexcoders] Value Object Help

2005-03-31 Thread digital_eyezed
Hi, I need a little help: I have a remoteobject which returns an array of Value Objects. The value object contains two ints (numbers) and a string. I want to display this on a datagrid. How do I convert this array into something that I can use? I have created an actionscript class

[flexcoders] mailform

2005-03-31 Thread robert hauser
hi there, does anybody know how to create a mail-form in flex thx 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] * Your use of Yahoo! Groups is subject

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Valy Sivec
Lucian, "4 CPUs and Gold Support for $29,000. That's actually cheaperthan Flex was in the past for 4 CPUs + Gold Support." It's like going to the car dealer ship and the guytells me that the Lexus SUVis the onlynewbase model...but don't worry...that it's still cheaper than buying2 Lexus

Re: [flexcoders] Digest Number 679

2005-03-31 Thread dunwerkin
Subject: Re: Flex 1.5 price Matt Horn wrote: An old dutch saying : Prices can only go down... Laszo/BackBase time?? Was this before or after the tulip craze? :) You can make a joke off this but i think that raising the price for your licenses more than 100% is not the smartest

Re: [flexcoders] Using Components in Flash

2005-03-31 Thread JesterXL
Not sure why your change event isn't getting fired; try doing 2 things: - in Flash, when you associate the ActionScript class to a movie clip, put a copy of the UIComponent on frame 2 with a stop(); action on frame 1 to prevent it from ever getting to frame 2. - change your code from:

RE: [flexcoders] Value Object Help

2005-03-31 Thread Dimitrios Gianninas
Hi, No need to do anything special, just do: myDataGrid.dataProvider = remoteObject.result; Then the data grid should be declared as follows: mx:DataGrid id="myDataGrid" mx:columns mx:Array mx:DataGridColumn columnName="name" headerText="Name" / mx:DataGridColumn

[flexcoders] Flex 1.5 price - A Real Example of a Nearly Lost Sale

2005-03-31 Thread Ian Welsh
Well, we have just committed to Flex and fortunately beat the price rise - paperwork justcompleted with Macromedia UK. First, a big thank you to this list. Whoever started the price increase rumour did us a favour. We have been prototyping and playing with Flex for a couple of months

RE: [flexcoders] Flex 1.5 price - A Real Example of a Nearly Lost Sale

2005-03-31 Thread Dirk Eismann
I've got a question concerning maintenance, maybe someone from MM can comment: we bought Flex 1.5 two months ago. When our maintenance period ends and we decide to extend the maintenance will the price for the new maintenance be based on the original price (12k) or the product's price at that

Re: [flexcoders] Reloading of Flex WAR

2005-03-31 Thread Ashley Streb
Answering my own question from a while back in case it helps anyone else... (Note: this on version 5.5.7 of tomcat, which I know is officially unsupported) Tomcat 5.x has a setting for anitJARLocking and antiResourceLocking attributes on the Context element in the conf/context.xml. Setting

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Robertson-Ravo, Neil (RX)
Surely the fact the price is going up means that it is not selling well (and possibly the whole RIA scene is not as widespread as you are led to believe). If Flex was booming the costs would come down allowing more users to adopt and Flex to continue to thrive. I would be interested

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread jeff tapper
Seems to me like you misunderstand the principles of supply and demand. One doesnt usually raise the price on a product that isnt selling. Quite the opposite according to most economic principles... At 10:04 AM 3/31/2005, you wrote: Surely the fact the price is going up means that it is not

[flexcoders] Key class Help

2005-03-31 Thread Doodi, Hari - BLS CTR
Hi list, I need some help/explanation about Key class. Based on the examples mentioned in the live docs as well as in Action Script Language Reference I created the following mxml files. I want to use the Key class to allow the user use key board to access UI Objects, but no success. Any help

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Benoit Hediard
I don't see the point of this licensing change. With the old licensing: Business case A- people requiring a 2CPU license could buy it for $12 000, Business case B- people requiring a 4CPU licence could buy it for $24 000, Business case C- people requiring a 4CPU license + Gold support could buy

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Robertson-Ravo, Neil (RX)
Erm, not really - it seems to be a Catch-22 system doesn't it.. Put the price up so lower sales gives still give you expected revenue... or lower the price so larger sales can give you expected revenue. Flex is goodno messing but it is pretty obvious that the demand is high for it but the

Re: [flexcoders] Flex 1.5 price - A Real Example of a Nearly Lost Sale

2005-03-31 Thread Jeff Steiner
Dirk, When I talked to my account manager the other day - he told me that the price you pay is the basis for future maintenance agreements. I would still check with yours. Jeff http://www.flexauthority.com - Original Message - From: Dirk Eismann [EMAIL PROTECTED] To:

[flexcoders] Filtering Results from a DataProvider

2005-03-31 Thread Ashley Streb
I wrote a custom data provider that will filter results from a wrapped DataProvider. The idea was that you could plug in different filters; filter on partially typed words, location etc. This custom data provider (FilterDataProvider) extends the mx.control.listclasses.DataProvider class.

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread d-weimer
We've seen a fair number of people prototyping with Flex but few deploying 'real' applications. The price increases and limitations e.g. Internationalization will likely make prototyping the only thing we ever do with Flex even though we have purchased it. Frankly, we are considering

RE: [flexcoders] Flex 1.5 price - A Real Example of a Nearly Lost Sale

2005-03-31 Thread Ian Welsh
Dirk, that is what I was told (in writing) - maintenance at 20% of the price you pay (per year). In fact we bought an additional year's maintenance with our order (the first year was included). Hope this helps. Regards Ian - Ian Welsh. Business Manager. Harlaxton College. Harlaxton,

[flexcoders] Fw: .NET to Flash: good or bad for Flex

2005-03-31 Thread Dennis Jackson
-Original Message- From: [EMAIL PROTECTED] Date: Thu, 31 Mar 2005 09:31:16 To:[EMAIL PROTECTED] Subject: FW: .NET to Flash: good or bad for Flex From: Jackson, Dennis (PPC) Sent: Thursday, March 31, 2005 9:23 AM To: 'flexcoders@yahoogroups.com' Subject: .NET to Flash: good or bad

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Michel Jansen
Benoit Hediard wrote: I don't see the point of this licensing change. I do. The only reasonable explaination is that Flex is selling as fast as lightning! Hire a team of M$ WebProgrammers for a few months and look at the BILLS... You will run to MM and buy Flex! MJ With the old

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Jeff Steiner
My guess is that you will be back. Lazslo, while the samples look great, is still based upon Flash player 5 (Beta 3 of Lazslo is player 6). It is one of those things where you have to wonder - how does Lazslo know what to extend of the Flash Player. The people that are contributing to it make

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Sjors Pals
Well i think that when MM keeps their technology for their selves that the chance is big that someone takes legal action. And there is an other danger, if MM keeps the Cards for their selves the chance is big, someone else says: lets make our own cards and spread them for free. Jeff

[flexcoders] charts / stacked view

2005-03-31 Thread christoph larch
hi there, when i try to view a column chart in stacked view with values smaller than 1 flex isn't able to display them - there's always a gap to 100% bug or feature? thx, chris we make IT hauser+larch gmbH josef abentung weg 48 a-6091 goetzens phone +43 / 5234 / 336 84 fax +43 / 5234 / 336 85

RE: [flexcoders] charts / stacked view

2005-03-31 Thread Ely Greenfield
Hi Chris...let me see if I can clarify the issue. You have a 100% stacked chart with values between 0 and 1, and it's not correctly rendering all the way up to the top of the chart? Are any of the values negative? Thanks. Ely. -Original Message- From: christoph larch [mailto:[EMAIL

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Darron J. Schall
Jeff Steiner wrote: Lazslo, while the samples look great, is still based upon Flash player 5 (Beta 3 of Lazslo is player 6). It is one of those things where you have to wonder - how does Lazslo know what to extend of the Flash Player. The people that are contributing to it make guesses and try

RE: [flexcoders] charts / stacked view

2005-03-31 Thread christoph larch
noep, all are positive... 0.60 75.20 10.11 and so on the first value will not be displayed... At 18:57 31.03.2005, you wrote: Hi Chris...let me see if I can clarify the issue. You have a 100% stacked chart with values between 0 and 1, and it's not correctly rendering all the way up to the

RE: [flexcoders] charts / stacked view

2005-03-31 Thread Ely Greenfield
Hmmmyeah, sounds like a bug :( If the problem is really related to the first value being less than 1, you could try Multiplying all your values by 10. Since the vertical axis goes from 0-100%, it should have no effect on the labels. It _would_ have an effect on the datatips, but you

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
What about a 2cpu license? Please answer. Your 'starter kit' is overkill for us. If our price is based on a minimum 4cpu price, then this is no longer a joke at all. We will have to drop Flex and never look back. We will have wasted months of training and actual development time. This is

[flexcoders] making synchronous method calls ?

2005-03-31 Thread Doodi, Hari - BLS CTR
Hi, I have a situation where in I have to make function call in sequence (synchronous method calls). I am getting image file names along with product information by making RemoteObject call. I am making a function call on result event. Inside that function I am setting individual data to

[flexcoders] Centering Titles in Panels

2005-03-31 Thread Brett Hitzel
Hello Everyone, We are trying to center the text that appears in the title sections of Panels, to no avail. I have tried utilizing the 'titleStyleDeclaration' style property, but I am not sure that I am doing it right. I referenced a CSS class that was in my included stylesheet, and in

RE: [flexcoders] Cairngorm Question.

2005-03-31 Thread Ben Elmore
Title: Message The way Cairngorm current architects the ViewHelper is that itrequires eachViewHelper to register itself to the ViewLocator under a unique name. Therefore if you are attaching theview dynamically in a repeater and using the samevalue in the 'name' attributefor the

RE: [flexcoders] Centering Titles in Panels

2005-03-31 Thread Lin Lin
Brett, This seams to work for me. Can you try and let me know if it works for you? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; !-- To use stylesheet: -- mx:Style source=myStyleSheet.css/ mx:Panel styleName=myclass title=Panel header

RE: [flexcoders] making synchronous method calls ?

2005-03-31 Thread Abdul Qabiz
Hi Hari, I see your calling(sending values) reciever_lc.send(...) method before setting fnameArray array... See the first line of setValues() function, Remove it and then try. function setValues() { -- receiver_lc.send(scheduleViewer, rec_setFileName, fnameArray); ---

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Gordon Smith
I have never seen an API to the Flash player made readily available to the public. I'm on the Flex team, not the Flash team, but I think all the Flash ActionScript APIs are documented. In addition to Macromedia documentation, aren't there plenty of Flash books, ActionScript dictionaries, etc.?

RE: [flexcoders] making synchronous method calls ?

2005-03-31 Thread Doodi, Hari - BLS CTR
Thanks for the response I did try with statement receiver_lc.send(scheduleViewer, rec_setFileName, fnameArray); at the end of setvalues() function. I was trying different ideas to make it work and that is one of it. I do apologies for not correcting my tried code. Thanks! Hari -Original

RE: [flexcoders] output String from WebService

2005-03-31 Thread Tracy Spratt
Using resultFormat=xml, you do not need to use createXML, the result is already an XML document. You can use trace(result.toString()) to see the xmp string. Tracy -Original Message- From: Steiner, Jeff [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 30, 2005 7:07 PM To:

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Gordon Smith
I'm confused. Are you saying I'm a Bad Guy? All I did was point out that I think everything you need to program the Flash Player from either a Flex app or a Laszlo app is documented. This might make my manager mad, but I don't understand why it would make you mad. - Gordon -Original

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Lucian Beebe
To Matthew below, certainly this is not a joke. But where you have been working on something great, lets talk. I'll contact you off line. On Laszlo, I am not going to start a whole Flex vs Laszlo discussion here, but suffice it to say that there are a lot of benefits for Flash Player 7 *if* you

[flexcoders] Re: Centering Titles in Panels

2005-03-31 Thread Brett Hitzel
Worked perfectly! Thanks! -Brett --- In flexcoders@yahoogroups.com, Lin Lin [EMAIL PROTECTED] wrote: Brett, This seams to work for me. Can you try and let me know if it works for you? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; !-- To

[flexcoders] Proof of Concept - (help with Flex Setup)

2005-03-31 Thread Libby Chantel
I am writing a Flex proof of concept app that accesses existing Java programs on the back end. When we did our Flash app, the developers wrote the flash code on their local machines and when testing made their calls to the remote java server without deploying any flash code. I am having trouble

RE: [flexcoders] Custom AS2 Effects

2005-03-31 Thread Jason Szeto
Mike, Add listener.onEffectEnd(this); to the end of your playEffect function. This will tell the Sequence effect that the effect is finished playing. The Sequence effect sets itself as the listener of each of its child effects. Jason -Original Message- From: Mike Shaw

RE: [flexcoders] Proof of Concept - (help with Flex Setup)

2005-03-31 Thread Ben Elmore
This is possible and mirrors one of the environments I had to use in the past. In the mx:RemoteObject tag there is an attribute called 'endpoint' where you can point your mxml remote object calls to. Find the server name where flex is running and do 'servername:port\amfgateway' for java or the

RE: [flexcoders] making synchronous method calls ?

2005-03-31 Thread Abdul Qabiz
So your problem fixed or you still having it? -abdul -Original Message- From: Doodi, Hari - BLS CTR [mailto:[EMAIL PROTECTED] Sent: Friday, April 01, 2005 12:07 AM To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] making synchronous method calls ? Thanks for the response I

RE: [flexcoders] making synchronous method calls ?

2005-03-31 Thread Doodi, Hari - BLS CTR
Still have it. I tried diff ways but no success. I forgot to comment this one. Thanks! Hari -Original Message- From: Abdul Qabiz [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 2:35 PM To: flexcoders@yahoogroups.com; 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders]

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Pushkar Phatak
damn. either this is too good for an april fools joke, or as russel peters said, somebody gonna get-a-hurt real bad :) pushkar -- www.pushkar.net My World, Your View! Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
As I already said this is no joke to me or my department. -- Matthew On Thu, 31 Mar 2005 14:43:38 -0500, Pushkar Phatak [EMAIL PROTECTED] wrote: damn. either this is too good for an april fools joke, or as russel peters said, somebody gonna get-a-hurt real bad :) pushkar --

[flexcoders] Re: Flex 1.5 price

2005-03-31 Thread jacksodj
I have been dealing with Macromedia/allaire since 1997. And I have never once seen a price decrease. and in all of that time I want to say the typical price increase has been about 100%. Or if not a price increase a drop off in what you are getting.. 4 CPus now is only 2. (CFMX) 2 Cpus is

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Simon Fifield
My clients have also stretched themselves to purchase the 2cpu license, which cost more than theDual Processor server they purchased to match the spec. Now that the license for Flex is either 1 or 4 cpu does this mean that my clients are going to have to more than double the original

[flexcoders] Databinding to webservice strangeness...

2005-03-31 Thread jacksodj
I dont see where one of our developers posted this, but we have an extra bizzare error we are encountering when we databind text boxes to webservice arguments that call a remote CFC method. since only 25% of you according to the poll use CF for the data layer, the background that is helpful

[flexcoders] PrintJob()

2005-03-31 Thread Rich Tretola
I am trying to print an mlmx file at the same level as the one calling the printjob. Here is my code: public function testPrintJob():Void { var printJob:PrintJob = new PrintJob(); var help:Help = new Help(); mx.core.Application.alert(testProperty : + help.testProperty);

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Lucian Beebe
Maintenance will be calculated based on the CPUs or Quick Start price if you go that route. . I think thats pretty consistent with other software industry norms. Ill make you the same offer, Simon. Where you have serious projects running, lets talk directly and find a way to make this

RE: [flexcoders] making synchronous method calls ?

2005-03-31 Thread Doodi, Hari - BLS CTR
Hi Abdul, I am very sure that data is came back as an Array because I am able to set and see data on my screen and also I have showPrev() and showNext() method to navigate thru the array and I am seeing the data changing. Do you want me to send the mxml files? But only problem will be I am

RE: [flexcoders] Cairngorm Question.

2005-03-31 Thread Omar Ramos
Title: Message Yes I had tho of that idea ben. But was wondering what was the clean way to do it. Thanks for the reply's so far. Omar Ramos Itacon Corporation Technology Manager From: Ben Elmore [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 2:17 PMTo:

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Matthew Shirey
I am more than a little frustrated about this... why don't we discuss it right here publically? Why is there a pricing scheme that is private interview based? I just want to know: Is there a 1CPU price? If so, what is it? Is there a 2CPU price? If so, what is it? These are not difficult

[flexcoders] Re: Flex 1.5 price

2005-03-31 Thread mlaudrup1987
In case you don't find your company listed on NYSE then forget about Flex :)) It's sad, but true... Flex was successfully adopted by big financial companies and MM feels that can push the price a little bit higher to increase their revenue... and unfortunately make it more prohibitive for

RE: [flexcoders] Cairngorm Question.

2005-03-31 Thread Ben Elmore
Title: Message Well. My thought is 'Who would know what child needed the work done?' The view locator's need to have the view helper name be unique is so that it can locate the view. A command has to be 100% sure what view towork with to get the data to properly make the call out to the

RE: [flexcoders] Cairngorm Question.

2005-03-31 Thread Ben Elmore
Title: Message That is 'keeping the interdepancy between my view files as few as possible'. -Original Message-From: Ben Elmore [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 4:07 PMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Cairngorm Question.

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Simon Fifield
Hi Lucian, I will need to speak to my clients ( I can't remember if they purchased the Flex License at v1 or v1.5 ). I'm sure that there is an amicable agreement that can be reached - price increases are an ongoing problem for everyone around the world but particularly for the small

[flexcoders] Scrollbars in a VBox

2005-03-31 Thread Matthew Shirey
With all these pricing things up in the air its hard to think about coding, but I do have a bit of a problem I'm trying to work out. I have a layout that has multiple nested VBox components with a repeater on the inside. For my application this repeater is going to be repeating a custom

AW: [flexcoders] Flex 1.5 price

2005-03-31 Thread Benjamin Dobler
Why no open source Flex? I mean the swf format is open. The tools are their. Merging components, creating Actionscript components It`s all doable and there is nothing magical about flex. In fact I think that a flex like system is just the next logical step for flash development. All

RE: [flexcoders] CheckBox oddity

2005-03-31 Thread Gordon Smith
Title: Message Is the problem that the CheckBox's width is too large when it doesn't have a label? - Gordon -Original Message-From: Simon Fifield [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 12:28 PMTo: [EMAIL PROTECTED] ComSubject: [flexcoders] CheckBox

RE: [flexcoders] CheckBox oddity

2005-03-31 Thread Simon Fifield
Title: Message I tried putting just a single CheckBox on the UI with no label set. When you move your mouse to the right of the CheckBox you can see it highlight, clicking there checks/unchecks it. When you add some text to the label property you can see that this area is indeed where the

RE: [flexcoders] Flex 1.5 price

2005-03-31 Thread Lucian Beebe
The prices I gave below. They are $15,000 per CPU if you buy per CPU. If you want to get a package price on more than one CPU, we have the four CPU bundle called the Quick Start at $29,000. We don't have any 2-CPU pricing. Now having said that, where you are working on a Flex application that

RE: [flexcoders] CheckBox oddity

2005-03-31 Thread Joan Tan
Title: Message You are right, this is a bug. I believe there is a workaround, however. You can have mx:CheckBox label="" / instead of just mx:CheckBox / and you shouldn't have that problem. Thanks, Joan From: Simon Fifield [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005

RE: [flexcoders] CheckBox oddity

2005-03-31 Thread Abdul Qabiz
Hi, It seems to be an issue to meI will verify again and file it if its not filed already... Problem: Where you have a checkbox without label attribute, checkBox seems to take some default width and click on right (un)checks Checkbox. mx:CheckBox id=cb1 / Workaround: Add label

RE: [flexcoders] CheckBox oddity

2005-03-31 Thread Simon Fifield
Title: Message Joan, That works like a dream! Thank you, Simon Fifield -Original Message-From: Joan Tan [mailto:[EMAIL PROTECTED]Sent: 01 April 2005 00:46To: 'flexcoders@yahoogroups.com'Subject: RE: [flexcoders] CheckBox oddity You are right, this is a bug. I

Re: [flexcoders] Re: Flex 1.5 price

2005-03-31 Thread Scott Barnes
I have been dealing with Macromedia/allaire since 1997. And I have never once seen a price decrease. and in all of that time I want to say the typical price increase has been about 100%. Or if not a price increase a drop off in what you are getting.. 4 CPus now is only 2. (CFMX) 2 Cpus is

RE: [flexcoders] Re: Flex 1.5 price

2005-03-31 Thread Simon Fifield
Hey Scott, I love the disclaimer at the bottom of your mossyblog.com site: We own this crap (Any hacking, copying, spaming, etc will result in headbutts) All trademarks property of their owners. blah blah.. . We also reserve the right to use poor spelling, terrible gramma and

[flexcoders] Remote object mapping properties

2005-03-31 Thread Jeff Krueger
Sorry if this is an obvious one, but I cant find in any documentation that confirms what I am finding. My question is does the variable in the actionScript class have to be the same name as the variable in the java class that it is mapping to. From what I am seeing it does. Can anyone

Re: [flexcoders] Open Source Flex? (was: pricing)

2005-03-31 Thread John Dowdell
Benjamin Dobler wrote: Why no open source Flex? I mean the swf format is open. The tools are their. Merging components, creating Actionscript components It`s all doable and there is nothing magical about flex. That's true. It's not a trivial undertaking, but it's certainly true. One of the

Re: [flexcoders] Re: Flex 1.5 price

2005-03-31 Thread Scott Barnes
:) its what i do best.. ramble... i am so ready for politics i swear... On Fri, 1 Apr 2005 01:12:00 +0100, Simon Fifield [EMAIL PROTECTED] wrote: Hey Scott, I love the disclaimer at the bottom of your mossyblog.com site: We own this crap (Any hacking, copying, spaming, etc

Re: [flexcoders] Open Source Flex? (was: pricing)

2005-03-31 Thread Scott Barnes
Oh and then theres that small little umm requirement time. I agree, I remember back in the day i stupidly had this idea of using XML and Flash 6 together to describe my UI... Libby then invited me to this product called Royale and said check that out... it blew my mind as to how damn

RE: [flexcoders] Flex 1.5 price - A Real Example of a Nearly Lost Sale

2005-03-31 Thread Lucian Beebe
The price for maintenance is based on the price you paid, not any new prices for new packaging that might be in place at a future date. Lucian -Original Message- From: Dirk Eismann [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 7:00 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] Using Components in Flash

2005-03-31 Thread Scott Barnes
It should rever to the this scope by default. I'm not sure where Ketan was going with where this rating - to me it sounded like it was done in flex but wanted to be used in flash or vice versa. Now i can see Ketan wants it done soley in Flash - which by looking at the code seems to hold up ok.

[flexcoders] Flex PDA?

2005-03-31 Thread Scott Barnes
I notice my boss runs around daily holding his PDA and i guess lives by it (needs to schedule in toilet breaks). I then looked around and noticed others here do the same, and it got me thinking that maybe instead of requesting meetings here internally for 5mins of their time, I can shoot off a

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Tarik Ahmed
Ya apparently I need to be sending out my resume to companies that can afford this stuff! :) Scott Barnes wrote: On Thu, 31 Mar 2005 09:02:32 +0200, Michel Jansen [EMAIL PROTECTED] wrote: An old dutch saying : Prices can only go down... Laszo/BackBase time?? heh

RE: [flexcoders] Ok, I am over defending the price hike now...her es why.

2005-03-31 Thread Lucian Beebe
A lot of stuff here, so let me hit the highlights. Scott, and dozens more of you, we love the fact that you love Flex. We have tens of thousands of hours of development time into this product and it's a wonderful validation of our work that you love it. And don't think we take that lightly.

RE: [flexcoders] Flex PDA?

2005-03-31 Thread Lucian Beebe
This is one part of your message where you asked for more definition on the futures for Flex. As you know, Macromedia has a substantial investment in getting Flash based interfaces to mobile devices. PDAs are a part of that, as are cell phones and other devices. We have made a series of

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Tarik Ahmed
Financially, obviously they ran their cost/market/etc analysis and came up with those numbers. I think one thing that is a risk play for MM is the intangible value of the critical mass when it comes to community knowledge. Eg there are so many Coldfusion guys that you have city level user

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Tarik Ahmed
I think a more serious contender is Xamlon. Previewing on April 6th. http://news.com.com/Software+turns+.Net+to+Flash/2100-1032_3-5647420.html Jeff Steiner wrote: My guess is that you will be back. Lazslo, while the samples look great, is still based upon Flash player 5 (Beta 3 of

Re: [flexcoders] Flex 1.5 price

2005-03-31 Thread Tarik Ahmed
I've owned MACR shares since Sept. It's one of my best performing stocks! JesterXL wrote: Forbes recommended that investors do so. - Original Message - From: "Michel Jansen" [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, March 31, 2005 2:26 PM Subject: Re:

[flexcoders] My Apologies

2005-03-31 Thread Mehdi, Agha
I have to set Out of the Office reply for a week while I am out. I apologize if it causes any inconvenience. I could unsubscribe from the list and re-subscribe but than I'd miss a lot. If anyone does have any objections then I will un-subscribe. :-( Thanks - Agha

[flexcoders] Flex license

2005-03-31 Thread Valy Sivec
Is flex license per web application? Can I deploy multiple apps using the same license number on the same server? Thanks a lot. Valy __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

RE: [flexcoders] Flex license

2005-03-31 Thread Lucian Beebe
The Flex license allows you to deploy as many Flex applications as you would like to run on the CPUs licensed. Lucian -Original Message- From: Valy Sivec [mailto:[EMAIL PROTECTED] Sent: Thursday, March 31, 2005 6:53 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex license

[flexcoders] Re: Flex 1.5 price

2005-03-31 Thread jacksodj
I have had Some Shares for much longer, its about break even for me. :( --- In flexcoders@yahoogroups.com, Tarik Ahmed [EMAIL PROTECTED] wrote: I've owned MACR shares since Sept. It's one of my best performing stocks! JesterXL wrote: Forbes recommended that investors do so.

Re: [flexcoders] Flex license

2005-03-31 Thread Scott Barnes
If you buy a 2CPU you can deploy on 2 Servers (each having 1 cpu) right? On Apr 1, 2005 12:56 PM, Lucian Beebe [EMAIL PROTECTED] wrote: The Flex license allows you to deploy as many Flex applications as you would like to run on the CPUs licensed. Lucian -Original Message-

Re: [flexcoders] Flex PDA?

2005-03-31 Thread Scott Barnes
heh i have a way of probing ...some say its annoying others say its refreshing..but mostly annoying. Thanks for confirming that :) That being said (cool! as it is) i'm wondering if anyones done much in that way. Like I have a bunch of workflows being built here via FLEX and I'd like to sort of

RE: [flexcoders] Custom AS2 Effects

2005-03-31 Thread Mike Shaw
Thanks Jason, that nailed it. I had played around with the event but not got it right. It's so obvious when I see your solution. Cheers Mike. From: Jason Szeto [mailto:[EMAIL PROTECTED] Sent: Friday, 1 April 2005 5:21 AMTo: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Custom

RE: [flexcoders] Flex PDA?

2005-03-31 Thread Abdul Qabiz
Nothing stops us making such small app in Flash, since an application running in PDA won't be large, I see Flash can be used to develop such apps... We should not forget, Flash(our old friend) is also around :) I want to push out an emergency request to the management via PDA/Mobile device

Re: [flexcoders] Flex PDA?

2005-03-31 Thread Scott Barnes
where do you start though? got any URLS for a kickstart or something along those lines. Atm the PDA's used are iPAQ ones *latest* not sure on exact model. They have talked about wireless lans being installed in the office etc... just thought i would be a big ol star if i turn around in a month

[flexcoders] Flex Pricing: Relax!

2005-03-31 Thread Vinny Timmermans
I have started many discussions on Flex pricing, and contributed heavily to each and every other previous Flex pricing post, because I was convinced that Flex pricing killed my and other Flex lovers' opportunities. The reason why I did not contribute until so far is simple. I have

RE: [flexcoders] Remote object mapping properties

2005-03-31 Thread Abdul Qabiz
Hi, My question is does the variable in the actionScript class have to be the same name as the variable in the java class that it is mapping to. YesIf you want to map an ActionScript class to a typed java class on server, you need to have following things: - Your ActionScript class

Re: [flexcoders] Flex license

2005-03-31 Thread Jeff Steiner
So then what is stopping an ISP from using that methodology? Jeff http://www.flexauthority.com - Original Message - From: Lucian Beebe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, March 31, 2005 6:56 PM Subject: RE: [flexcoders] Flex license The Flex license

[flexcoders] Flex on a PDA - Beta?

2005-03-31 Thread Jeff Steiner
Lucian, Any way I could be considered for a beta on that? Thanks, Jeff http://www.flexauthority.com 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] * Your

Re: [flexcoders] Flex license

2005-03-31 Thread Scott Barnes
Well your then reselling flex over and over in smaller pieces... in that your buying the server as you company X to use as many times as you want provided you don't resell that server to company Y unless authorized? On Apr 1, 2005 2:39 PM, Jeff Steiner [EMAIL PROTECTED] wrote: So then what

RE: [flexcoders] Flex PDA?

2005-03-31 Thread Abdul Qabiz
Hi Scott, You can find some tutorials on macromedia.compocket_pcdevnet.. http://www.macromedia.com/devnet/devices/pocket_pc.html Hope that helps... -abdul PS: Payrise, hmm, all the best for that -Original Message- From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Friday,

  1   2   >