Re: [flexcoders] Playing back a SWF with Flex

2006-08-31 Thread Abdul Qabiz
Can you try using LocalConnection ? Not sure, just thought..-abdulOn 8/31/06, mitchgrasso [EMAIL PROTECTED] wrote: Although the docs would lead me to believe this isn't possible, I wanted to confirm whether you can dynamically load a SWF animation created in

RE: [flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread Tracy Spratt
I have an sample zip file that uses HTTPService to retrieve and save an xml file via a JSP page. I will send it to you directly. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mthielman11 Sent: Wednesday, August 30, 2006 8:06 PM To:

[flexcoders] Re: Custom scrolling with TileList

2006-08-31 Thread qnotemedia
Still fudging my way through the Flex2 reference...here's another possibile method to do this? mx:Sequence id=scrollDown mx:AnimateProperty property=verticalScrollPosition fromValue=1 toValue={maxVerticalScrollPosition} duration=1000 / /mx:Sequence ...which I can bind from

[flexcoders] Re: Is there a simple Cairngorm 2 walkthrough out there?

2006-08-31 Thread e baggg
http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_1.cfm Get your own web address for just $1.99/1st yr. We'll help. Yahoo! Small Business. __._,_.___ -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

RE: [flexcoders] Re: Anyone actually able to save data from flex

2006-08-31 Thread Tracy Spratt
I think the problem is as someone else noted, that HTTPService needs a string, and you are trying to pass it an object. Note that in Mike Collins example he uses toXMLString(). I use string in the example I sent you directly. Also, is your server side app getting the querystring

[flexcoders] Re: Cairngorm / Hibernate Best Practices

2006-08-31 Thread e_baggg
Flex can't access your Spring Beans directly. Similar to SpringWeb how you set up Controllers which map to a URL pattern, your Facade (JavaPojo) which have the methods which your AS delegate will call. There is a good example with source code here:

Re: [flexcoders] Playing back a SWF with Flex

2006-08-31 Thread juan sanchez
check this out:http://www.bridel.org/flex/example/swfimport/swfloadasdemo.htmli think you need to get the as3 preview from adobe labs in order to do this.On Aug 31, 2006, at 12:51 PM, Abdul Qabiz wrote:Can you try using LocalConnection ? Not sure, just thought..-abdulOn 8/31/06, mitchgrasso

Re: [flexcoders] Re: Is there a simple Cairngorm 2 walkthrough out there?

2006-08-31 Thread j . stramel
I think this is exactly what I am looking for. Thank you. Quoting e baggg [EMAIL PROTECTED]: http://weblogs.macromedia.com/auhlmann/archives/2006/07/cairngorm_2_for_1.cfm - Get your own web address for just $1.99/1st yr. We'll

RE: [flexcoders] Problems calling a RemoteObject within a loop

2006-08-31 Thread Tracy Spratt
Are you certain that is really what is happening? I dont do much (any) RemoteObject but I do a lot of HTTPService calls in loops and I absolutely depend on getting either a result or a fault for each call. Are you using the ACT pattern with the AsyncToken to track your calls? This

RE: [flexcoders] how to call a method in a custom mxml component

2006-08-31 Thread Tracy Spratt
If you give your component an id when you instantiate it, you can use that id as a reference into the components public members: In mxmk: MyComponent id=mycomp / In AS: mycomp.init(); Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Tile List Multiple Selection Drag bug.

2006-08-31 Thread Omar Ramos
Hi Guys,Does anyone know if this bug has been already fixed by someone? When you select multiple selection and dragEnabled to true and try to select multiple items and drag them the drag offset gets all screwed up. Anyone got a workaround? Omar __._,_.___ -- Flexcoders Mailing List FAQ:

[flexcoders] Using ASDoc

2006-08-31 Thread Dimitrios Gianninas
Using ASDoc for the first time, here is my ant task: target name="asdoc" property name="flex2.home" value="C:/dev/libraries/fxcore/asdoc"/ java classname="flex2.tools.ASDoc" fork="true" classpath pathelement location="${flex2.home}/asdoc/hotfix/flex_asdoc_hotfix.jar"/ pathelement

[flexcoders] Object oriented / design pattern / application design books?

2006-08-31 Thread tddclare
I've seen the light and am sold on the object oriented world. I'm smart enough about it to sound smart and do some good things, but still dumb enough not to know the right way to do things or the best way to apprach the problem. I'm confortable working with Flex, controls, data, components, etc.

[flexcoders] How to load an Image dynamically as for icon (of type Class)??

2006-08-31 Thread e_baggg
I have an application that has a popup window that users will popup very rarely. This popup window has a mx:List with a dozen different icons for each row in the List. For this reason I do not want to embed the images, but rather, load them at runtime when the wndow is popped. I am having

[flexcoders] Re: Configuring Flex 2 Data Services sample apps with full Jrun

2006-08-31 Thread jorgejuanhernand
If you try the FDS install with the embedded JRun server, the samples should work right after starting the server: 1. C:\fds2_final\jrun4\bin\startJRun.bat 2. Browse http://localhost:8700/ If you had JRun already, and installed the 3 war files (flex, flex-admin and samples), make sure you copied

Re: [flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-31 Thread Impudent1
Thanks for sharing, I am currently trying to get my head around extending videodisplay as well, but for my needs I need to pull the metadata as well as be able to add/remove cuepoints on the fly. I was was going about it by learning how to extend an existing component. You mentioned copying

[flexcoders] Re: Object oriented / design pattern / application design books?

2006-08-31 Thread ben.clinkinbeard
Head First Design Patterns is awesome; a must have for learning patterns. The examples are in Java but if you know AS well enough they're easy to understand. (I've never written a line of Java in my life.) HTH, Ben --- In flexcoders@yahoogroups.com, tddclare [EMAIL PROTECTED] wrote: I've seen

RE: [flexcoders] Using ASDoc

2006-08-31 Thread Brian Deitte
That class is in flex.jar. You need to include all the jars in the flex2.home/lib directory. So replace the second pathelement in your classpath with this: fileset dir="${flex2.home}/lib" includes="*.jar"/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Datagrid from columns to row

2006-08-31 Thread Igor Costa
Hi folksSorry but I couldn't find in the list archive if someone else already had asked.So, here's my problemI have a datagrid component in my application that it's using a dataProvider from a CF query. And populate and create my pre existing columns with data. But I'd like instead of getting

RE: [flexcoders] using dissolve effect in a transition

2006-08-31 Thread Joan Lafferty
Artur, For using Dissolve with a Panel or TitleWindow, you have to specify the targetArea for your Dissolve effect. Here is an example: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml width=100% height=100% currentState=Register

[flexcoders] DataGrid column size (bug?)

2006-08-31 Thread Mike Nimer
In the example below I'm hiding/showingcolumns when you switch between states. The problem is every time I switch between the states the columns that are hidden shrink a little more each time the visibility is turned back on. Anyone know how to get the dataGrid to stop resizing the columns,

[flexcoders] Re: Unable to get trace to work...

2006-08-31 Thread Kyle
Hi Deepa, I went step by step through the entire process again, as well as trying a few other methods and am still unable to get any tracing to work in flex 2. Has anyone been able to get trace statements to output to the console window? If so, do you have any pointers? Thanks, Kyle --

RE: [flexcoders] Re: Unable to get trace to work...

2006-08-31 Thread Tracy Spratt
Sure, my setup worked from the beginning. But I already was using tracing in 1.5, so my mm.cfg was already set up. Are you sure you have the debug player installed and have configured Flex Builder to use the browser that has the debug player installed? Visit this site to verify

RE: [flexcoders] Re: Unable to get trace to work...

2006-08-31 Thread Ted Patrick
Make sure you run the SWF in DEBUG in Flex Builder. I press the run button all the time and expect trace statements to work. Tracing only works when you run in debug mode. Ted Patrick Flex Evangelist Adobe Systems Incorporated From: flexcoders@yahoogroups.com

[flexcoders] Do RSL's need code changes if precompiled (mxmlc) versus just in time?

2006-08-31 Thread Eric Raymond
We use the just in time compiler during development and precompiled swf (mxmlc) for production. As we move to using RSL's, it looks like we may need to change source files depending on how/when we compile Flex. If we use the just in time compiler, our code would need to change if we use mxmlc.

[flexcoders] buttonMode and useHandCursor on a Label doesn't work...

2006-08-31 Thread [EMAIL PROTECTED]
Hi guys, I want a Label to show a hand cursor when the mouse is over the label. The following approach doesn't work, the click handler is executed though and works fine. But the mouse cursor doesn't change at all. mx:Label id=myLabel text=blabla click=myClickHandler() buttonMode=true

RE: [flexcoders] buttonMode and useHandCursor on a Label doesn't work...

2006-08-31 Thread Deepa Subramaniam
Set the mouseChildren property to false on the Label. mx:Label id=myLabel text=blabla click=myClickHandler() buttonMode=true useHandCursor=true mouseChildren=false/ -deepa -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent:

RE: [flexcoders] Re: Object oriented / design pattern / application design books?

2006-08-31 Thread Deepa Subramaniam
+1 for Head First Design Patterns. The methodology with which the descriptions and examples are laid out really drill each pattern into your memory. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent: Thursday, August 31, 2006 2:02

RE: [flexcoders] Using ASDoc

2006-08-31 Thread Dimitrios Gianninas
Thanks Brian, but I goofed, I installed in the wrong folder, found it out like 5 mins after I send the email. Its all working and very cool. I also like how it barfs on un-used imports, it helped me clean certain things out :) Now I just have to tweak all the comments. Dimitrios Gianninas RIA

[flexcoders] Finding the root clip + getting the URL

2006-08-31 Thread Daniel Wabyick
I am trying to find the URL in which an application is running. Reading the documentation, I get the impression that I can use the root property off on any DisplayObject, and then get the loaderInfo from there. Unfortunately, the root property seems to be null. I must be doing something

Re: [flexcoders] Re: Buffer progress bar for streaming FLV

2006-08-31 Thread greg h
Wow Chris. You are way out ahead of me :-) When Abdul mentioned in the other thread last week needing to hack the code properly I figured it might be a bridge too far for me. Any chance of your posting your solution over at http://www.onflex.org/code/ Regarding getting Adobe to add this type

Re: [flexcoders] Finding the root clip + getting the URL

2006-08-31 Thread John Grden
application.url is what you're looking for Look at mx.core.Application properties hth, JPG On 8/31/06, Daniel Wabyick [EMAIL PROTECTED] wrote: I am trying to find the URL in which an application is running. Reading the documentation, I get the impression that I can use the root

RE: [flexcoders] Time calculation oddity

2006-08-31 Thread Gordon Smith
Flex lacks a proper set of date/time classes. Everybody's entitled to their opinion of what proper is, but Flex/Flash/ActionScript has the same set of JavaScript date/time classes that are available to HTML web apps. A lot of compelling web applications have presumably been written with them.

Re: [flexcoders] Calendar component

2006-08-31 Thread greg h
Update: Following is the post by Alistair (that Steven referred to in his Aug 11 post) regarding the forthcoming Open Source Flex 2 Calendar Component http://weblogs.macromedia.com/amcleod/archives/2006/08/open_source_fle.cfm And while you are at Alistair's blog, you might enjoy checking out

[flexcoders] Anyone else using yahoo webhosting

2006-08-31 Thread nostra72
I wrote some Flex for him in hopes that maybe I could make him a page. I have it written down and everything and even saved it on a DVD. Well one day he came to me and told me had had a domain name but he got it with yahoo business pages or I think it was yahoo webhosting. I want to help

[flexcoders] how to get data from DataGrid

2006-08-31 Thread kyongchil2001
I would like to get data from a DataGrid with specifying a row and a column. I could not find any method from DataGrid class. Can anybody tell me how I can do that? KC -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] Xray Logger for Flex2 - Updated

2006-08-31 Thread John Grden
http://mirror1.cvsdude.com/trac/osflash/xray/browser/downloads/connector/flex/XrayLogger_as3_alpha.zip?format=raw Apologies to those that tired to compile and got the error as well as the status event errors without having the xray interface open. My bad!I've fixed those, and compiled and

RE: [flexcoders] how to get data from DataGrid

2006-08-31 Thread Tracy Spratt
You must work with the dataGrid.dataProvider. Your dataProvider is probably an ArrayListCollection or an XMLListCollection (or maybe e4x XML, or even just array(not good)). See the API for those classes to determine how to access a specific element/property (row/column) Tracy

RE: [flexcoders] Problem: Flex no connection???

2006-08-31 Thread Matt Chotin
I dont see why youd need to force the connection closed through a filter, why cant you close the connection in the method that you called. Most DB code I see usually closes the connection in the finally block to ensure it takes place. Theres no reason why our code would interfere with

RE: [flexcoders] Flex client cache and new versions

2006-08-31 Thread Matt Chotin
The browser will cache your app according to the HTTP headers your web server sends. So its just like any other HTML page or image file. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of shrefler Sent: Wednesday, August 30, 2006 5:27

RE: [flexcoders] Problems calling a RemoteObject within a loop

2006-08-31 Thread Matt Chotin
Is your fault handler being called? I think the point from Fernando was for you to add another method in your CFC that could take an array of the objects that youre updating. Then in the CFC you would loop through that array so that more work is done on the server. This would

RE: [flexcoders] Validator._init method

2006-08-31 Thread Matt Chotin
This is Flex 1.5? Validators really arent meant to be created in ActionScript in Flex 1.5. Maybe you can define your component in MXML so that it can have the Validator tag? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bharg.flex

RE: [flexcoders] Incremental compiling -- should I have long build times?

2006-08-31 Thread Matt Chotin
Do you see the cache files being created? Youre using the command line? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of jrjazzman23 Sent: Thursday, August 31, 2006 7:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Incremental

RE: [flexcoders] web service result type=Object,E4X,XML and the conversion function

2006-08-31 Thread Matt Chotin
We have the SimpleXMLEncoder and SimpleXMLDecoder classes. They only use the old XML format, they dont use e4x. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Ortega Sent: Thursday, August 31, 2006 11:46 AM To:

[flexcoders] Re: Validator._init method

2006-08-31 Thread bharg.flex
Yeah this is Flex 1.5 only. So is there any other way to validate the dynamically created controls? --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: This is Flex 1.5? Validators really aren't meant to be created in ActionScript in Flex 1.5. Maybe you can define

[flexcoders] Re: Validator._init method

2006-08-31 Thread jwc_wensan
Testing reactivation --- In flexcoders@yahoogroups.com, bharg.flex [EMAIL PROTECTED] wrote: Yeah this is Flex 1.5 only. So is there any other way to validate the dynamically created controls? --- In flexcoders@yahoogroups.com, Matt Chotin mchotin@ wrote: This is Flex 1.5?

<    1   2