Re: [flexcoders] Re: Why does this effect not work?

2005-12-10 Thread Ralf Rottmann
Title: Re: [flexcoders] Re: Why does this effect not work? Jester, I do use this.lbl where lbl is the id'ed Label. Still does not work... I never access _ properties. My private own created vars with local scope all start with _ ! So, do you know why my initital code does not work?

Re: [flexcoders] Re: Why does this effect not work?

2005-12-10 Thread Ralf Rottmann
Title: Re: [flexcoders] Re: Why does this effect not work? Ups, thought this was Jesters post. Sorry for confusion... -Original Message- From: flexcoders@yahoogroups.com flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com flexcoders@yahoogroups.com Sent: Sat Dec 10

Re: [flexcoders] Why does this effect not work?

2005-12-10 Thread Ralf Rottmann
Title: Re: [flexcoders] Why does this effect not work? As to your guess with Device Fonts and effects, the thing is that using an mx:Fade .../ on a Label's show/hideEffect attribute does work. So it must be anything with the code... I really want to got this solved because I wanna make

[flexcoders] Re: getURL and 's

2005-12-10 Thread Greg Morphis
nevermind, I got it On 12/9/05, Greg Morphis [EMAIL PROTECTED] wrote: getURL() doesnt like I keep getting The reference to entity date must end with the ';' delimiter. So how do you get around this? Here's my code mx:Button label=Print Weekly click=getURL('printWS.jsp?location=' +

[flexcoders] Pure AS3 button application (Flex 2)

2005-12-10 Thread zlayabuka
I wonder if there any chance to compile in Flex 2 a pure ActiveScript 3 application with a minimal GUI, say with only one button, and with zero mxml. Tried tons of variants like: --- package { import flash.display.MovieClip;

RE: [flexcoders] Comparing complex objects

2005-12-10 Thread Peter Farland
Keep a list of known objects in an Array as you loop through comparing Object o1 with Object o2: private var known:Array = []; Then as you loop over complex objects, check whether you have seen the first object (well, the one that you use to do the deep comparison)before in which case you

[flexcoders] Web Service call failing

2005-12-10 Thread Dimitrios Gianninas
Hi, I've called web services before in Flex, however this is the first time I am calling one that accepts a single document object as a parameter. Everytime the call is made, it fails with the message: Parameter userSettings does not exists! Now, I've double checked the web service to

[flexcoders] Re: passing Map in remote object

2005-12-10 Thread Darin Kohles
Encounter this often in DOM JS coding. I would just add to Matt's code: for (var key:String in obj){ trace(var: +var+ | Obj[var]: +String(obj[var])); Alert.show(var: +var+ | Obj[var]: +String(obj[var])); } Do somthing like that and you'll be able to know which object/property you want to

[flexcoders] in Flex 1.5, how can I do a page such as asp.net - on pageload?

2005-12-10 Thread endofadam228
in Flex 1.5, how can I do a page such as asp.net - on pageload? I wanna do a .mxml page which can be ordered to do something when the .mxml page was loaded. Any function or listener can function such as asp.net - on pageload? Yahoo! Groups Sponsor

[flexcoders] Re: Pure AS3 button application (Flex 2)

2005-12-10 Thread Darin Kohles
Try /* */ and // on the auto-generated code. When you hit something that is required you'll know it. Unfortunatly, I end up doing this when I add too much at once, thinking that everything is supported. Good Luck --- In flexcoders@yahoogroups.com, zlayabuka [EMAIL PROTECTED] wrote: I wonder

RE: [flexcoders] in Flex 1.5, how can I do a page such as asp.net - on pageload?

2005-12-10 Thread Rob Rusher
You are interested in the system events that are fired with each component. initialize and creationComplete are the two major events you would be interested in. Rob Rusher RIA Consultant Macromedia Certified Flex Instructor e:[EMAIL PROTECTED] c:303.885.7044 im:robrusher -Original

Re: [flexcoders] Re: Why does this effect not work?

2005-12-10 Thread JesterXL
Haha, what the heck, Moe's code? - Original Message - From: Darin Kohles [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, December 10, 2005 3:15 AM Subject: [flexcoders] Re: Why does this effect not work? Transed lots'a (of) code from many plats (platforms) ((and it

Re: [flexcoders] Why does this effect not work?

2005-12-10 Thread JesterXL
Title: Re: [flexcoders] Why does this effect not work? mx.controls.Label is a glorified wrapper for TextField. TextField is the basic, intrinsic GUI object for a TextField in Flash. Label ensures it's only 1 line, doesn't word-wrap, and has a nice API compared to the TextField. It does

Re: [flexcoders] Why does this effect not work?

2005-12-10 Thread JesterXL
Title: Re: [flexcoders] Why does this effect not work? Here's an example of Dissolve working in Flex 2: ?xml version="1.0" encoding="utf-8"? mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*" creationComplete="initApp()" mx:Script ![CDATA[ import

Re: [flexcoders] Why does this effect not work?

2005-12-10 Thread JesterXL
Title: Re: [flexcoders] Why does this effect not work? AND, here's an example that gets fade to work by embedding the font: ?xml version="1.0" encoding="utf-8"? mx:Application xmlns:mx="http://www.macromedia.com/2005/mxml" xmlns="*" creationComplete="initApp()" mx:Script ![CDATA[

[flexcoders] Re: in Flex 1.5, how can I do a page such as asp.net - on pageload?

2005-12-10 Thread endofadam228
Thank you very much! Your answer is very nice, it's a very very big help, thx a lot! I love here so much :-3 --- In flexcoders@yahoogroups.com, Rob Rusher [EMAIL PROTECTED] wrote: You are interested in the system events that are fired with each component. initialize and creationComplete are

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
I couldn't find a way to turn on classloader tracing (at least I didn't see anything in the weblogic 8.1 docs), however I think the problem may be in the setup. My fop.jar, batik.jar and other supporting files (i.e. avalon-framework-cvs*.jar) are in the WEB-INF/lib directory of the app server.

RE: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Dimitrios Gianninas
Why do you have fop.jar in your WEB-INF/lib folder? Do you need it for your app, is that it? So you have a newer version? Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaime BermudezSent:

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
Um, it wasn't part of my app server. I tried searching for it in the directory, but it wasn't there. I'm guessing that whomever implemented reporting on my team (I'm working w/ 12 other developers) downloaded the jar and imported it into the app. On 12/10/05, Dimitrios Gianninas [EMAIL

RE: Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Dimitrios Gianninas
Perhaps you should check with the rest of your team then, maybe you don't need it, and thus can remove it and solve your problems. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jaime

Re: Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
Don't need what - fop.jar? I definitely need the jar to be able to to a fop transformation on a java servlet... not sure what you're getting at. On 12/10/05, Dimitrios Gianninas [EMAIL PROTECTED] wrote: Perhaps you should check with the rest of your team then, maybe you don't need it, and thus

RE: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Carson Hager
I would definitely load those at the web app level. I tend to load most everything at the web app level to avoid integration issues just like the one youre dealing with right now. When you say fop.jar is in web-inf, is it in the server web-inf ( shared for all web apps ) or the web apps

RE: [flexcoders] Re: Unable to retrieve data via HTTPService over https in *IE*.

2005-12-10 Thread Carson Hager
Colin, Dave is spot on with his recommendation. IE is particularly bad about caching content even when it's not supposed to such as within https sessions. Use thse cache headers that Dave specified and IE will stop caching. I have found that I only need the following but Dave's suggested

RE: [flexcoders] Web Service call failing

2005-12-10 Thread Carson Hager
Have you compared the payloads of the Java client and the Flex client using something like tcptunnel from Apache SOAP? Thats the first thing I would do. I can tell you from experience that Flexs handling of complex objects with web services using anything other than rpc/encoded is

RE: [flexcoders] Web Service call failing

2005-12-10 Thread Dimitrios Gianninas
Its is doc/lit :) I worked around it for now. But it would be nice for it to work, if indeed doc/lit is broken. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson HagerSent: Saturday, December

RE: [flexcoders] Web Service call failing

2005-12-10 Thread Carson Hager
It definitely is. We dealt with MM support on this quite a while ago and it was confirmed that complex types simply dont work with doc/lit. Its a real shame because doc/lit is how web services are built in the real world. Rpc/encoded was a massive failure in terms of interop. We assume

Re: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Jaime Bermudez
I didn't know the server had a web-inf... the only web-inf I see is in my deployed war directory. Just to clarify, I deploy an EAR that has separate ejb and war deployments. The only web-inf directory I see is under user_projects - domain - mydomain - applications - {myapp} - {war}. Where

[flexcoders] Re: URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Dave Wolf
After like ten years of this, I gotta tell you I'm never amazed at how big a PITA class loaders can be in general, and how incredibly ugly they are in server environments. I am with Carson. I would split the Flex portion of this into a different web app. BEA should suppport SSO across web-apps

RE: [flexcoders] Re: URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Carson Hager
I think he mentioned a while ago in this thread that the Flex needs the newer version for css related work. C Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PROTECTED] Office: 866-CYNERGY Mobile: 1.703.489.6466

[flexcoders] Re: URGENT Problem on Flex installed on BEA WebLogic

2005-12-10 Thread Dave Wolf
I want to do a little further explaination here too. Its not an issue that there is a different version of fop.jar. Even if the jars were 100% identical this issue would occur. Class loaders are tricky little buggers. For instance // loaded by loader 1 String foo = bar; // loaded by loader