[flexcoders] Re: PopUpManager.removePopUp Not Removing Modal Overlay

2007-11-15 Thread johantrax
Sounds like there could be an error|nullreference|illegal thing somewhere in the closeHandler of your TitleWindow.. It's a bit like using Alert.show(nullobject.property), which will lay over the modal part, but won't show the Alert. --jeetee --- In flexcoders@yahoogroups.com, bryanpoopbartow

RE: [flexcoders] Re: Bouncing Focus in DataGrid

2007-11-15 Thread Alex Harui
This issue has been fixed in 3.0. Can you upgrade? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of j_lentzz Sent: Thursday, November 08, 2007 5:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Bouncing Focus in DataGrid

Re: [flexcoders] Flickr: Sandbox issue with unavaiable.gif

2007-11-15 Thread Tony Alves
Interesting, because it does have a cross domain. http://l.yimg.com/crossdomain.xml Maybe it using http://l.yimg.com/www.flickr.com/ http://l.yimg.com/www.flickr.com/images/photo_unavailable.gif as the root of the domain. Try to set up the |loadPolicyFile()| method for the above crossdomain.

[flexcoders] Default CSS

2007-11-15 Thread Matthias Dittgen
Hello, I am currently on an AS3 project and got a lot Warnings: Default CSS file not found and it become more and more. It has something to with either: * flash.utils.getDefinitionByName * or with [embed()] Tags that lead to generated xyAsset Classes that extend mx.core.ByteArrayAsset and thus

RE: [flexcoders] Using Scale-9 scaling in a horizontal plane only

2007-11-15 Thread Mark Ingram
I should also state the original image is 800 pixels wide (800x39). Mark From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Ingram Sent: 14 November 2007 17:37 To: flexcoders@yahoogroups.com Subject: [flexcoders] Using Scale-9

[flexcoders] DataServices application failing to communicate through SSL

2007-11-15 Thread Carlos Rovira
Hi, We have an app built with LCDS that must use SSL. Until now it works properly through HTTP, but as I switch to SSL there's no communication with the server In services-config we have the following channel definition (AMF comet polling ): channel-definition id=my-secure-client-polling-amf

[flexcoders] Requesting some logging testing samples

2007-11-15 Thread Steve Hueners
Generally speaking Lots of stuff going out about how to build stuff...plenty of commentary about best practices. Not so much with the logging and unit testing end of things. Lots of us have gotten used to relying on Trace and, one way or another, hack our way thru problems without learning

Re: [flexcoders] External StyleSheet In Application

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, Samuel R. Neff wrote: CSS is loaded at compile time, not runtime. cough StyleManager.loadStyleDeclarations() -- Tom Chiverton Helping to interactively benchmark open-source CEOs on: http://thefalken.livejournal.com

Re: [flexcoders] Help pls! swapping drag panels!

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, Jaganathan.K wrote: I have custom drag panel component, i want to add an additional feature, which will have the swapping functionality. The what ? -- Tom Chiverton Helping to apprehensively bully second-generation convergence on: http://thefalken.livejournal.com

Re: [flexcoders] 1046: Type was not found or was not a compile-time constant: Session.

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, Manu Dhanda wrote: Am having this problem while am trying to migrate my app from Flex 2 to Flex 3. Does it use Cairngorm ? If so, get the latest (2.2.1 ?) release. -- Tom Chiverton Helping to continuously synthesize 24/365 patterns on: http://thefalken.livejournal.com

Re: [flexcoders] Closed Captioning: Captionate and Other Methods

2007-11-15 Thread Tom Chiverton
On Wednesday 14 Nov 2007, caffeinewabbit wrote: Barring the use of Captionate, has anyone else ever had to implement closed-captioning functionality in their Flex app? If so, how'd you go about it? I would have thought that for each video you just* need a list of (pause:Number,caption:String)

[flexcoders] Re: Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-15 Thread Stephen Allison
Christoph Guse writes: Hi Douglas, thanks for your reply. I can switch off https for testing purposes, but it is impossible to switch off https in the production environment. So your approach can't be the final solution. I'll try to switch off https tomorrow and will see what happens.

[flexcoders] Re: Scaling a TextArea without reflowing the text

2007-11-15 Thread Lachlan Cotter
Excellent. Problem solved. Thanks Dan. --- In flexcoders@yahoogroups.com, Daniel Freiman [EMAIL PROTECTED] wrote: textField.antiAliasType = AntiAliasType.NORMAL; - Dan Freiman

RE: [flexcoders] Using Scale-9 scaling in a horizontal plane only

2007-11-15 Thread Mark Ingram
It seems even after changing the code in this article: http://www.adobe.com/devnet/flex/quickstart/embedding_assets/#EmbeddingI magesScale9 you can't scale in just one direction - the scaling is restricted to the aspect ratio of the scale-9 grid that's in use. If you scale by 10 pixels to the

[flexcoders] [Bindable] and dispatchEvent

2007-11-15 Thread Stephen Allison
Hello, What is going on that makes this legal code: [Bindbale] class MyClass { function something() { dispatchEvent(new Event('someevent')); } } What is curious is that I can call dispatchEvent since the class doesn't define such a method, nor does it extend EventDispatcher. Remove the

Re: [flexcoders] [Bindable] and dispatchEvent

2007-11-15 Thread Johannes Nel
yeah i noticed as well, it makes it implement IEventDispatcher in the backgound via the first pass compiler On Nov 15, 2007 5:58 AM, Stephen Allison [EMAIL PROTECTED] wrote: Hello, What is going on that makes this legal code: [Bindbale] class MyClass { function something() {

[flexcoders] Replace color in animation?

2007-11-15 Thread bjorn -
Ok, this is maybe a bit offtopic but I'll give it a shot anyway -- We get vector animations created in Illustrator from a design shop, which we convert to MovieClips and use in flash. What I would like to do is replace a specific color in flash in runtime. E.g. if it's a car I'd like to be able

[flexcoders] Problems uploading large base64 files (over 10mb) with URLLoader

2007-11-15 Thread Paul Steven
Has anyone experienced problems uploading large files with URLLoader? I am reading in a file as binary data and converting it to Base64 using the built in Base64 class. I am then popping this base64 data into an xml file and uploading using URLLoader. It all works fine with files up to

[flexcoders] Re: Combobox ItemRenderer is now working as expected

2007-11-15 Thread srikanth_reddy_007
Tried Boolean(XML(data)[EMAIL PROTECTED]) Tried Boolean([EMAIL PROTECTED]) but no luck !!! Can some body please try by running the code? --- In flexcoders@yahoogroups.com, Douglas Knudsen [EMAIL PROTECTED] wrote: hmm, isn't [EMAIL PROTECTED] a String, eh? Try casting it to a Boolean. DK

[flexcoders] Re: Vertical scrolling without horizontal scrolling? How do I make 100% == 100%

2007-11-15 Thread srikanth_reddy_007
Try Setting the horizontalSrollPolicy=off --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: As long as it is small enough to not cause the hbar to come on From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Replace color in animation?

2007-11-15 Thread Hara Jn
If I am not wrong I dont think you can change the color of a specific an image in flash. One way I can think of is to have the illustratyor image a transparent one. That is the transparent part is where the color changes. Place the image in some container of flash and try changing the color of

[flexcoders] Flex / AIR and Google OpenSocial

2007-11-15 Thread Ben Marchbanks
Are there any opportunities to utilize Google's new OpenSocial with Flex / AIR ? Ben Marchbanks ::: alQemy ::: transforming information into intelligence http://www.alQemy.com ::: magazooms ::: digital magazines http://www.magazooms.com Greenville, SC 864.284.9918 --

Re: [flexcoders] Re: Memory Allocation Error - Garbage Collection Hack

2007-11-15 Thread EECOLOR
In my code hinting (Flex builder 3 beta) I see a System.gc() method. Im not sure if this method works in all players because it is undocumented. Who knows. Greetz Erik On 9/6/07, marcel.panse [EMAIL PROTECTED] wrote: Nobody want to give it a shot?

RE: [flexcoders] Using Scale-9 scaling in a horizontal plane only (solved but need feedback)

2007-11-15 Thread Mark Ingram
It turns out the scaling doesn't like SWF files for some reason?! I thought you could use SWFs and scale-9? This code works just fine: mx:Image maintainAspectRatio=false y=53 width=100% height=39 source=@Embed(source='/assets/TopPageSeparator.png', scaleGridTop='0',

[flexcoders] how do I freeze the users actions while data is loading

2007-11-15 Thread Mark
I have a web service that's getting data to fill comboBoxes then the real data. This takes a few seconds. I'm using the showBusyCursor on the service, but the user can actually still click buttons. Is there a way to blur the screen out during this time like when using a pop- up window?

[flexcoders] Smooth Scrolling Effect with Viewstack

2007-11-15 Thread Ben Marchbanks
I have a viewstack component for which I would like a smooth scrolling effect as a child transition. Currently I am using a moveEffect to slide one child out and slide the next child in. This works okay but there is a considerable gap between the old and the new. I would prefer a more fluid

[flexcoders] HashMap with an object as key transferred with livecycle returns null

2007-11-15 Thread pmotzfeldt
Hi I have an HashMap in java that uses an object as the key (have also tried using Integer), but when I in Flex access this object the value of the key is null. If I switch the key to a String it works great. But I need to be able to use an int(Integer) or an object as the key. Anybody got any

Re: [flexcoders] Replace color in animation?

2007-11-15 Thread Ian Thomas
Bjorn, If all of the areas you want to change (e.g. the red areas of the image) are exported as a single sub-movie-clip of the overall movie-clip, you can use the flash.geom.ColorTransform class to change the colour of everything in that subclip. That works for us. Hope that's helpful,

[flexcoders] Flex coder needed in Bangladesh Dhaka

2007-11-15 Thread Raisul Kabir
Hi all, Brainstation-23 is a leading Flash/Flex based company in Dhaka, Bangladesh. We got some very interesting and complicated works to do in Flex and Flash related to 3D and drawing. If anybody interested please mail at [EMAIL PROTECTED] Please write your expected salary, experience years,

[flexcoders] Seeking to Network with Flex users in Greater Boston

2007-11-15 Thread Arnold Fertig
I'm seeking to network with Flex users in Greater Boston. Does anyone know of usergroups or other places/people that I might contact? Arnie Fertig Centre Street Associates, Inc. www.cstreetsearch.com

[flexcoders] Enhanced Constraints Confusion...

2007-11-15 Thread Charles Dale
Hi guys, I'm trying to work out how to use the Flex 3 constraints to replace a currently hand-coded layout. I'm running into a problem with content-sized constraints: how to have child components that position themselves on a particular constraint but don't actually affect the size of that

[flexcoders] Digital Signature

2007-11-15 Thread Michael
Java applets and now AIR apps both have the concept of a digital signature. The loader of the apps are able to verify that the apps have not been corrupted. Is there anything similar for SWFs? Can the Flash player verify a digital signature?

Re: [flexcoders] Re: Flex 2, Webservice, Tomcat, Basic Authentication, IE Problem

2007-11-15 Thread guse
Hi Stephen, hi Douglas, I found a solution! :-) Ok, first of all for my application it is very important to load the WSDL files with the https Url. Only with a https Url the sessionId is sent by Flash. Then I had to do a tomcat configuration. It was necessary to add Valve

[flexcoders] Re: HELP! How to invoke a servlet from a Flex Application: Throws error 2032

2007-11-15 Thread javed akhtar
Yep both the application and the servlet are on the same domain and i can invoke the servlet from an html using the locallhost url. The stdout log of tomcat remains blank when i call the servlet from my flex app. Thanks, -javed --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED]

[flexcoders] Re: Austin Flex User Group?

2007-11-15 Thread snowjunkie73
I would be interested. My company also has a group of 5 Flex developers in Austin and more abroad. We are looking to hire about 5 more in Austin. Our developers are coming from the Java world where we have had little development exposure to flash and cf before starting with Flex and AIR. Mike

Re: [flexcoders] Re: Newb needs state help

2007-11-15 Thread Phill B
I tried that and I got an error saying the state is undefined. In my nav.mxml file, the menuBar has a click event that sets the currentstate to the view I want. The mainapp.mxml has my view in it. When the click event is fired, it gives me an error stating the state is undefined. Thanks On Nov

[flexcoders] Scrollbar weirdness

2007-11-15 Thread smccran
Hi all, I have a datagrid that has longer data in some rows than others. The problem is that my scrollbar is changing size! Does anyone know how to stop the scrollbar changing height? A sample code is below. Thanks Shaun Code: ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] glow effects

2007-11-15 Thread Giles Roadnight
Hi All I want to make a button pulse (and maybe speed it up to flash). I am using a sequence to string together 2 glow effects, glowUp and glowDown: private function gridClicked(e:MouseEvent):void { var templateButton:Button = templateButtons[e.currentTarget.selectedItem.templateID];

Re: [flexcoders] Austin Flex User Group?

2007-11-15 Thread Chris Hunter
I'm interested (and saw your notice on your blog as well) but honestly would probably only make a meeting every 2-3 months given other groups I'm involved with (Rails, Refresh) and family commitments. --chris On 11/14/07, Brendan Meutzner [EMAIL PROTECTED] wrote: Hi All, Just want to

Re: [flexcoders] Looking for a Flex Email Client

2007-11-15 Thread Jeffry Houser
This might be a start: http://www.partlyhuman.com/blog/roger/apollo-mail-client-version-03 Perhaps you can integrate it with the Flex Scheduling Framework for Calendar type stuff: http://labs.adobe.com/wiki/index.php/Flex_Scheduling_Framework If you have a budget behind this project

[flexcoders] Strange compiler behavior in Flex Builder for Mac

2007-11-15 Thread Andrew Mikkelsen
Hey all, I was wonder if someone might be able to answer my question on this. I recently switched over to do my development work on a Mac. I’m using Flex Builder as I did on the Windows platform. After moving one of my projects over to the Mac, Flex Builder is now showing errors in my

[flexcoders] Re: External StyleSheet In Application

2007-11-15 Thread flexawesome
humm...it loads compiled swf file rather than CSS file(directlly)... that means I have to recompiled the CSS once I made some changes everytime. --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Thursday 15 Nov 2007, Samuel R. Neff wrote: CSS is loaded at compile

[flexcoders] Sorting a list and then allowing drag drop

2007-11-15 Thread icepaco33
Greetings all, I have a list that allows drag n' drop operations. However I also want to implement a 'reset' operation where the list will rearrange all the items in the correct order. So the obvious way is to do : List.ListDataProvider.sort = _mySort; List.ListDataProvider.refresh()

[flexcoders] Using checkbox with default spacebar toggle?

2007-11-15 Thread candysmate
I have a dataGrid which uses keyDown to fire a keyboard checking routine. This allows the user to navigate the grid via the up/down cursor keys to change the editedItemPosition. One of the grid columns contains a checkbox which can be toggled via the spacebar, and is the default Flex action.

[flexcoders] Re: How to access the List from it's ItemRenderer

2007-11-15 Thread icepaco33
Just realized that losing selection after a drag drop operation is actually the correct list behavior and is not linked to custom renderers... If I remove the custom renderers and repeat the same operation I will also lose any prior selection made after the drag drop. Can someone else confirm

[flexcoders] Binding Objects to a DataGrid

2007-11-15 Thread triggersoftware
I've got a list an ArrayCollection of objects bound to a grid. The User selects a row in the grid and hits a button. That button manipulates that row's associated object. What do I have to do to get the grid to reflect the changes? I can re-assign the dataProvider, but that seems rather

Re: [flexcoders] [Bindable] and dispatchEvent

2007-11-15 Thread Peter Hall
[Bindable] actually makes a number of changes to your code. If your class doesn't already implement IEventDispatcher, then it adds that with methods to implement the interface which delegate to an instance of EventDispatcher. For every bindable property, where you don't specify the change event,

[flexcoders] Re: Binding Objects to a DataGrid

2007-11-15 Thread triggersoftware
Here's a sample app demonstrating my problem. You don't see the value in the Number column get incremented until you hit the Reload button. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[

[flexcoders] Re: Accessing dataField from within a Custom Item Renderer

2007-11-15 Thread triggersoftware
Genius! Was just having that problem with another I wrote... --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Better, but will fail if you scroll. Renderers get recycled and creatuinComplete only gets fired once. Use the dataChange event instead

Re: [flexcoders] HELP! How to invoke a servlet from a Flex Application: Throws error 2032

2007-11-15 Thread Paul Dale
The error from flex means that it isn't getting anything back from the server and as far as I see you aren't sending anything back. Regarding nothing showing on stdout ... well, I don't think tomcat works like that. You should use log4j. Regarding the output you need to create a writer from

[flexcoders] Re: how do I freeze the users actions while data is loading

2007-11-15 Thread johantrax
How about creating a little popup that shows 'Loading..' ? Then let it close by the resulthandler. --jeetee --- In flexcoders@yahoogroups.com, Mark [EMAIL PROTECTED] wrote: I have a web service that's getting data to fill comboBoxes then the real data. This takes a few seconds. I'm using

[flexcoders] Re: Anyone know how to scroll Tree back to position after dataprovider swap ?

2007-11-15 Thread helihobby
Thanks so much ... That did the trick. Sean. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Call validateNow and set verticalScrollPOsition after From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

[flexcoders] Re: Loading *existing* modules into a ModuleLoader

2007-11-15 Thread tdf0wler
So are you saying to just store the references to the module loaders instead of the module being loaded? If so, I think that may work. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I'm not sure what your goal is. Why not just switch between several ModuleLoaders?

[flexcoders] Flex Builder 3 Beta 2 and ColdFusion

2007-11-15 Thread urmacboy
I'm pretty familiar with ColdFusion, but still very new to Flex. I'm having issues getting started with Flex Builder when trying to build a Flex/CF project. As I create a project in Flex Builder 3 Beta 2 I select ColdFusion as the Application server type, leave 'Use remote object access

Re: [flexcoders] [Bindable] and dispatchEvent

2007-11-15 Thread Ralf Bokelberg
Another sideeffect is this: If your class extends a class with bindable properties and it tries to implement IEventDispatcher it has to use override allthough you can't see the eventDispatcher methods. Our solution was to let the baseclass extend EventDispatcher. Cheers Ralf (Only two more days

Re: [flexcoders] Re: External StyleSheet In Application

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, flexawesome wrote: humm...it loads compiled swf file rather than CSS file(directlly)... that means I have to recompiled the CSS once I made some changes everytime. Yes. And ? It's only in development you'll be changing them frequently, and you can use a mockup that

Re: [flexcoders] how do I freeze the users actions while data is loading

2007-11-15 Thread Douglas Knudsen
A couple things to look at include: 1) using a modal popup with a progress bar in it. Just popup it up when the server call is made, destroy it when complete. 2) Application.enabled = false DK On Nov 15, 2007 7:38 AM, Mark [EMAIL PROTECTED] wrote: I have a web service that's getting data to

[flexcoders] Express Install question

2007-11-15 Thread Mark
I'm building an app for a company intranet site and the boss doesn't want the user to go outside to get the plug-in if needed. I can't seem to find how to to modify the wrapper to do this. It's the only thing I need changed on it. Can someone point me to where that can be found, I just

RE: [flexcoders] Re: How to access the List from it's ItemRenderer

2007-11-15 Thread Alex Harui
Selection is cleared when moving in the same list From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of icepaco33 Sent: Thursday, November 15, 2007 7:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: How to access the List from

RE: [flexcoders] TabNavigator no child selected

2007-11-15 Thread Alex Harui
You could try changing skins/styles on the inactive one. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of rleuthold Sent: Thursday, November 15, 2007 12:16 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] TabNavigator no child

Re: [flexcoders] Smooth Scrolling Effect with Viewstack

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, Ben Marchbanks wrote: I would prefer a more fluid transition where both children are technically visible (adjoining) during the change. Accordian ? -- Tom Chiverton Helping to challengingly seize advanced patterns on: http://thefalken.livejournal.com

[flexcoders] Filtering Flex Messages using Selector

2007-11-15 Thread Amit Gupta
Hi, I am trying to filter messages flex consumer is receiving from a JMS topic. In the header of the message I am specifying a client's id. While subscribing to the topic I specify mx:Consumer id=consumer destination=alert message=messageHandler (event) selector=client =1/ this runs fine.

RE: [flexcoders] Re: Memory Allocation Error - Garbage Collection Hack

2007-11-15 Thread Alex Harui
Not guaranteed in all players so don't use From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of EECOLOR Sent: Thursday, November 15, 2007 4:08 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Memory Allocation Error - Garbage

RE: [flexcoders] Using checkbox with default spacebar toggle?

2007-11-15 Thread Alex Harui
Subclass and override keyDownHandler From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Thursday, November 15, 2007 8:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Using checkbox with default spacebar toggle?

Re: [flexcoders] how do I freeze the users actions while data is loading

2007-11-15 Thread Tom Chiverton
On Thursday 15 Nov 2007, Mark wrote: to blur the screen out during this time like when using a pop- up window? Why not pop up a model please wait box ? -- Tom Chiverton Helping to widespreadedly orchestrate unique supply-chains on: http://thefalken.livejournal.com

RE: [flexcoders] Sorting a list and then allowing drag drop

2007-11-15 Thread Alex Harui
Setting sort must always be followed by refresh(), so what you tried wont work. I think you have to create a new arraycoll from the sorted one via toArray From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of icepaco33 Sent: Thursday,

RE: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread Samuel R. Neff
Why not? Is it 'cause your app runs from the file system within flexbuilder and the web host in production/test? If that's the case then move to Flex Builder 3 and set up your project with the right server-side bindings, then when you run/debug from FlexBuilder it will invoke it through the web

[flexcoders] Service config

2007-11-15 Thread Richard Rodseth
Like ReviewTube before it, the Faces example from the Allurent guys has some useful techniques. I like their approach to ServiceLocator (note: services in this case are really more analogous to delegates for you Cairngorm folk): Usage looks like this:

[flexcoders] (unknown)

2007-11-15 Thread Joe Chickanosky
Be a better sports nut! Let your teams follow you with Yahoo Mobile. Try it now. http://mobile.yahoo.com/sports;_ylt=At9_qDKvtAbMuh1G1SQtBI7ntAcJ

[flexcoders] Cross Scripting a Flex Application/Module using SWFLoader/ModuleLoader

2007-11-15 Thread jowenece
I would like to be able to load a Flex Application/Module dynamically into a parent Flex application using either the SWFLoader or ModuleLoader classes and access the properties and methods of the loaded application. I have tried using both and have loaded applications successfully, but I am

Re: [flexcoders] Canvas layout / style

2007-11-15 Thread Giles Roadnight
Thanks for the suggestion, I did do it with a mask in the end. On Nov 14, 2007 5:16 PM, Jon Bradley [EMAIL PROTECTED] wrote: On Nov 14, 2007, at 10:51 AM, Giles Roadnight wrote: The obvious way to do it is to have an image as a background with rounded corners and shadows as part of the

RE: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread mattmadhavan
Sam, Do you mind sending me the step by step instructions? I just cannot make it work. I have two project - 1. Java web project for the java server side (Say MyWebApp). 2. A flex project with its output (bin) externalized to MyWebApp/webroot(in the same level as WEB-INF). And I cannot make my

Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-11-15 Thread Steve Hueners
Is there anyway to judge what level of user connections a given server can handle without requiring specialized loadsharing strategies? In a non-audio or video environment what's it take to stream an AS3 based swfs to 3-5 dozen connections? On 10/16/07, Anatole Tartakovsky [EMAIL PROTECTED]

Re: [flexcoders] Re: Flex Remoting Options - Any Opinions?

2007-11-15 Thread Anatole Tartakovsky
That part is not AMF specific - and Apache or Tomcat will have no issues of doing it - that is purely bandwidth issue. As far as AMF/RTMP streaming main issue is robustness. It is very easy to get any of the products to run on the reliable network. We do use OpenAMF and proprietary performance

[flexcoders] AdvancedDataGrid Specialized Cell Movement

2007-11-15 Thread Joe Chickanosky
I have created an AdvancedDataGrid in Adobe 3. I am catching the event in keyHandler() and use event.keyCode to find out which key was pressed. When I press tab, it moves to the next field. When I hit the enter key, I want it to move to SKIP the next tab field and move TWO tab fields forward.

Re: [flexcoders] Flex Remoting Options - Any Opinions?

2007-11-15 Thread mattmadhavan
Hello, I am just starting to use graniteDS and starting to likie it. My -ONLY- problem was that, I cannot make it work from within my flexbuilder environment. I want to be able to debug my flexbuilder application talking to my Java side. Can someone please give me steps doing this - I would

[flexcoders] Disable borderskin?

2007-11-15 Thread davidch204
Is there an option to disable the borderskin on a component?

[flexcoders] Re: Sorting a list and then allowing drag drop

2007-11-15 Thread icepaco33
Hello, Just to let you know: The solution is to first make a copy of the Data Provider : (Assuming Data Provider is an ArrayCollection) private var originalList:Array; originalList = List.dataProvider.toData().sclice(); Now you can make all the drag drop ops you want... Afterward you just

[flexcoders] Internal build errors

2007-11-15 Thread duncan mcmillan
Hi I've suddenly been getting An internal build error has occurred please check the error log , has anyone got any refereces as to why these errors happen? also I've never used an error log so could someone please tell how to set it up and refer to it. Thanks again Duncan - Original

Re: [flexcoders] Internal build errors

2007-11-15 Thread Sheriff
usually it either means u have an empty switch statament or some invalid character on the side/ not acutally code ex: a comma/period might be somewhere in the whitespace around the code - Original Message From: duncan mcmillan [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] measure() bug in mx:Tile

2007-11-15 Thread Troy Gilbert
Seems wrong. File a bug so we can investigate further. Done. Troy.

[flexcoders] Error 1009 When Calling a WebService

2007-11-15 Thread jaywood58
I am having a problem getting data from the National Weather Service's National Digital Forecast Database XML Web Service... http://www.weather.gov/xml/ http://www.weather.gov/xml/ . I',m using Flex Builder 2.0.1. The service provides 9 functions for accessing the NWS' vast database of weather

[flexcoders] Drag and Drop within DataGrid

2007-11-15 Thread rueter007
Hello, I have been trying to solve a drag and drop problem with the datagrid but haven't been able to figure out a solution. I have a datagrid which lets the user reorder the items within the grid. It is all fine as long as the user rearranges the items within the viewable area of the grid. But

[flexcoders] Re: Image with rounded corners

2007-11-15 Thread brian.raymes
Check out my post here on the Flex Cookbook: http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailspostid=6502loc=en_USproductid=2 You could probably extend any component and use a mask to round the corners. Brian --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-15 Thread danielvlopes
I think this is huge problem, anyone had any idea to fix this or best way to don't let bad users access the methods? --- In flexcoders@yahoogroups.com, danielvlopes [EMAIL PROTECTED] wrote: Understand, i thinking create session in PHP and when flex comunicate to php send the session to check

RE: [flexcoders] Re: Combobox ItemRenderer is now working as expected

2007-11-15 Thread Alex Harui
I think you want: visible={XML(data)[EMAIL PROTECTED] != 'false'} From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of srikanth_reddy_007 Sent: Thursday, November 15, 2007 4:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re:

RE: [flexcoders] Retrieving file path from mx:Image?

2007-11-15 Thread Alex Harui
Source is typed as Object, but if you give it a string you can read back that string. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of carl_steinhilber Sent: Thursday, November 15, 2007 3:26 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Internal build errors

2007-11-15 Thread jaywood58
I got this one recently when I tried to link in a SWC into my project... turns out the SWC had been compiled in Flex 3, my project was in Flex 2. --- In flexcoders@yahoogroups.com, duncan mcmillan [EMAIL PROTECTED] wrote: Hi I've suddenly been getting An internal build error has occurred

[flexcoders] Re: Retrieving file path from mx:Image?

2007-11-15 Thread carl_steinhilber
Sorry, of course you're correct Alex. I had my Image on the second child of a TabNavigator and forgot to set the creation policy to all... so the Image wasn't getting created if I never actually hit that second tab. The debug message made it sound like the source property was null, when, in fact,

RE: [flexcoders] Disable borderskin?

2007-11-15 Thread Alex Harui
Make it appear disabled or make it not appear at all (borderstyle=none) From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of davidch204 Sent: Thursday, November 15, 2007 1:10 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Disable

[flexcoders] silly question, color of selected linkbar item

2007-11-15 Thread Derrick Anderson
i've got a linkbar and i want to change the color of the selected item in the linkbar, right now the text shows black- and maybe my eyes are buggin out but i don't see any css attributes that alter that color. i can even change the color of the text 'as' it's being clicked (textSelectedColor),

Re: [flexcoders] silly question, color of selected linkbar item

2007-11-15 Thread Brendan Meutzner
Hey Derrick, disabledColor will do the trick for you... Brendan On Nov 15, 2007 8:13 PM, Derrick Anderson [EMAIL PROTECTED] wrote: i've got a linkbar and i want to change the color of the selected item in the linkbar, right now the text shows black- and maybe my eyes are buggin out but

[flexcoders] cf query and cAsE in flex 2.01

2007-11-15 Thread Paul Hastings
got a VO that's built up from simple data fields and bunch of cfqueries (mapped as ArrayCollections not arrays of objects). it's backed w/sql server 2000. in the flex front end i refer to the individual cfquery columns using the original sql server column case (eRay, oRay, etc.). works fine. i

[flexcoders] Re: Error 1009 When Calling a WebService

2007-11-15 Thread bobignacio
Set the following on the line right after the mx:Application tag near the top: mx:TraceTarget / Run your application in debug mode. This will allow you to see all the network traffic going across the wire. See if you actually get a response from the NDFD web service. Hope this helps, Bob I.

[flexcoders] List renderer's malfunction because of Bitmap

2007-11-15 Thread icepaco33
Greetings everyone, I have a problem with my List item renderer : I use a bitmap class (Bitmap) which I put in my TextArea to simululate a highlighter. The TextArea is used in a List renderer. However when I add this Bitmap to the TextArea then the Renderer starts to act very weird : once I

[flexcoders] Re: AMFPHP 1.9 security problem

2007-11-15 Thread danielvlopes
I found this topic in sephirot forum, http://www.sephiroth.it/phpBB/showthread.php?t=7966, they said use authenticate class in beforefilter amfphp function, i try look on this class in my amfphp folder but i don't understand how use... everything i found about authenticate in amfphp is for amfphp

[flexcoders] Swc components - and focus in flex

2007-11-15 Thread djhatrick
I have a swc component that I've added to a UIComponent. I added an FocusEvent.FocusOut on to a text field in flash, I can get a focus In - however I don't get a focusOut event dispatched until the mouse leaves the textfield, but I do when the mouse leaves the browser window. Thanks, Patrick

Re: [flexcoders] 1046: Type was not found or was not a compile-time constant: Session.

2007-11-15 Thread Manu Dhanda
No, it doesn't use Cairngorm. Tom Chiverton-2 wrote: On Thursday 15 Nov 2007, Manu Dhanda wrote: Am having this problem while am trying to migrate my app from Flex 2 to Flex 3. Does it use Cairngorm ? If so, get the latest (2.2.1 ?) release. -- Tom Chiverton Helping to

[flexcoders] Stage problems

2007-11-15 Thread tommek
Hello can any one help me. I'm running this sample app I've download and I'm getting this error: 1119: Access of possibly undefined property window through a reference with static type flash.display:Stage. can any one tell me what I'm doing wrong. This is the mxml code which I'm trying to

RE: [flexcoders] Swc components - and focus in flex

2007-11-15 Thread Alex Harui
Look at how other components that have TextFields implement IFocusManagerComponent From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of djhatrick Sent: Thursday, November 15, 2007 9:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders]

  1   2   >