[flexcoders] Re: Flex DataService example

2006-12-14 Thread devisbalsemin
Thanks good, but i wish to find a lof of docs Flex DataService concepts I have also buy "Adobe Flex 2 Training from source" but about Flex Data Service cover only a few concept. I hope somebody help me. I'm agree with Adobe that FDS is powerfull, but the documentation about this... i think t

[flexcoders] Re: Scrolling without a scrollbar

2006-12-14 Thread benjidudu
You can skin the scrollbars. So replace the track and thumb with a transparent MovieClip and you will only see the arrows. See here for more details about skinning: http://www.adobe.com/devnet/flex/articles/flex_skins.html Benjamin. --- In flexcoders@yahoogroups.com, Lachlan Cotter <[EMAIL PROTEC

[flexcoders] Flex data service query!!!!!

2006-12-14 Thread ravi mishra
hi group, Anybody please tell me, what changes are to be made and where the changes are to be made, when i am accessing a web service by using Flex Data Service2 Express. regards, ravi - Find out what India is talkin

[flexcoders] Customizing Preloader

2006-12-14 Thread {reduxdj}
I'm doing the same task, making a custom preloader that extends the loader class - stays up till my remoting object is returned, since i only want one loader class available... i can't reinstantiate a new class, and since i'm extending a class, i can't force it to be a singleton class because

Re: [flexcoders] datagrid itemrenderer

2006-12-14 Thread Lachlan Cotter
Hi, I'm not sure I fully understood your issue. Is it something to do with transparency or background colour on your item renderers? Why don't you post some example code so we can get a better idea of what is not working. Cheers, Lach On 06/12/2006, at 5:24 PM, rthi99 wrote: Hi all, I

Re: [flexcoders] Dispatched Events from within a Subclass

2006-12-14 Thread Lachlan Cotter
Hi David, One way to do what you want is as follows: 1. Your form subclass should add an event listener to its delete button in some initialise method that is called on creationComplete. 2. The handler for that button press event should dispatch ANOTHER event. This event is of a custom typ

Re: [flexcoders] Scrolling without a scrollbar

2006-12-14 Thread Lachlan Cotter
If you don't have a track and a thumb, I wouldn't really call it scrolling. Perhaps what you're really after might more accurately be called 'paging'. If you think of it in those terms, does the problem become easier to grasp? Cheers, Lach On 06/12/2006, at 8:18 AM, graysonpierce wrote:

RE: [flexcoders] Enumerable properties: what am I not getting?

2006-12-14 Thread Gordon Smith
Yes, you can use the describeType() function in the flash.utils package to get XML telling you all about the declared public properties and methods of a class instance. You can then pick out the info you want using E4X. - Gordon From: flexcoders@yahoogroups

[flexcoders] ASP.Net web service access problem

2006-12-14 Thread ravi mishra
hi group, i am executing the following program: http://www.adobe.com/2006/mxml";> http://ws.invesbot.com/stockquotes.asmx?WSDL"; useProxy="true" fault="Alert.show(event.fault.faultstring), 'Error'">

[flexcoders] Column Chart with multiple axis

2006-12-14 Thread dkhvost
Hi, I'm trying to create a column chart with multiple vertical axis. Both axis are column series. One series range is 0 - 70 and the other one is 0 - 5000. I want to have a clustered stacking effect but I am unable to do so. I tried to work with all of the different parameters available offset

[flexcoders] Enumerable properties: what am I not getting?

2006-12-14 Thread ben.clinkinbeard
So setPropertyIsEnumerable() is really only good for dynamically creayed properties, and really only for setting to false, since they are enumerable by default. My question is, how can I iterate over the properties that are actually defined in one of my classes? I have a VO class with a bunch o' pr

Re: [flexcoders] Creating Events

2006-12-14 Thread John C. Bland II
Here is a custom event class. Just change LevelEvent to whatever you want and the public var level to whatever custom data you want/need. But...you only need this if you need to pass some sort of data with your event. You could easily do dispatchEvent(new Event("myEventName")) and it'll work fine.

[flexcoders] Re: Creating Events

2006-12-14 Thread ben.clinkinbeard
You just have to subclass Event, and then call super("myCustomType") in your constructor. HTH, Ben --- In flexcoders@yahoogroups.com, "marloscarmo2004" <[EMAIL PROTECTED]> wrote: > > I need create a personalized event in my class in AS3. In AS2 I use > the dispatchEvent comand. > > this.dispatch

[flexcoders] Re: remoting with public access modifier in cfc

2006-12-14 Thread phillips1021
Kevin Schmidt posted this in response to a blog entry on Ray Camden's blog: you only need to set access=remote if you are using flex with web services. If you are usimg AMF (Flash Remoting) you don't need to set access=remote. See: http://ray.camdenfamily.com/index.cfm/2006/11/24/Next-build-of-

[flexcoders] DataService with admin

2006-12-14 Thread benjidudu
I am doing two applications accessing the same data: client and admin. The client can see data coming from the dataservice but not modify it. The admin can modify the data and the clients see the modifications in real time through the dataservice. It works well as long as nobody hacks a client to b

RE: [flexcoders] SEO Compatibility

2006-12-14 Thread Sterling Ledet
One thing to note is there is a difference between SEO compatible and SEO friendly. While it is certainly possible to use google to search for specific file types, whether they be PDF, SWF, DOC files or others (see advanced search for the drop down), these pages will not be returned by default if s

[flexcoders] remoting with public access modifier in cfc

2006-12-14 Thread Jason Sheedy
Hi guys, this is my first post to the list, so please don't be too hard on me. I'm pretty new to flex, but an old hand and at CF. I just stumbled on some strange behaviour that I thought would be worth running by you all. It's more of an observation rather than a question. I have a flex app that's

[flexcoders] Creating Events

2006-12-14 Thread marloscarmo2004
I need create a personalized event in my class in AS3. In AS2 I use the dispatchEvent comand. this.dispatchEvent( { type : "onResult", target : this, data : result_arr } ); How do I do in AS3? See my code below. package as3.db { import flash.net.NetConnection; import flash.net.Objec

RE: [flexcoders] Re: SEO Compatibility

2006-12-14 Thread Dustin Mercer
I will chime in on this as well, but from a different perspective. IMHO this can't be complete weighted on the shoulders of Adobe. HTML has been around for a long time, and the need to search and catalog HTML has risen with the growing usage of HTML. In turn, companies like Yahoo and Google were

Re: [flexcoders] Re: Database Connectivity - Why so hard?

2006-12-14 Thread greg h
Jamie, Have you seen this sample app? Automatically generating code for Flex 2 data access http://www.adobe.com/devnet/flex/articles/daoflex.html I believe it may cover your original request for an example "incorporating a mySQL database via JDBC with java remote objects to a Flex project, pref

Re: [flexcoders] Flex DataService example

2006-12-14 Thread greg h
devisbalsemin, Have you seen this sample app? Automatically generating code for Flex 2 data access http://www.adobe.com/devnet/flex/articles/daoflex.html I believe that it covers Flex Data Services with Java. Please post back whether you find the sample app above helpful. (fyi ... I currently

RE: [flexcoders] Incremental loading or load-on-demand

2006-12-14 Thread Dimitrios Gianninas
Wait for version 2.01 coming out very soon... it has the concept of modules and loading them only when u want. Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Collin Peters Sent:

RE: [flexcoders] Re: HTTP Header Web Service Authentication

2006-12-14 Thread Carson Hager
Hey Phil, It's interesting that you bring that up. That's what I was trying to do with the Socket connection. Unfortunately, and as was expected, it's disconnected from the rest of the session so subsequent web service calls aren't within the authenticated session and then challenge again. I

[flexcoders] Re: HTTP Header Web Service Authentication

2006-12-14 Thread phipzkillah
Carson, Thanks for your reply. I can connect to the web services as long as there is an active session open, ie: I authenticate through our web gui and keep the browser open. Can you think of a possible work-around where I can authenticate an http session before calling my web services? If I

Re: [flexcoders] Re: HTTP Header Web Service Authentication

2006-12-14 Thread Carson Hager
The only way you can do this is through the proxy, unfortunately. I don't know if this is a limitation of the player or the flex framework. I have only been able to coax basic auth using the Socket class but that clearly won't work with web services. Carson -Original Message- From:

Re: [flexcoders] TabNavigator and SWFLoaders problem

2006-12-14 Thread Angus Johnson
Hi Nick, I don't if this will help you but one thing that I found with loaded swf's is that if you explicitly set height and width on the loader and then attempt to apply percentWidth or percentHeight it will fail to render. If i set height=100, width=100 then percentWidth=50 and percentHeight=5

Re: [flexcoders]Adding blur or drop shadow filter effects to sub components

2006-12-14 Thread Michael Schmalle
ps you still owe me 5 bucks Read my post on flexcomponents... now you owe me 20$. Peace, Mike On 12/14/06, dorkie dork from dorktown <[EMAIL PROTECTED]> wrote: Mike, Er, um. I know about filters property. How to *apply* it is the question. Here is the MXML: Now, my question is, where d

Re: [flexcoders]Adding blur or drop shadow filter effects to sub components

2006-12-14 Thread dorkie dork from dorktown
Mike, Er, um. I know about filters property. How to *apply* it is the question. Here is the MXML: Now, my question is, where do I apply the filter to the header label in that there MXML? Answer me that mr peyote teoti. ddfd ps you still owe me 5 bucks On 12/14/06, Michael Schmalle <[EMAIL P

[flexcoders] Re: HTTP Header Web Service Authentication

2006-12-14 Thread phipzkillah
Dave, I understand that. I need to authenticate using BASIC authentication. I have form inputs where the user enters their user name and password. I then use base64 and encode it. I am stuck at this point. How can I add in an HTTP header that includes the encoded authorization string? This i

RE: [flexcoders] Embed HTML in Flex

2006-12-14 Thread joe . g . james
I have tried all browsers. This error is getting thrown. What exactly is the ExternalInterface.available looking for. I have read through the ExternalInterface API. I am lost !!! public function set source(source: String): void { if (source) { if

RE: [flexcoders] Embed HTML in Flex

2006-12-14 Thread Brian Holmes
Switch browsers. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joe Sent: Thursday, December 14, 2006 2:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Embed HTML in Flex I am trying to embedd html in a flex component using iframe.

[flexcoders]Showing hand cursor to List rows

2006-12-14 Thread dorkie dork from dorktown
I am trying to show a hand cursor over each individual rows. This code shows a cursor or the empty rows, which is the list, but not on rows that have content. ddfd

Re: [flexcoders]Adding blur or drop shadow filter effects to sub components

2006-12-14 Thread Michael Schmalle
Hey dorky, Check out the filters property of all Sprites. :) It's an array that holds all filters of the specific display object. You can apply any filter to any subcomponent you want. Peace, Mike On 12/14/06, dorkie dork from dorktown <[EMAIL PROTECTED]> wrote: Is it possible, nay probabl

[flexcoders] Bug with List when variableRowHeights = true

2006-12-14 Thread Daniel Wabyick
I am experiencing a bug with the List component when using variableRowHeights="true" . The bug occurs when the first item in the list is very big. Basically, the list 'blows out' its minimum height unnecessarily to the point where you lose the bottom scroll arrow. The following example demons

[flexcoders] Re: HTTP Header Web Service Authentication

2006-12-14 Thread Dave Wolf
What exactly are you trying to do. You can secure web service calls using standard HTTP authentication headers. We do this with both BASIC and FORM auth. -- Dave Wolf Cynergy Systems, Inc. Adobe Flex Alliance Partner http://www.cynergysystems.com http://www.cynergysystems.com/blogs Email: [E

[flexcoders] Re: SEO Compatibility

2006-12-14 Thread dougmccune
I just wanted to pipe up with my opinion on this matter, because it comes up a lot and the answers are always similar. And I get a little frustrated because it seems like Adobe tries to say this isn't a problem when it really is. To reiterate this scenario: Someone asks "Why isn't Flex content sea

[flexcoders] Re: itemRenderer issues

2006-12-14 Thread Tim Hoff
Hey Jason, It looks like you are setting the image source to null everytime, after your conditional statements. Also, you don't need else if. Just using else would work in this situation. -TH --- In flexcoders@yahoogroups.com, "jnewport" <[EMAIL PROTECTED]> wrote: > > Ok I am going nuts her

Re: [flexcoders] Instantiating Class Dynamically

2006-12-14 Thread Michael Schmalle
Oh yeah, One other thing. I think we should all thank Alex Harui for answering all the questions that he does from Adobe. Being that he is one of the flex framework engineers. You cannot get any better support than what he offers! Peace, Mike

[flexcoders] Filereference Failed Upload. Can I try again?

2006-12-14 Thread wwwpl
Can you call the FileReference upload method again if the upload fails? It appears that I have to create a new FileReference to try a second upload.

[flexcoders]Adding blur or drop shadow filter effects to sub components

2006-12-14 Thread dorkie dork from dorktown
Is it possible, nay probable to add filter effects to sub components? For example, I need to add a drop shadow effect to the label of the Accordion header. Slightly still on subject, how does one manipulate sub components properties? dorkie tinkering dork from dorktown

Re: [flexcoders] Instantiating Class Dynamically

2006-12-14 Thread Michael Schmalle
You've got to check out the flexcoders group (yahoo), if you haven't already. There's a number of adobe people who are trolling there. BTW This list was created by Adobe, so I am sure there are plenty of people from Adobe that read it. This is also a flexcoders question. The flexcomponents list

[flexcoders] HTTP Header Web Service Authentication

2006-12-14 Thread phipzkillah
Does anyone know if it's possible to add a custom HTTP header to the web service request? All authentication methods described through Flex seem to be oriented around SOAP headers. Can we authenticate a web service through HTTP headers? This has been driving me crazy for the past few days. Any

[flexcoders]Button text not centered vertically with embedded fonts

2006-12-14 Thread dorkie dork from dorktown
When I use embedded fonts on a button the text is aligned too high. I change the font to a normal font and it is aligned correctly again. I am trying to achieve a fix for this because the accordion header is a subclass of the button class and this is where I'm having a problem. @font-face

[flexcoders] itemRenderer issues

2006-12-14 Thread jnewport
Ok I am going nuts here. Can use another set of eyes for something that should be easy. I am overwriting the set data method for my itemRenderer like so: //Overrride the set method for the data property so that when scrolling nothing changes override public functi

Re: SOLVED: Re: [flexcoders] Re: How to make FormItem labels left aligned?

2006-12-14 Thread Sergey Kovalyov
A bit "buggy" solution, Stas. rawChildren.getChildAt(rawChildren.numChildren- 1) should be used instead, you know. ;) On 12/14/06, Stanislav Zayarsky <[EMAIL PROTECTED]> wrote: Guys, Just use this "ExtendedFormItem" class instead of default "FormItem". Here is the code: *public* *class* E

RE: [flexcoders] removing piechart stroke with its value

2006-12-14 Thread Ely Greenfield
Hi Sanjay. The only way to do this is to filter the items out of the dataProvider, so the chart doesn't see them at all. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sanjaypmg Sent: Thursday, December 14, 2006 10:29 AM To: f

[flexcoders] Embed HTML in Flex

2006-12-14 Thread Joe
I am trying to embedd html in a flex component using iframe. I am recieving an error that I do not understand. Can someone please explain this error to me? Error: ExternalInterface is not available in this container. Internet Explorer ActiveX, Firefox, Mozilla 1.7.5 and greater, or other brows

[flexcoders] Flex DataService example

2006-12-14 Thread devisbalsemin
Hi, can you give me some link about flex dataService with java please... I wish to unterstand better this dataService/AbstractAssembler but a lot of my google search find only adobe live doc. Can you help me pls. I wish to manage better this concept count(... args):AsyncToken createItem(item:Object

RE: [flexcoders] Re: Form-based auth on Websphere

2006-12-14 Thread Dimitrios Gianninas
So both the jsp and swf are under the same context? Hmmm sounds like it should work. Time to call Adobe support... dont know what else to tell you. If something comes to mind I will. What does your services-config.xml, remoting-config.xml and web.xml look like? the roles and such Dimitrios G

[flexcoders] Re: Cairngorm createPopUp in a command

2006-12-14 Thread Michael Ritchie
That reminds me of Jesse Warden's Debugger window he uses in his Cairngorm examples. I looked at this post just yesterday as we needed to create a custom alert message window that is shown from the Command onFault function. What I did was add a new ArrayCollection object to the Model called e

[flexcoders] Question regarding Alex Uhlmann's DistortionEffects library

2006-12-14 Thread Brian Dunphy
I've been looking in to Alex Uhlmann's DistortionEffects library (http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm) and I'm trying to figure out how to implement these effects in to an existing application. Essentially, here's my problem: We have an existing application

RE: [flexcoders] how to get Piechart Item color??

2006-12-14 Thread Ely Greenfield
You can either a) call getStyle("fills") on your pieSeries to do it dynamically, or b) look at the code for mx.charts.chartClasses.HaloDefaults to see the list of default colors flex uses. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Creating a PopUp in a PopUp

2006-12-14 Thread Brian Holmes
PopUpManager.addPopUp( myPopUp ); will set it to the top or after you create it it you can call PopUpManger.bringToFront( myPopUp ) ; From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pablo Apanasionek Sent: Thursday, December 14,

Re: [flexcoders] Flex and Maven2 managed project

2006-12-14 Thread Thijs Triemstra
Hi Oliver, I'm very interested in a Maven 2 plugin for Flex, I have played with Maven but don't exactly know what needs to happen for a plugin, is there any scripting involved or is it more a config of xml files thing? Thijs Op 13-dec-2006, om 13:05 heeft Oliver Lietz het volgende geschre

Re: [flexcoders] FlexBuilder error: Removing Compiler Problem Markers, Marker id:3705 not found

2006-12-14 Thread Rachel Maxim
Thanks, I will try that! On 12/12/06, Tracy Spratt <[EMAIL PROTECTED]> wrote: Have you tried cleaning the project? Clening removes all generated files, and is the first thing to try if you have issues like this. Go Menu, Project, Clean. Tracy -- *From:* f

[flexcoders] Creating a PopUp in a PopUp

2006-12-14 Thread Pablo Apanasionek
While refactoring a flex app to convert it in a flex component that can be instanced as a pop-up (using PopUpManager) in other apps/screens, I ran into the following question: How can I launch a PopUp on top of the parent PopUp? Every "parent" parameter I tested keeps opening the new Po

[flexcoders] Flex and Maven2 managed project

2006-12-14 Thread Oliver Lietz
Hello List, I've stripped the WEB-INF directory of my Flex/Spring project down to this: applicationContext.xml web.xml ./classes commons-logging.properties log4j.properties ./flex data-management-config.xml license.properties messaging-config.xml proxy-config.xml remot

RE: [flexcoders] RTE shown at MAX06

2006-12-14 Thread David Mendels
Hello, http://www.virtub.com/ -David From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Pruitt, Steve Sent: Thursday, December 14, 2006 12:43 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] RTE shown at MAX06 For anyone who went t

Re: [flexcoders] SEO Compatibility

2006-12-14 Thread Kevin Newman
I'll add to this question. :-) Since many Flex apps are considered RIA, which means they are pulling data over some kind of web services, is there a standard practice for making sure your content can be searched and linked from Search engines and other sites? For an example, imagine a message

[flexcoders] Re: Trying to use a mx:model populated by XML file and then as source to ArrayCollection to populate datagrid

2006-12-14 Thread Doug Lowder
(My last post didn't seem to get through, so I'll try again...) Flex will interpret the XML as an Object when a single item is defined, but as an Array when there are multiple items. To ensure you are always dealing with an Array, you can import mx.utils.ArrayUtil and use the static function A

RE: [flexcoders] why shouldnt I use flex 2?

2006-12-14 Thread Dimitrios Gianninas
Already deployed our first Flex 2 app and it is external facing back in October. With the express install anyone who doesn't have FP9 will get upgraded very easily, so no worries there for us at all. Dimitrios Gianninas RIA Developer Optimal Payments Inc. Fr

Re: [flexcoders] SEO Compatibility

2006-12-14 Thread John Dowdell
sanjaypmg wrote: > Is Flex SEO Compatible? > If yes, How can I my flex application SEC compatible? so that it can > be easily available for search engines available. Work in Adobe Flex produces SWF files. Text within SWF files can be found and used by the search engines (contrary to widespread m

[flexcoders] Re: Unable to set ItemRenderer's value back to DataGrid's dataProvider

2006-12-14 Thread jmorpher03
Thanks again Tracy. I had a couple of runtime errors which I fixed. Now the problem is that if I move the focus out of the TextInput (ItemRenderer) in the DataGrid using the mouse, it sets the value. But when I use the Tab key and move to different row/column, it puts back the old value in the

RE: [flexcoders] Instantiating Class Dynamically

2006-12-14 Thread Roger Gonzalez
Your class isn't being linked in, because it isn't referenced. Your options are: (a) force it to be linked in, either with an explicit reference, or via a compiler flag. (b) make sure that the code below is in a SWF is loaded into (or as a child of) an ApplicationDomain containing your class. (

[flexcoders] SEO Compatibility

2006-12-14 Thread sanjaypmg
Hi All, Is Flex SEO Compatible? If yes, How can I my flex application SEC compatible? so that it can be easily available for search engines available. Regards, Sanjay

[flexcoders] how to get Piechart Item color??

2006-12-14 Thread sanjaypmg
Hi All, I have created a piechart using some database values. Is there anyway to get piechart's Item color code? because I need the same color codes for various Labels on the same screen. If there is anyway to get it pls let me know Thanks Sanjay

[flexcoders] removing piechart stroke with its value

2006-12-14 Thread sanjaypmg
Hi, I have created a piechart with stroke and its value for each item but I dont want to show this stroke and its value for each item because if some item has 0 value it shows the stroke with 0 value, which I dont want to show there. Could anyone will tell the solution for the same. Thanks Sa

[flexcoders] Re: Instantiating Class Dynamically

2006-12-14 Thread Daniel
Hi Amol, Try creating an instance of the class before you load your XML, something like: var aux : MyClass; and then you do: try { var dynamicClass: String = "com.apps.MyClass"; var classRef:Class = flash.utils. getDefinitionByN ame(dynamicClass as Class; var myClass:* = new classRef(); }

Re: [flexcoders] is this a BUG in dataGrid ??

2006-12-14 Thread Yiðit Boyar
here is my code: public function set liveDataProvider(newData:Object):void{ try { for(var a:Number=0;a To: flexcoders@yahoogroups.com Sent: Thursday, December 14, 2006 3:55:41 PM Subject: RE: [flexcoders] is this a BUG in dataGrid ??

[flexcoders] Instantiating Class Dynamically

2006-12-14 Thread genius_gen2k
Hello Everyone, I am trying to instantiate a class dynamically via the data from an external XML file. I get the class name as a String in Flex code and then I have applied the below code to instantiate that string as a class. Here "MyClass" is a custom class inside the "com.apps" package. I have

[flexcoders] Multi-purpose functions and resultsets

2006-12-14 Thread chrisvet2001
I'm using a cfc that has a function "GetGPA". It takes 2 arguments, ClientID and Mode. Mode can be one of 2 things, either 'Quarterly' or 'Cumulative'. The SQL to calculate the GPA only differs in ONE operator -- Quarterly = -- Cumulative <= Now, I'd like to call this cfc from flex so i can disp

[flexcoders] RTE shown at MAX06

2006-12-14 Thread Pruitt, Steve
For anyone who went to MAX06, One of the keynotes featured a nifty rich text editor. It wasn't the Flex 2.0 offering, it was from a third party. I seem recall to recall "ubiquitous" in the either company name or the product. But, I can't find any reference to it. Does any other MAX06 attende

[flexcoders] my -debug.swf is not changing.

2006-12-14 Thread camlinaeizerous
This just started happening this morning and needless to say I was a bit confused. I was getting totally different results from the debug and non debug versions of my current project. Any changes I'm making are being reflected in the non debug version however the changes are not showing in the

RE: [flexcoders] customising preloader

2006-12-14 Thread Stephen Gilson
There is an example in the doc starting here: http://livedocs.macromedia.com/flex/2/docs/0647.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Thursday, December 14, 2006 11:25 AM To: flexcoders@yah

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
In the WelcomeScreen, to listen for the custom loading event in the Application, this might do the trick: example: Application.application.addEventListener("nowEverythingIsLoadedEvent", nowEverythingIsLoadedEventHandler); and in the nowEverythingIsLoadedEventHandler, we can close the WelcomScreen

[flexcoders] TabNavigator and SWFLoaders problem

2006-12-14 Thread durnelln
Hi all, I've been lurking on this list for a few weeks but I've now run into a problem and need some help myself... My application's main screen consists of a number of windows, each of which is a Flex application in its own right. The layout of the main screen is configurable from an externa

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
Now, I think with the example on the pages below : If you don't set the WelcomeScreen's property ready to true in the FlexInitComplete handler and if you don't set the timer to autoclose after a certain amount of time then the custom preloader should keep showing the WelcomeScreen, and then t

RE: [flexcoders] Preventing double clicking on a datagrid header !

2006-12-14 Thread Van De Velde Hans
Have you tried the attribute doubleClickEnabled="false" ? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: donderdag 14 december 2006 17:49 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Preventing double clicking on

Re: [flexcoders] Preventing double clicking on a datagrid header !

2006-12-14 Thread Tom Chiverton
On Thursday 07 December 2006 12:13, Robs wrote: > Can someone tell me the way to prevent double clicking on the > datagrid column headers? Unplug the users mouse :-) What are you actually trying to achieve ? Stop a user sorting a column twice in a row ? Why ? -- Tom Chiverton Helping to vita

RE: [flexcoders] customising preloader

2006-12-14 Thread Giles Roadnight
Thanks but these are the examples that I had already found. Giles Roadnight _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Van De Velde Hans Sent: 14 December 2006 16:31 To: 'flexcoders@yahoogroups.com' Subject: RE: [flexcoders] customising preloader htt

RE: [flexcoders] Re: Cairngorm createPopUp in a command

2006-12-14 Thread Dimitrios Gianninas
I have this pop up in a library btw. Use like so: somewhere in the app init: StatusWindow.init( rootView ); in your execute() method: StatusWindow.show( "Searching...", false ); in your result() method: StatusWindow.hide(); in your fault() method: StatusWindow.show( "Error", true, "details"

RE: [flexcoders] customising preloader

2006-12-14 Thread Van De Velde Hans
http://www.onflex.org/ted/2006/07/flex-2-custom-preloaders.php http://www.onflex.org/ted/2006/07/flex-2-preloaders-swf-png-gif-examples.php -

[flexcoders] Error In Service Browser

2006-12-14 Thread runnerr
Hi All, Im getting an error in the service browser: "TypeError: Error #1034: Type Coercion failed: cannot convert [EMAIL PROTECTED] to mx.messaging.messages.ErrorMessage." I have tried to look deeper into the code but I cannot figure it out.

[flexcoders] Re: Form-based auth on Websphere

2006-12-14 Thread baardos
A small update: when the first amf request is kicked off the response status is 200 OK but there is a Set-Cookie header set with new session id. Any ideas why it happens? Thanks, Bartek --- In flexcoders@yahoogroups.com, "baardos" <[EMAIL PROTECTED]> wrote: > > Hi Dimitrios, > > I've checked it

[flexcoders] customising preloader

2006-12-14 Thread Giles Roadnight
Hi All I've been trying to create a custom preloader for my flex app. I want to keep the DownloadProgressBar object on the screen when the app has finished loading and initialising and then load my own xml configuration file. I've been trying to extend the DownloadProgressBar class and had a look

RE: [flexcoders] Re: Cairngorm createPopUp in a command

2006-12-14 Thread Dimitrios Gianninas
Tim... what you need is attached :) Enjoy. I got a whole bunch of them :) Dimitrios Gianninas RIA Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Sent: Thursday, December 14, 2006 11:08 AM To: fl

[flexcoders] Re: Disable Application Blur in Popup window

2006-12-14 Thread camlinaeizerous
it works perfectly is you do it on the mxml page of the title window. --- In flexcoders@yahoogroups.com, "Simon Janssens" <[EMAIL PROTECTED]> wrote: > > Hi John, > > I haven't done it personally, but you might have some luck using the > styleManager. > > mx.styles.StyleManager.getStyleDec

AW: [flexcoders] Apollo

2006-12-14 Thread Essl, Markus
Thanks for your answers. I'll take a look into it until Apollo arrives. ;-) Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Steve Hagenlock Gesendet: Donnerstag, 14. Dezember 2006 14:40 An: flexcoders@yahoogroups.c

[flexcoders] Re: Cairngorm createPopUp in a command

2006-12-14 Thread Daniel
Great solutions, however... What if I use Cairngorm as a Library. This means that it's outside my Application project and it wouldn't be possible to instance in the Command a TitleWindow located in the project. Any ideas? Thanks in advance! --- In flexcoders@yahoogroups.com, "Tim Hoff" <[EMAIL P

[flexcoders] Re: Continuation dots

2006-12-14 Thread jlentz2112
Thanks. I'll check them out. John --- In flexcoders@yahoogroups.com, "Daniel Freiman" <[EMAIL PROTECTED]> wrote: > > you might want to take a look at Label.truncateToFit() or > UITextField.truncateToFit(). > > - Dan > > On 12/14/06, jlentz2112 <[EMAIL PROTECTED]> wrote: > > > > Hi, > > > > Do

Re: [flexcoders] Continuation dots

2006-12-14 Thread Daniel Freiman
you might want to take a look at Label.truncateToFit() or UITextField.truncateToFit(). - Dan On 12/14/06, jlentz2112 <[EMAIL PROTECTED]> wrote: Hi, Does anyone know of a component that will automatically add the continuation dots (...) if the browser window is sized too small to fit that co

[flexcoders] Re: Form-based auth on Websphere

2006-12-14 Thread baardos
Hi Dimitrios, I've checked it and the JSESSION cookie's name remains the same and the path is '/' so theoreticly it should work fine... Thanks, Bartek --- In flexcoders@yahoogroups.com, "Dimitrios Gianninas" <[EMAIL PROTECTED]> wrote: > > Your understanding is correct. My app works that way too

RE: [flexcoders] Apollo

2006-12-14 Thread Steve Cox
Have you thought about using zinc? http://multidmedia.com/ Can't see anything you mentioned below which is not already possible with flash/flex + zinc -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Essl, Markus Sent: 14 December 2006 10:30 T

RE: [flexcoders] Re: Form-based auth on Websphere

2006-12-14 Thread Dimitrios Gianninas
Your understanding is correct. My app works that way too... we have: https://someurl/falcon/login.jsp https://someurl/billing/billing.swf So user logs in and then at some point goes to the billing.swf and everything works. If you try to access the swf directly all RO calls fail. This is on We

[flexcoders] Re: soap-env Namespace problem

2006-12-14 Thread Shannon
OK I finally get it... The value cannot be XML, it must be a String. Thanks, for helping me realize there is a second parameter to the Namespace constructor, thanks for showing me how to use the Namespace constructor... Examples like yours in the documentation would clear this up nicely. I'

[flexcoders] Possible FireFox - TextInput Box Bug?

2006-12-14 Thread polonycjunk
Hi, The Bug: Use Mozilla Firefox to access a compiled .swf file containing a TextInput box. Click on the address bar, click on the input box, and click on the address bar again and then start typing. Instead of typing onto the address bar, you'll be typing in the TextInput box. I accessed the

Re: [flexcoders] why shouldnt I use flex 2?

2006-12-14 Thread Gadi Srebnik
thank you all for the detailed answer :) gadi On 12/13/06, greg h <[EMAIL PROTECTED]> wrote: gadi, What is your audience and when will you be deploying? I ask because Flex 2 has no capability to publish to Flash Player (FP) versions earlier than FP9. As of the latest FP penetration stats

[flexcoders] ASP.Net web service access problem

2006-12-14 Thread ravi mishra
- Find out what India is talking about on - Yahoo! Answers India Send FREE SMS to your friend's mobile from Yahoo! Messenger Version 8. Get it NOW--- Begin Message --- hi group, i am executing the following program:

[flexcoders] Re: soap-env Namespace problem

2006-12-14 Thread Shannon
So I tried that right, it doesnt appear to be sending anything now. The server responds: "Unable to parse a null XML document" I checked the request using http watch and indeed I am sending nothing. I tried tracing it out wih trace("env:+env); and I get env: var ENVELOPE:XML = http://aplaud.

[flexcoders] Re: Trying to use a mx:model populated by XML file and then as source to ArrayCollection to populate datagrid

2006-12-14 Thread Christina Burnham
--- In flexcoders@yahoogroups.com, "Doug Lowder" <[EMAIL PROTECTED]> wrote: > > Change the model property referenced by the ArrayCollection source > to "animalList.pet" and specify it as an array (an Object is > returned when there is only a single item), and it should work: > > source="{

  1   2   >