[flexcoders] How to prevent style inheritance?

2008-09-03 Thread gerhard.schlager
Hello, I've developed a component which extends Panel (e.g. class MyPanel) to which I apply some styles. It works perfectly fine. However, when I put another Panel inside MyPanel it inherits some of the styles of its parent. That's quite annoying. I've uploaded a demo [1] which shows the problem.

Re: [flexcoders] Re: Checkbox in Datagrid . . . how?

2008-09-03 Thread bjorn
Yes, then you have to write code to get the data into a dataProvider for the Tree, for example creating model objects from the xml and adding them to an ArrayCollection. The checked state can for instance be a boolean inside the model. 2008/9/2 crumpelfungus [EMAIL PROTECTED] Add-on /

Re: [flexcoders] Flex and Scene7, Flexstore license, List etiquette

2008-09-03 Thread Johannes Nel
You got promoted! Adobe does compete not only through products but through their consulting services as well. The fact of the matter however is that even Adobe consulting helps all of us, directly and indirectly through the competition and subbing various people on this list, developing frameworks

[flexcoders] fullscreen vista and text measurement

2008-09-03 Thread Johannes Nel
Hi In an application I have, when I go fullscreen text measurement really breaks on Vista machines, we have tried several little tricks and discovered that a work around for this is resizing the app then to go fullscreen, not something I would consider an optimal release. Anybody else ever

[flexcoders] Bindable Classes

2008-09-03 Thread reflexactions
If I add the Bindable tag at a class level every property is wrapped in by a sort of proxy that then raises PropertyChange events as appropriate. This certainly saves a lot of time instead of having to go through a class and add Bindable to every single property. But... What if there is one

Re: [flexcoders] Bindable Classes

2008-09-03 Thread Josh McDonald
Nope. [Bindable] on a class doesn't wrap the class, it's just exactly the same as putting [Bindable] on every public field. -Josh On Wed, Sep 3, 2008 at 8:45 PM, reflexactions [EMAIL PROTECTED]wrote: If I add the Bindable tag at a class level every property is wrapped in by a sort of proxy

Re: [flexcoders] Flex and Scene7, Flexstore license, List etiquette

2008-09-03 Thread Josh McDonald
Cheers Matt. -Josh On Wed, Sep 3, 2008 at 3:26 AM, Matt Chotin [EMAIL PROTECTED] wrote: Hey guys, I guess this is what I get for going on vacation last week huh? Clearly most of you guys saw the threads last week (and even today frankly) that I think went well over the line of what should

[flexcoders] Swiz, the new Cairngorm ?

2008-09-03 Thread Tom Chiverton
Looking at http://code.google.com/p/swizframework/wiki/DefiningApplicationComponents etc it seems Swiz gives you all the best practise separation of code, supports the same good patterns as Cairngorm, but by using an autowiring approach removes a lot of the boilerplate code that Cairngorm

[flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Nik Derewianka
Hi All, Could anyone enlighten me as to how i should send and retrieve date and datetime data for inserting into MySQL via amfphp (1.9) with value objects ? If i edit the data directly in MySQL and then retrieve a vo with a Date datatype i get the following message: TypeError: Error

[flexcoders] Re: Bindable Classes

2008-09-03 Thread reflexactions
Ah ok.. I had thought the compiler generated a wrapper or sub class behind the scenes when you used the bindable tag... Well ok learn something new eahc day... tks --- In flexcoders@yahoogroups.com, Josh McDonald [EMAIL PROTECTED] wrote: Nope. [Bindable] on a class doesn't wrap the class,

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Josh McDonald
What it does is renames your variables, and creates get/set methods, but it doesn't wrap the whole class. So unfortunately it's either all-or-none with the class-level [Bindable] -Josh On Wed, Sep 3, 2008 at 9:01 PM, reflexactions [EMAIL PROTECTED]wrote: Ah ok.. I had thought the compiler

[flexcoders] FlexBuilder 3 WSDL imports incorrectly - TypeError: Cannot marshall type 'http://www.w3.org/2001/XMLSchema::Object' to simple content

2008-09-03 Thread vetricom vetricom
Hi All, I am using FlexBuilder 3 WSDL import wizard to generate AS web service client code to access SOAP web services implemented using java. It works fine some of the web service methods where I did not pass any parameters. However I created new web service method that takes a string as input

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
using custom events with your bindable metadata is not only best practice but allows you to decide which properties you want to refresh. [Bindable(myEvent)] i would recomend using this at all times. On Wed, Sep 3, 2008 at 1:04 PM, Josh McDonald [EMAIL PROTECTED] wrote: What it does is renames

[flexcoders] Re: Bindable Classes

2008-09-03 Thread reflexactions
But then you have to write all the event creation and dispatch, plus all the getter/setter. That might be fair enough if you have a handful of props but if this is a couple of data classes with says 100 props each thats quite a bit of typing when all you want is a couple of props not to fire

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
it does depend on the scale of your application. first off, to use custom events you do not need getters and setters, but it does depend on how you want to use it. my personal feeling around models are that they should always be generated, its such a waste of time to code 'em by hand. On Wed, Sep

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Josh McDonald
I'm fairly certain you do need get/set functions to use custom events. It might be a pain, but unfortunately it's when you have objects with many bindable fields that you're more likely to need the custom events (otherwise binding becomes very cpu-intensive). -Josh On Wed, Sep 3, 2008 at 9:30

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Nik Derewianka
On 03/09/2008, at 9:30 PM, Johannes Nel wrote: it does depend on the scale of your application. first off, to use custom events you do not need getters and setters, but it does depend on how you want to use it. my personal feeling around models are that they should always be generated,

[flexcoders] Strongly Typed to Geneic Classes using Remoting

2008-09-03 Thread reflexactions
Is there a way to automatically go from strongly typed client side to generic server side classes using Remoting without changing the Remoting config files. Like is there anyhting I can do with the RemoteClass tag. tks

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread shaun
reflexactions wrote: But then you have to write all the event creation and dispatch, plus all the getter/setter. That might be fair enough if you have a handful of props but if this is a couple of data classes with says 100 props each thats quite a bit of typing when all you want is a

[flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread kuntamayu
Hi Folks, There is nothing to hide about it. See, the thing is : I like to make a web application with Flex as well as its counter part desktop version in AIR. The application will be of like Flex Flip Book and it also offering some other features like slideshow, calender view, zoom In zoom Out

[flexcoders] Re: Differences between itemUpdated and setItemAt for ArrayCollections

2008-09-03 Thread Vijay Anand Mareddy
###itemUpdated notifies the view that an item has been updated. Flex says to the view ..you are stale now ...please update yourself with latest changes from the arraycollectionlike a view.refresh() ###SetItemAt is replacing the dataItem in the ArrayCollection. Like when u manually edit

[flexcoders] Deploy Flex Application

2008-09-03 Thread beczimm
So it is my first time of trying to deploy my flex app from localhost to an actual server. I know the process is supposed to be fairly simple in that you need to copy the swf and any other related files, etc. However, I get an error when I try to access the application from the server.[RPC Fault

[flexcoders] Re: Differences between itemUpdated and setItemAt for ArrayCollections

2008-09-03 Thread Vijay Anand Mareddy
###itemUpdated notifies the view that an item has been updated. Flex says to the view ..you are stale now ...please update yourself with latest changes from the arraycollectionlike a view.refresh() ###SetItemAt is replacing the dataItem in the ArrayCollection. Like when u manually edit

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
I'm fairly certain you do need get/set functions to use custom events. actually not. [Bindable(event)] public var lala:Type; and an ad hoc event being dispatched works well. if the property is being set on your model and you wish to dispatch a custom event, creating a setter is the way to do it,

[flexcoders] Flex via php.

2008-09-03 Thread nash.e2008
hi, my name is JIM, new to the FLEX. i am wishing if some of you guys can help me out here and plz help me out here. i have no idea how I can solve this problem the question is within communication from flex to php and i already succeed receiving value at PHP side although I can not

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Paul Andrews
- Original Message - From: kuntamayu [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, September 03, 2008 2:42 PM Subject: [flexcoders] Re: Want to build a SWF on the fly when someone requests it Hi Folks, There is nothing to hide about it. See, the thing is : I

Re: [flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Jason Reynolds
so new to both PHP and as3). Cheers, Nik __ Information from ESET NOD32 Antivirus, version of virus signature database 3411 (20080903) __ The message was checked by ESET NOD32 Antivirus. http://www.eset.com

Re: [flexcoders] Flex via php.

2008-09-03 Thread Michael Schmalle
Hi, It looks like you want to use AMFPHP and return AMF data serialized. If you can't use AMF, then you should return your data as xml (create xml representation of the array you created). Note you don't have to use xml but, you need some string, not a php array. In flex, you need to add an

[flexcoders] Re: Bindable Classes

2008-09-03 Thread reflexactions
Yeah but if u dont have a get/set how do you know the property changed and who will fires the event, or are you saying that Flex automatically creates and dispatches the event for you? tks --- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: I'm fairly certain you do need

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Daniel Freiman
I agree with Paul from a technological basis, but there is a strong business case for doing compilation on the fly and having the deliverable be a single file. People with lower technology aptitude/interest would consider a single file better/simpler and may use that as a significant factor on

[flexcoders] Re: Flex via php.

2008-09-03 Thread nash.e2008
Thank you for your tip. It would help me a lot. Ive heard about AMFPHP, but never have used it before. I will try using AMFPHP!

Re: [flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Nik Derewianka
On 04/09/2008, at 12:01 AM, Jason Reynolds wrote: Adobe has some date parsing methods in the as3corelib library -- http://code.google.com/p/as3corelib/ I suppose it depends on the format your storing the date, the way I've been handling it is using as3 to parse the date string that AMF

[flexcoders] Re: Issue with RemoteObject

2008-09-03 Thread valdhor
This thread may help: http://tech.groups.yahoo.com/group/flexcoders/message/120115 --- In flexcoders@yahoogroups.com, l_m_sylvester [EMAIL PROTECTED] wrote: Hey guys, I'm getting an annoying error with an all-AS3 application. I've setup WebOrb .NET as my remoting server, and configured

Re: [flexcoders] foreign keys in value objects

2008-09-03 Thread Douglas Knudsen
I suppose it depends. Bet you never heard that answer before! IMHO, if you are just displaying data in a DG or something, just use some XML and go for it. If you need to actually interact with the data, use the VOs in a architected model. Suppose your use case is that a user needs to add a

[flexcoders] Re: AMFPHP and date/datetime data from MySQL

2008-09-03 Thread roadchief
I struggled with this on another project. Now, this project uses Cairngorm, value objects, etc., so it's a bit different, but it might help. The value object looks as follows (snippet): public class UserVO implements IValueObject { private var _date_added:Date;

Re: [flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Sajid Hussain
Guys , I also need some help on this thing I m not getting exactly how to get this thing solved if is there any way to transform flex date objects to php through amfphp ,same as reverse it will be great right now I m storing date in php as dateandtime object and fetching as string into flex

Re: [flexcoders] AMFPHP and date/datetime data from MySQL

2008-09-03 Thread Sajid Hussain
Guys , I also need some help on this thing I m not getting exactly how to get this thing solved if is there any way to transform flex date objects to php through amfphp ,same as reverse it will be great right now I m storing date in php as dateandtime object and fetching as string into flex

[flexcoders] Re: Bindable Classes

2008-09-03 Thread jer_ela
Mike Labriola did a very good in depth presentation on how binding works at 360 Flex which was recorded and is available online. It runs about an hour and 20 minutes and is well worth the time if you want to understand how bindings work. Diving in the Data Binding Waters with Michael Labriola

[flexcoders] Re: How to prevent style inheritance?

2008-09-03 Thread Tim Hoff
Hi gerhard, Unfortunately, inheritance has a good side and a bad side. Just apply a seperate styleName to the child Panel, and you're done. -TH --- In flexcoders@yahoogroups.com, gerhard.schlager [EMAIL PROTECTED] wrote: Hello, I've developed a component which extends Panel (e.g. class

Re: [flexcoders] Re: Flex via php.

2008-09-03 Thread Nate Beck
I second AMFPHP, it works very well. It also has a great community surrounding it. Some of the Actionscript source code examples they have up there uses AMF0. Flex uses AMF3, so just make sure you're using AMF3 instead of AMF0. http://www.amfphp.org/ Cheers, Nate On Wed, Sep 3, 2008 at 7:27

Re: [flexcoders] Re: Flex via php.

2008-09-03 Thread dnk
On 3-Sep-08, at 7:27 AM, nash.e2008 wrote: Thank you for your tip. It would help me a lot. Ive heard about AMFPHP, but never have used it before. I will try using AMFPHP! A great simple example of using amfphp is included in the adobe php ria kit. Shows display and insertion of data. d

[flexcoders] Re: Deploy Flex Application

2008-09-03 Thread nathanpdaniel
I have no clue what you can do to actually fix the issue - but I can suggest doing the following: Put the debug version of the swf on your server. Then change your debug options to run at - http://yoursite.com (the web page serving your swf) - rather than C:\Documents\pathto.swf - or whatever

[flexcoders] large file upload

2008-09-03 Thread nathan king
I have posted a response to this thread (http://tech.groups.yahoo.com/group/flexcoders/message/60797) and would like to re-ask the question and I am not sure a complete answer was found. first off I understand that Adobe only supports uploads up to 100mb in size, I am attempting to push that 10x

Re: [flexcoders] Re: Deploy Flex Application

2008-09-03 Thread Sherif Abdou
Actually, That problem is a pain. Everytime it happens I write the solution down and forget about it. First thing you need to try is go to http://yoursite.com/flex2gateway If you don't get a blank page then something is wrong with your configuration. I am assuming you are using ColdFusion. Next

Re: [flexcoders] Re: Flex via php.

2008-09-03 Thread Nate Beck
I forgot to mention the other remoting solution that I've been playing with. http://www.themidnightcoders.com/weborb/php/ WebOrb also has a large slew of code generators that work really well. Cheers, Nate On Wed, Sep 3, 2008 at 8:14 AM, dnk [EMAIL PROTECTED] wrote: On 3-Sep-08, at 7:27 AM,

Re: [flexcoders] Re: Deploy Flex Application

2008-09-03 Thread Simon Bailey
If its ColdFusion your connecting to it can be a random pain sometimes getting the url correct. I have developed a mini HelloWorld application to keep hitting your server till you get the right string which may be of some assistance for you: http://www.nutrixinteractive.com/blog/?p=129

[flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread nathan king
I too am considering the automagic generation of a swf using flex/air. I am toying with the idea of using PHP on the server side (http://us3.php.net/manual/en/book.swf.php) to generate the swf and allow the user to download it. I am pretty sure this is something that FLEX can not do on it's own,

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Sherif Abdou
I don't know about much of this but Could you just use LiveCycle and Compile the Application on your server so each client gets a different version of the SWF? I know you get 2 options in Livecycle whehter to compile on server or on your computer. -- Sherif Abdou http://VadexFX.com

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Paul Andrews
If you are going the single swf route, here are some of the likely pitfalls: Debugging is going to be a PIA. Not only are you debugging a generated swf, you are debugging the process of generating that swf and trying to build an architecture for all eventualities. If there's a failure in any

[flexcoders] Validating more than one source with one validator

2008-09-03 Thread Joshua Partogi
Dear all, Can we use one validator to validate more than one source? mx:StringValidator id=labelVld source={nameEntry, labelEntry} required=true property=text / mx:Form mx:FormItem label={resourceManager.getString('Admin','name')} required=true

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread dnk
On 3-Sep-08, at 8:41 AM, nathan king wrote: I too am considering the automagic generation of a swf using flex/air. I am toying with the idea of using PHP on the server side (http://us3.php.net/manual/en/book.swf.php) to generate the swf and allow the user to download it. I am pretty sure

[flexcoders] ratings component

2008-09-03 Thread [p e r c e p t i c o n]
Hello all,can anyone tell me if there's a ratings component out there somewhere? thx percy

Re: [flexcoders] ratings component

2008-09-03 Thread Nate Beck
http://www.google.com/search?rls=en-usq=flex+rating+componentie=UTF-8oe=UTF-8 On Wed, Sep 3, 2008 at 8:56 AM, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: Hello all,can anyone tell me if there's a ratings component out there somewhere? thx percy

Re: [flexcoders] ratings component

2008-09-03 Thread Sherif Abdou
http://www.asfusion.com/blog/entry/flex-rating-component is this what we are talking about? -- Sherif Abdou http://VadexFX.com http://Sherifabdou.com - Original Message - From: [p e r c e p t i c o n] To: flexcoders@yahoogroups.com Sent: Wednesday, September 03, 2008 10:56

[flexcoders] Flex SDK 3.1 changes to WebServices breaking existing services...

2008-09-03 Thread Todd
Hello All, If have some existing web services that were broken when I upgraded to the 3.1 flex SDK. I believe it has to do with the SOAP Decoder. I needed to get the newest SDK because there were other fixes I was awaiting. I have an Actionscript type that I'm decoding through the

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
no you need to dispatch the event yourself. as i said in some cases a get/set pair is needed, but not always. my strategy is to have multiple events that updates multple properties dependent on which group changed. On Wed, Sep 3, 2008 at 4:15 PM, reflexactions [EMAIL PROTECTED]wrote: Yeah but

[flexcoders] Re: Bindable Classes

2008-09-03 Thread reflexactions
Of course if you have got some external routine that updates a bunch of props all in one go and then creates and dispatches the event the you can use variables but thats not the typical case and not really viable if we are talking about a class that maybe in a collection and/or bound to UI

Re: [flexcoders] ratings component

2008-09-03 Thread [p e r c e p t i c o n]
thank you sirs funny thing when i typed the very same thing in yesterday i got very cryptic results... ?? thanks much p On Wed, Sep 3, 2008 at 9:02 AM, Sherif Abdou [EMAIL PROTECTED] wrote: http://www.asfusion.com/blog/entry/flex-rating-component is this what we are talking about? --

[flexcoders] Re: Deploy Flex Application

2008-09-03 Thread beczimm
If I use the URL that the flex error is giving me that flex is trying to use to access the flex2gateway I get a Not Found error from the browser. But as soon as I try the URL that the flex error has along with the context path that is supposed to be there then I get the blank page which is good.

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Nate Beck
I agree with Paul here. Debugging would be a pain, however, I wouldn't count this out as impossible. Here's what I would do it: 1. Install mxmlc on my webserver (or offload to another server for scalability) 2. Write template MXML AS documents. 3. Have a set of configuration files,

[flexcoders] Scrollbar - add easing to the scrolled content

2008-09-03 Thread João
Hello, I have a scrollbar applied to the content of a Canvas (it's not a list control). Is it possible to easily add easing to the movement of the content being scrolled? Thanks, João Saleiro

Re: [flexcoders] Re: Deploy Flex Application

2008-09-03 Thread Sherif Abdou
I Guess maybe then you can try mappings, Try doing /mysite for Logical Path and for Directory Path give the path where mysite is stored so C:\etc..? If that does not work then Try putting all your files in root and Test out then we will move from there. -- Sherif Abdou http://VadexFX.com

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Johannes Nel
variables but thats not the typical case and not really viable if we are talking about a class that maybe in a collection and/or bound to UI input controls here i disagree. with complex views, charts and that kind of loving its best to invalidate in bunches. thats a good preso, understanding the

[flexcoders] Re: Deploy Flex Application

2008-09-03 Thread beczimm
I tried the mapping and the site is already in the root. So the mapping did not work either. I have even tried hard coding the context root into the services-config.xml where it is setting the path for the flex2gateway and it is still trying to use http://mysite.com/flex2gateway instead of the

[flexcoders] Re: Changing video sources in the middle of the... er.. stream

2008-09-03 Thread stephendricketts
Is there an example of a way to have a video display without using the VideoDisplay component? Maybe that would work here. sr --- In flexcoders@yahoogroups.com, Simon Bailey [EMAIL PROTECTED] wrote: Oh sorry didnt realise you were using VideoDisplay, sorry never use or used that

[flexcoders] Re: Deploy Flex Application

2008-09-03 Thread guillaumeracine
I got your error the first time i wanted to put my flex app in prod... I changed my service-config.xml correctly but i needed to do another thing : You have to change project options in the Eclipse IDE...the project was compiled with my localhost as server url... Change it, rebuild and drop it on

Re: [flexcoders] Scrollbar - add easing to the scrolled content

2008-09-03 Thread Michael Schmalle
Hi, Yes, I have done this and it actually works well. All you need to do is animate the horizontalScrollPosition and verticalScrollPosition properties of the Container. Mike On Wed, Sep 3, 2008 at 1:31 PM, João [EMAIL PROTECTED] wrote: Hello, I have a scrollbar applied to the content of

Re: [flexcoders] Scrollbar - add easing to the scrolled content

2008-09-03 Thread Michael Schmalle
Ops I miss read your question, you are asking about easing as the user moves the scroll button. You might be able to do some kind of a delta move calculation in relation to the time the user moves from point x to point y. This would mean you need to override the 2 properties I just mentioned.

[flexcoders] Re: Flex SDK 3.1 changes to WebServices breaking existing services...

2008-09-03 Thread Todd
The only real changes (those that aren't ASDoc comments to the core Flex code) I see in the the mx.rpc.soap package is in the SOAPArrayType.as. FYI, I was happily using the 3.0.676 framework (which was post 3.0 release). --- In flexcoders@yahoogroups.com, Todd [EMAIL PROTECTED] wrote: Hello

[flexcoders] BubbleSeries effect that leaves a trail

2008-09-03 Thread Pan Troglodytes
My boss has asked me if I can do a rather challenging series transition. I don't know if it's really even possible. Basically, on a bubble chart, i have an interpolation effect. So the bubbles move across the screen to their new positions. What he asked for is that they leave kind of a

RE: [flexcoders] Re: Deploy Flex Application

2008-09-03 Thread Tracy Spratt
I am not familiar with your particular environment, but I habitually pass full urls into my applications via flashvars in the html wrapper. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of beczimm Sent: Wednesday, September 03,

[flexcoders] Profile external SWF

2008-09-03 Thread markdemich
I need to profile my swf in the context of my site. Debugging works fine, but I can't figure out how to start the profiler and be able to navigate a few pages on my site before getting to my SWF. Does anyone know how to do this?

[flexcoders] printJob and callLater

2008-09-03 Thread markdemich
I have an application that produces a very large printout. The documentation in the printJob says that you have a 15 second time limit in between calls to PrintJob.addPage (this is what FlexPrintJob.addObject is calling). However, based on my tests it seems you have 60 seconds for the whole

[flexcoders] Re: Deploy Flex Application

2008-09-03 Thread beczimm
Thanks to everyone who gave me ideas, but I finally got it to work. What I did was I created a new project in Flex Builder that actually was connected to the server I wanted to deploy on (which the reason I don't develop this way is that fact that is takes forever for everything to load). Once I

Re: [flexcoders] BubbleSeries effect that leaves a trail

2008-09-03 Thread Johannes Nel
a wild stab.when the move occurs, take bitmap snapshots, alpha them out while the move effect is running and put the snapshots over the chart. this will of course be a nightmare if your axis values change. On Wed, Sep 3, 2008 at 8:26 PM, Pan Troglodytes [EMAIL PROTECTED]wrote: My boss has

[flexcoders] FileReference.upload() on FireFox not firing uploadCompleteData event

2008-09-03 Thread Battershall, Jeff
That about says it all. I've got an https post going with a file upload and I'm listening for uploadCompleteData to retrieve the data from the response - but the event isn't firing on FireFox. IE is fine. I don't have any issues with this on IIS, but on Apache, I'm not getting the event back

[flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
If I have a Menu pop up or a modal window pop up and the browser is in full mode, the icons disappear by moving to the right about 100px. I can't figure out a way to fix this problem. screencast: http://www.screencast.com/users/RyanGravener/folders/Jing/media/2a63fab9-7c2f-4b52-8094-f5bc6423a46b

[flexcoders] Re: BubbleSeries effect that leaves a trail

2008-09-03 Thread Tim Hoff
That's what I'd do: use addChildAt() to a CartesianDataCanvas; used as a backgroundElement. Probably easier to get to the displayObject if you use a custom chart item renderer; and listen for the move effect. -TH --- In flexcoders@yahoogroups.com, Johannes Nel [EMAIL PROTECTED] wrote: a wild

[flexcoders] Re: large file upload

2008-09-03 Thread nathan king
UPDATE - after testing, it seems this is a flash /mac issue. I have tested on one PC with no issues. Flex/AS3 seems to post normally just as a HTML form would do. Can anyone else confirm this issue? -Nathan --- In flexcoders@yahoogroups.com, nathan king [EMAIL PROTECTED] wrote: I have posted a

[flexcoders] How do I create a project just for a module in FlexBuilder?

2008-09-03 Thread sdelapdmi
I'm try to create a project that only contains a module. It should not be a swc. It should not contain an application. How would I do this in FlexBuilder. It seems to not have the concept of a module project.

Re: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread anuj sharma
Hi Guys So is there anyone in the list that can help me in achieving this? This problem is burning me out now and I need a good head start to achieve this. This is my first project of this kind. Earlier i developed simple prototypes using basic event programming. I need you genius guys's guidance

Re: [flexcoders] Re: Want to build a SWF on the fly when someone requests it

2008-09-03 Thread Paul Andrews
Nate, You'll also need a Flex front end to interact with the user - so they can choose appropriate options and specify assets that will be used, then upload assets, etc. The front end would then instruct the server side to build the swf from the assets and configuration that the user has

RE: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread Alex Harui
Can everything be a mini-window using FlexMDI? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj sharma Sent: Wednesday, September 03, 2008 1:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Need Help and Guidance desperately Hi Guys So is there anyone

RE: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Alex Harui
What kind of code positions the icons? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Gravener Sent: Wednesday, September 03, 2008 1:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Components are disappearing from the screen on popups If I have a Menu

RE: [flexcoders] printJob and callLater

2008-09-03 Thread Alex Harui
Yeah, due to a bug, you can't print over multiple frames. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markdemich Sent: Wednesday, September 03, 2008 12:46 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] printJob and callLater I have an application that

RE: [flexcoders] Profile external SWF

2008-09-03 Thread Alex Harui
Profile perspective, Profile/Profile External Application? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markdemich Sent: Wednesday, September 03, 2008 12:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Profile external SWF I need to profile my swf in the

Re: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
It is just mxml. Correction: When ever firefox has scrollbars then the positioning works fine. On Wed, Sep 3, 2008 at 5:19 PM, Alex Harui [EMAIL PROTECTED] wrote: What kind of code positions the icons? *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ryan

RE: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Alex Harui
And what might that MXML look like? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Gravener Sent: Wednesday, September 03, 2008 2:26 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Components are disappearing from the screen on popups It is just mxml.

Re: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread anuj sharma
Hi Alex I am not sure i understand that. Basically I am dragging images from one container which is HBOX( because i need scroller facility too) and dropping them in another container which is Tile. The user should be able to resize the dropped images as shown in the layout and the rest of the

Re: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Ryan Gravener
http://eugeneciurana.com/pastebin/pastebin.php?show=33170 On Wed, Sep 3, 2008 at 5:29 PM, Alex Harui [EMAIL PROTECTED] wrote: And what might that MXML look like? *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Ryan Gravener *Sent:* Wednesday, September 03,

Re: [flexcomponents] RE: [flexcoders] Re: Scale to fit, revisited

2008-09-03 Thread Richard Rodseth
Sorry folks. One more time with attachment renamed to foil the filters. On Wed, Sep 3, 2008 at 10:28 AM, Richard Rodseth [EMAIL PROTECTED] wrote: Cross-posting to flexcoders... On Wed, Sep 3, 2008 at 9:34 AM, Richard Rodseth [EMAIL PROTECTED]wrote: On Tue, Sep 2, 2008 at 9:51 PM, Alex

Re: [flexcoders] OutOfMemoryError when compiling my app with Ant

2008-09-03 Thread Sebastien ARBOGAST
None of these options worked. I still don't understand why Ant is having those memory issues while Eclipse builds my project like a charm and in no time. 2008/9/1 ivo [EMAIL PROTECTED] You might also need to set the Ant memory options

[flexcoders] Detecting new flash version without a new browser instance

2008-09-03 Thread whatabrain
The flash installer (playerProductInstall.swf) tries to reload the container page in a new Explorer window when the installation is complete. Today, I found out why they do this, and I was wondering if anyone knows of a work-around... My first idea was this: If a new version is required, pop

RE: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread Alex Harui
OK, FlexMDI, probably won't do it for you. You want some organization of the images. Why didn't FlowBox work for you? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj sharma Sent: Wednesday, September 03, 2008 2:31 PM To: flexcoders@yahoogroups.com Subject: Re:

Re: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread anuj sharma
Can I put my resizeable images in the FlowBox and upon resizing will the rest of the images be arranged of its own. I was not sure if FlowBox can take care of resizing the images.If that's the case i will try that. I will definitely keep you posted about that. Thanks Anuj On Wed, Sep 3, 2008 at

Re: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread Doug McCune
His layout is really difficult. Basically he wants images to be smart enough to size any which way to fit around each other. If you take a look at the word doc he attached the second mockup shows the problem. Basically he doesn't want to restrict to rows or columns, and wants items to be able to

RE: [flexcoders] Components are disappearing from the screen on popups

2008-09-03 Thread Alex Harui
Can you tell if the icons are moving or the whole control bar is moving? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ryan Gravener Sent: Wednesday, September 03, 2008 2:35 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Components are disappearing from the

RE: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread Alex Harui
I've never used it, but in searching for it I saw discussions of how to get it to re-layout From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of anuj sharma Sent: Wednesday, September 03, 2008 2:54 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Need Help and

RE: [flexcoders] Need Help and Guidance desperately

2008-09-03 Thread Alex Harui
OK, I haven't really been following closely. If he's desperate, maybe he'll be more restrictive so he can get Flow to work. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug McCune Sent: Wednesday, September 03, 2008 2:55 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] Re: Bindable Classes

2008-09-03 Thread Josh McDonald
Right, now I see what you're saying. I thought you were saying that Flex will do what it normally does, only using your custom event instead of propertychange :) On Thu, Sep 4, 2008 at 2:22 AM, Johannes Nel [EMAIL PROTECTED] wrote: no you need to dispatch the event yourself. as i said in some

  1   2   >