[flexcoders] Calling a method defined in a script block from an swf... how?

2007-11-30 Thread vrempp
Hi evrybody, I'm wondering how to call the sayHello() method from an inbeded swf. Does anyone have a solution for this? ( The goal is to call the sayHello method (defined in the mxml) from the swf compiled with flash cs3.) ?xml version=1.0 encoding=utf-8? mx:Application

[flexcoders] Wrapper freezes during HTTPService call

2007-11-30 Thread Paul Fischer
I have a web application that is primarily html/jsp. It embeds a Flex app for displaying a DataGrid of data from a web service. While the service is executing, the web page does not respond to clicks on links which would navigate to a different page. The embeded Flex app, however, does

[flexcoders] Re: Subversion clients

2007-11-30 Thread eestes1
I use syncro client that is part of oxygen-it's really simple, straightforward and uncluttered gui to work with. i was trying scplugin as well but disabled it when i jumped to leopard. Again the simplicity of having it built in to the finder interface is very attractive with simple icons and

[flexcoders] Re: ListCollectionView#removeAll wants to dispatch undefined

2007-11-30 Thread florian.salihovic
Thanx for the reply! So would it be alright from the perspective of modelling the application, that i create a field children in each class, that hold references to all of its childs that i want to display? I thought that the treedatadesciptor would be responsible melting the children to

[flexcoders] Arrays, iteration, and referencing local variables?

2007-11-30 Thread flexnubslice
I'm trying to do something like this, but am unsure of the proper language constructs in Flex: var a:String = ; var b:String = ; var c:String = ; private function initApp():void{ var elements:Array = [ a, b, c ]; for( var i:String in elements ){ if(

[flexcoders] TypeError: Error #1006: value is not a function.

2007-11-30 Thread LyraSpace
Hi there. I'm trying to do a very simple urlRequest ... var loader:URLLoader = new URLLoader(); loader.addEventListener(Event.COMPLETE,onLoadCSS); loader.load(new URLRequest(htmlStyles.css)); But I'm getting this error message ... TypeError: Error #1006: value is not a function. at

[flexcoders] Strange multiple select bug in List

2007-11-30 Thread Ken Dunnington
I'm having a problem getting allowMultipleSelection to work properly. I have a form with a List control that's populated by an ArrayCollection. I cannot seem to get multiple selection or dataTips to work. The code for the list is: mx:ArrayCollection id=pages mx:Object name=Home pageID=1

[flexcoders] need urgent help Working with CF8 and flex

2007-11-30 Thread Shakthi. K
Hi, I have developed a flex application which uses CFCs to access data from MySQL 5.0 It works fine on my localhost (installed with CF8 and MySQL 5). But when I upload this to my web host which supports CF8 and MySQL 5, it gives the following error faultCode:Server.Processing

Re: [flexcoders] Get the Security settings back into flash?

2007-11-30 Thread Rick Schmitty
did you find an answer to this? On 14 Mar 2007 17:59:31 -0700, Patrick Lemiuex [EMAIL PROTECTED] wrote: Quick question: Is there a way to pull the security settings back into flash - say for instance you have syndicated a swf and Coldfusion comes back behind your embed tag does a

[flexcoders] Re: Combobox and XML and label functions I cannot seem to get labels to show up

2007-11-30 Thread kuroiryu42
Turns out at some point my data was going away. I am afraid I don't know why, but I have managed to fix it. Seems like the data was getting assigned before the creation complete phase. I was also able to get rid of the label function. I set the labelField. dataProvider={dataSetColl}

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
Pete, should changing the 'url' property of an HTTPService after it is created work? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexnubslice Sent: Friday, November 30, 2007 11:57 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
HTTPService.url isn't marked [Bindable]. Alex, your code mx:HTTPService ... url= {scrmurl}xmlrpc/request.php ... / should have generated a binding warning. Do you have them turned off? - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: Incomplete scrolling

2007-11-30 Thread Richard Rodseth
FWIW, I was able to solve/workaround this by adding an extra HBox as the only child of the Panel, and giving *it* the horizontalAlign and verticalAlign settings. On Nov 30, 2007 11:45 AM, Richard Rodseth [EMAIL PROTECTED] wrote: I have a variable-size dashboard-like component, centered inside a

RE: [flexcoders] FP9.0.60.235 can't catch onPlayStatus ?

2007-11-30 Thread Peter DeHaan
Adnan, You can file Flash Player bugs or feature requests using the following form: http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform Just select Flash Player from the drop down menu and it will get to the correct team. Peter From:

[flexcoders] Application without MXML: Is it possible?

2007-11-30 Thread Dave Glasser
I'm trying to create an Application in pure Actionscript, by subclassing mx.core.Application, and when I run it I get: TypeError: Error #1009: Cannot access a property or method of a null object reference. at

Re: [flexcoders] Application without MXML: Is it possible?

2007-11-30 Thread Jerome Clarke
yeah the command line option for that is -keep or -keep-generated-actionscript I normally use -keep ... quicker to type :p On Dec 1, 2007 3:30 AM, hank williams [EMAIL PROTECTED] wrote: Is what I'm trying to do impossible, at least without adding some amount of setup code that is

[flexcoders] Slider Thumb overlaps end of Track

2007-11-30 Thread ninobronzed
The thumb is centered, and it's two halves hang over the track bar at 0 and at the maximum. This is normal and looks great, but I want my thumb to be in the inside of the track only. It's a rectangle and fits in the track...the edges of the thumb should be flush with the edges of the track

Re: [flexcoders] Passing Parameters, is something like this possible with Flex?

2007-11-30 Thread Steve Mathews
Try something like this: for( var i:String in elements ){ if( Application.application.parameters[i] ) this[i] = Application.application.parameters[i]; } On 11/30/07, flexnubslice [EMAIL PROTECTED] wrote: Instead of posting a ton of : if( Application.application.parameters.x)

Re: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread jeff
On Fri, Nov 30, 2007 at 12:47:17PM -0500, Kevin wrote: Has anyone been successful accessing web services (with the WebService classes) that include an enumeration in them. I cannot get it to work properly and no one seems to have an answer (even the support people at the web service

Re: [flexcoders] Application without MXML: Is it possible?

2007-11-30 Thread hank williams
Is what I'm trying to do impossible, at least without adding some amount of setup code that is normally generated by the MXML preprocessor and isn't documented anywhere? __ As I understand it, this is exactly correct. If you compile an MXML with the option on that generates actionscript (I

[flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread aceoohay
I agree that you cannot tell what type of data a null is. The sort routine(s) has no problem sorting nulls when the non-null data is string. It also works for completely null columns. I think a reasonable solution would be a new column attribute, sortDataType (values: ascii, number, date)

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
I had to finally resort to giving the HTTPService object an id The HTTPService object already had id=contactform. and adjusting that object's ID inside of the initialize block. Do you mean adjusting the HTTPService's 'url' property? - Gordon From:

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
Sorry, I was cc'ing Peter Farland to ask him. I was wondering whether the problem is that the binding isn't working, or that changing the url property isn't working. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt

[flexcoders] Re: toto.jp Wave effect

2007-11-30 Thread mlharrisn
Forgot to add link! http://www.toto.jp

[flexcoders] Re: Module Loader

2007-11-30 Thread Gus
Yep you were right... at the beginning I did it but just after I got the event.COMPLETE when I extracted it from the zip, the factory.create() returned null... and I forgot about that approach... now I used the ModuleInfo and ModuleInfoProxy to wrap the factory and works perfectly... Thanks

Re: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Lex
Whatever I tried, it just wouldn't work. I had to finally resort to giving the HTTPService object an id, and adjusting that object's ID inside of the initialize block. Doing that, worked. Setting the HTTPService url to the bindable var inside of the XML markup, was a no-go. -

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
I set the url property (I use several) of the HTTPService just before I invoke any send() and it works fine. Or did I misunderstand? Come to think of it my name's not Pete, either ;) Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

Re: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Kevin
Ah! Thank you for the suggestions. I took an old machine and installed Eclipse and the Flex Builder Plugins. Here were my results: Flex 2: Ran my WSDL Test and everything worked fine. Flex 2 with Hotfix 2: Ran WSDL Test and it failed with decode errors Flex 2 with Hotfix 3: Ran WSDL Test

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Gordon Smith
scrmurl isn't a dynamic property.. it's declared at compile time as a public var, and should be bindable. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, November 30, 2007 12:23 PM To:

[flexcoders] Re: Events and Non-Display Objects

2007-11-30 Thread bithroop
Yeah that totally makes sense and looks like the proper way of doing things. Thanks Muzak -b --- In flexcoders@yahoogroups.com, Muzak [EMAIL PROTECTED] wrote: I think what you're looking for is a Singleton class that extends EventDispatcher which only purpose is to be able to add listeners

[flexcoders] FP9.0.60.235 can't catch onPlayStatus ?

2007-11-30 Thread Adnan Doric
Hello, It seems that Flash player 9,0,60,235 can't catch NetStram onPlayStatus Event (dispatched when streaming is finished), at least on my computer. I tried with a debugger, it doesn't stop at the breakpoint inside that function at all. It is triggered with 9,0,47,0 on IE, and Firefox. Can

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
You won't be able to {bind} to dynamically created properties easily. There may be a way to set up a binding using AS, not sure. You could just set the url directly in initApp(). Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Peter Farland
Hotfix is a misnomer as applied to the WebService feature - Flex 2.0.1 HF2 coincided with LCDS 2.5 and a new stricter, E4X based implementation of WebService was developed during the LCDS 2.5 release. Many more schema situations were supported and more fixes have been made since, but the effort

Re: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Paul Decoursey
Have you tried Hotfix 3? That had a lot of updates to web service code. I did notice a lot of odd things similar to what was described when I updated to hotfix 3(I didn't install hotfix 2 until that time). Most of the issues were due to Flex actually handling the SOAP calls as they

Re: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Kevin
I am wondering if this is related to the problem I am having: https://bugs.adobe.com/jira/browse/FB-9521 Is there a way to see what was changed in the HotFix? My web services are not behaving as expected and I am wondering if this is a bug. I would love to hear from anyone else who has

RE: [flexcoders] Strange multiple select bug in List

2007-11-30 Thread Alex Harui
multi-select requires CTRL and SHIFT keys along with clicking or arrow keys. Are you doing that? datatips don't show up unless the string can't be fully seen. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ken Dunnington Sent:

RE: [flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-11-30 Thread Peter Farland
mx.utils.ObjectUtil.copy() won't work for Dictionary or Class as these types are not supported by AMF. (I logged bug SDK-13787 to track this). (Also, I think it doesn't make sense to copy a Class instance in AS3 as there is only one definition per application domain). Pete -Original

RE: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Alex Harui
Not sure when I'll get time to look. The basic trick to getting multiline to work is to set the explicitWidth/width of the text widget so it can define its height correctly. The explicitWidth of the renderer is set by the list class before the renderer's measure() is called.

[flexcoders] How to open a flex project that was created elsewhere?

2007-11-30 Thread Michael Pengi
I've downloaded a sample flex application, how do I open it in the flex builder 3 IDE? There is no 'Open Project' menu option, only New...Flex Project and so forth? -- View this message in context:

[flexcoders] Re: need urgent help Working with CF8 and flex

2007-11-30 Thread denny431
Just adjust the path to the CFC. The path on a J2EE installation is: /c:/JRun4/servers/cfusion/cfusion- ear/cfusion-war/ This is where Coldfusion will start to look for CFC's. Build a folder structure from here such as: mysite/cfsource So if you are using RemoteObject the source would be

[flexcoders] Thumb Nail and Indexing

2007-11-30 Thread dranoel1967
I am wanting to create a thumbnail image of files uploaded to my Flex app, as well as gather basic info on the file (size , aspect, etc) File types: Flash swf, flv, mov, mpeg, avi, wmv Background - SQL 2005, .net 2.0, Flex 2 anyone have any thoughts on this ?

Re: [flexcoders] Arrays, iteration, and referencing local variables?

2007-11-30 Thread Lex
Got it with: private function initApp():void{ var elements:Array = [ scrmurl, form_title, form_email, form_subject, form_message, form_submit, category, confirmText, wait, success_title, success ]; for( var i:String in elements ){ if( Application.application.parameters[i] ) this[i]

[flexcoders] Re: Bind a property of an ActionScript generated component

2007-11-30 Thread vixiom
solved it, use binding utils... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=onCreationComplete() mx:Script ![CDATA[ import mx.binding.utils.*;

[flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Kevin
Has anyone been successful accessing web services (with the WebService classes) that include an enumeration in them. I cannot get it to work properly and no one seems to have an answer (even the support people at the web service company...). Take a look at this WSDL to see the structure

[flexcoders] creationComplete Not Firing

2007-11-30 Thread urmacboy
We're experiencing an interesting problem where the function in the creationComplete attribute in the Application tag fails to run. Has anyone else experienced problems with this attribute. The code for our Application tag is as follows: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] Passing Parameters, is something like this possible with Flex?

2007-11-30 Thread flexnubslice
Instead of posting a ton of : if( Application.application.parameters.x) this.x= Application.application.parameters.x; if( Application.application.parameters.y) this.y= Application.application.parameters.y; ... ad nauseam ... I was wondering if it was

[flexcoders] Re: ListCollectionView#removeAll wants to dispatch undefined

2007-11-30 Thread florian.salihovic
I really thought i got it - but i was wrong... i isolated my problem and perhaps someone could elaborate what i need to change and why. Here are the srcs: [FONT=Century Gothic]Ich konnte den Fehler rekonstruieren auch bei einem anderen Modell feststellen. Ich glaube ich hab eine Blockade

RE: [flexcoders] Calling a method defined in a script block from an swf... how?

2007-11-30 Thread Alex Harui
swfloader.content.application.sayHello, but after the complete event. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vrempp Sent: Friday, November 30, 2007 8:44 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Calling a method

[flexcoders] Re: Question

2007-11-30 Thread vixiom
There's a flex job's group here http://tech.groups.yahoo.com/group/flexjobs/ You might also want to send an email to [EMAIL PROTECTED] (just write up the job description and email it) --- In flexcoders@yahoogroups.com, essuark [EMAIL PROTECTED] wrote: Am I allowed to post jobs on this list or

[flexcoders] If Flex is open source, how do we go about changing the language?

2007-11-30 Thread aceoohay
I just ran across what I consider a significant deficiency in Flex. To correct this problem would require an addition of two attributes to the mx:DataGridColumn class. I could make a change to my version of the language, or perhaps I could create an inherited class. However, I feel strongly

Re: [flexcoders] How to open a flex project that was created elsewhere?

2007-11-30 Thread Michael Pengi
Maybe that works in Flex 2, but the menu options in Flex 3 beta 2 are different. Import, then Flex Project, but it want a zip file. The project I'm working with isn't in zip format, it's a folder inside a zip that contains other stuff...iow it's does not seem to be a 'flex project archive'.

[flexcoders] Replace httpservice busy cursor with other indicator but not cursors

2007-11-30 Thread George
Hi guys, The busy clock cursor cannot render smoothly when too much works running in Flash player, so I think it could be better to replace it with other indicators, such as animated SWF some fixed place. Unfortunately I couldn't find mx.rpc.http.HTTPService.as source(rpc package not open?)

[flexcoders] toto.jp Wave effect

2007-11-30 Thread mlharrisn
Hi, Has anyone run across any source code, or have any clue how to begin to develop an effect similar to this ripple effect for as3 when you move the mouse around? Thanks!

[flexcoders] Re: Events and Non-Display Objects

2007-11-30 Thread bithroop
Just a quick follow up... I hooked up Muzak's suggestion and that's exactly what I'm looking for. Thank you Muzak! -b --- In flexcoders@yahoogroups.com, bithroop [EMAIL PROTECTED] wrote: Yeah that totally makes sense and looks like the proper way of doing things. Thanks Muzak -b ---

[flexcoders] Re: creationComplete Not Firing

2007-11-30 Thread Anthony DeBonis
Be sure you put () creationComplete=onCreationComplete() With out parentheses you get warning but no error - but the method does not fire...

Re: [flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-11-30 Thread Douglas Knudsen
take a look at http://www.darronschall.com/weblog/archives/000271.cfm You can use ObjectUtil.copy() and retain types DK On Nov 30, 2007 10:30 AM, polestar11 [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote:

[flexcoders] CSS usage?

2007-11-30 Thread Lex
If I go here and build a CSS sheet: http://examples.adobe.com/flex3/consulting/styleexplorer/Flex3StyleExplorer.html# Where do I instruct the system to use it thereafter? Thanks. Alex

Re: [flexcoders] Web Service Enumerations...Is this a bug?...need help!

2007-11-30 Thread Kevin
I just installed HotFix 3 and I am no longer getting the initial error. Instead I get the following error. Any ideas what this means? FAULT (mx.rpc::Fault)#0 errorID = 0 faultCode = DecodingError faultDetail = (null) faultString = Error #1006: getAttributeByQName is not a function.

Re: [flexcoders] Passing Parameters, is something like this possible with Flex?

2007-11-30 Thread Daniel Freiman
use Application.application.parameters[i] instead of Application.application.parameters.i - Dan Freiman On Nov 30, 2007 11:36 AM, flexnubslice [EMAIL PROTECTED] wrote: Instead of posting a ton of : if( Application.application.parameters.x) this.x=

[flexcoders] Incomplete scrolling

2007-11-30 Thread Richard Rodseth
I have a variable-size dashboard-like component, centered inside a panel. The dashboard is encapsulated in an HBox with a border, and is made up of a couple of tilelists and some repeated items. It resizes correctly as its data changes. My problem is that when the dashboard gets too large to

RE: [flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread Alex Harui
Well, I don't see it as a shortcoming that we default to efficient sort algorithms that assume that all values are of the same type. Seems like all you need is a comparefunction for dates and one for numbers and assign the correct function to the appropriate column. Also note that if you sort

Re: [flexcoders] Thumb Nail and Indexing

2007-11-30 Thread Paul Decoursey
I'd suggest something like FFMpeg or TeleStream FlipFactory for the video files. For the SWF and FLV you can load back into the Flex app and generate thumbnails that way. Paul On Nov 30, 2007, at 12:48 PM, dranoel1967 wrote: I am wanting to create a thumbnail image of files uploaded to my

[flexcoders] Re: Project works then doesn't

2007-11-30 Thread Steve Hueners
Might this be behavior specific to FB3?

RE: [flexcoders] Re: Module Loader

2007-11-30 Thread Alex Harui
Probably not, but it wasnt' clear to me that you needed to get your code loaded under the ModuleManager. I think you could just instantiate the module directly. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gus Sent: Friday, November

[flexcoders] Rails routes and Flex module, relative path?

2007-11-30 Thread nxzone
Hi, I am loading a SWF (main.swf). This swf load other SWF(module.swf). The module.swf is not found because he look in the wrong folder. Main.swf and Module.swf are in the root folder. The url = www.test.com/t34/password Main.swf is showed and work but when main.swf load module.swf. I

[flexcoders] Error 2032 - Stream error

2007-11-30 Thread msabljic
Hello flexcoders, I am having a problem where my Flex application dipplays this error: faultCode:Server.Error.Request faultString:'HTTP request error' faultDetail:'Error: [IOErrorEvent type=ioError bubbles=false cancelable=false eventPhase=2 text=Error #2032: Stream Error.[/CODE] Error is

[flexcoders] Re: Symmetric Key Encryption in Flex Client C# WebServices

2007-11-30 Thread kaleb_pederson
--- In flexcoders@yahoogroups.com, peeyushtuli [EMAIL PROTECTED] wrote: Thank you all for the responses, but I have already tried this one. C# does not have an official implementation for AES, so I had to ignore that one. Actually, it does. AES is a subset of Rijndael. It's basically

RE: [flexcoders] creationComplete Not Firing

2007-11-30 Thread Alex Harui
Does the UI show up or does nothing show up. If nothing, then there's something continously causing invalidations From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of urmacboy Sent: Friday, November 30, 2007 8:52 AM To:

[flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread aceoohay
What is the workaround? The sortCompareFunction does not seem to be reasonable, since a version needs to be written for each column in each grid. This seems like a serious shortcoming... Paul --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: THe default sort code can't

RE: [flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Alex Harui
does it work with the default renderers with wordWrap=true and variableRowHeight=true? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christoph Atteneder Sent: Friday, November 30, 2007 7:43 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Question

2007-11-30 Thread vixiom
doh... employers [EMAIL PROTECTED] searchcoders.com --- In flexcoders@yahoogroups.com, vixiom [EMAIL PROTECTED] wrote: There's a flex job's group here http://tech.groups.yahoo.com/group/flexjobs/ You might also want to send an email to [EMAIL PROTECTED] (just write up the job description

[flexcoders] Question

2007-11-30 Thread essuark
Am I allowed to post jobs on this list or is there a list just for Flex Jobs? thanks Ralph

[flexcoders] Height Problems of List component using itemrenderer with different row height

2007-11-30 Thread Christoph Atteneder
Hi, My problem is following: I have a List component which is filled with a list of properties and I want to know how much space it needs to display all of its items. This only works with single label renderer or renderer with a fixed height, but not with renderer with different row height

RE: [flexcoders] Subversion clients

2007-11-30 Thread Samuel R. Neff
Yeah, VisualSVN really is nice. It's commercial but works really well and they have amazing support. For example, VS2008 was just released and there were some reports of problems with VisualSVN not working with VS2008 (not too surprising) and they fixed all the problems and put out a new

[flexcoders] truly borderless chart (no gaps between chart inside and edge)

2007-11-30 Thread Pan Troglodytes
Well, I fought for a while getting a chart that didn't have ANY gaps on the sides. It was tricky, but I thought I'd share my solution for posterity. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; backgroundColor=green borderColor=blue borderStyle=solid

RE: [flexcoders] Re: Symmetric Key Encryption in Flex Client C# WebServices

2007-11-30 Thread Samuel R. Neff
I don't know what data you're trying to encrypt/decrypt but when we tried using SHAxxx hashing in both AS3 and C# we ended up with problems any time the source data had characters beyond ascii 127 character set. The encryption algorithms in .NET deal with bytes and even though we had tried using

Re: [flexcoders] Actionscript: Copy an Object or Dictionary

2007-11-30 Thread Tom Chiverton
On Friday 30 Nov 2007, polestar11 wrote: Does anyone know how to iterate through an Object / Dictionary copy child items. for each ? -- Tom Chiverton Helping to advantageously enable corporate markets on: http://thefalken.livejournal.com

Re: [flexcoders] Eliminating scrollbars

2007-11-30 Thread Paul Andrews
It's my fault - my post wasn't too explicit. I wasn't particularly thinking of vertical scrollbars. Let's say you had a vertical scrollbar and a width of 100%, this now means you also get a horizontal scrollbar because you can't get the 100% for the component (because of the scrollbar), so a

[flexcoders] Actionscript: Copy an Object or Dictionary

2007-11-30 Thread polestar11
Hi there Does anyone know how to iterate through an Object / Dictionary copy child items. I've tried ObjectUtil, but it only copies over object values, not exact values. cheers tracy

Re: [flexcoders] Flex Charting Width resetting after data comes back

2007-11-30 Thread Tom Chiverton
On Friday 30 Nov 2007, jensen.axel wrote: I have a vbox with a line chart in it's got 100% width at first until the data comes back, when the data gets back it shortens it's own width... i'm a little confused why it doesn't stretch out... Could it be adjusting itself due to having to draw

[flexcoders] Flex Charting Width resetting after data comes back

2007-11-30 Thread jensen.axel
Forgive me for my ignorance, i'm new to the charting side of flex... I have a vbox with a line chart in it's got 100% width at first until the data comes back, when the data gets back it shortens it's own width... i'm a little confused why it doesn't stretch out... has anyone seen this or is it

[flexcoders] Re: How to remove the current sort on a Datagrid

2007-11-30 Thread ruidsoares
Hi again! I feel so stupid! The obvious answer to my problem was to have the id column on the datagrid with the visible property set to false! Arrgh! Anyway, your help was very valuable. Thanks Rui Duarte Silva --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: Richtexteditor, html text generate really bad html !!!

2007-11-30 Thread Tom Chiverton
On Thursday 29 Nov 2007, danielvlopes wrote: What are the devices that you refer to? top of head a stripped down FireFox on an embeded kiosk /top of head -- Tom Chiverton Helping to biannually e-enable customized schemas on: http://thefalken.livejournal.com

Re: [flexcoders] Eliminating scrollbars

2007-11-30 Thread Giles Roadnight
verticalScrollPolicy=off ? On Nov 30, 2007 11:03 AM, Paul Andrews [EMAIL PROTECTED] wrote: I've noticed that in order to eliminate scrollbars on layouts that are percentage based, I'm often choosing magic numbers to avoid the appearance of scrollbars in the layout. Whats the perceived

[flexcoders] Eliminating scrollbars

2007-11-30 Thread Paul Andrews
I've noticed that in order to eliminate scrollbars on layouts that are percentage based, I'm often choosing magic numbers to avoid the appearance of scrollbars in the layout. Whats the perceived best practice to avoid the generation of scrollbars in layouts? Paul

Re: [flexcoders] Re: AIR Window and Mouse management

2007-11-30 Thread Tom Chiverton
On Thursday 29 Nov 2007, Matt Maher wrote: Well, that's just it. I don't have a mouseMove event as I'm trying to test when the mouse is not over a flash container. MouseMove is not heard by this window unless inside of the window... You want to know when the mouse isn't over your application ?

Re: [flexcoders] Subversion clients

2007-11-30 Thread Jens Halm
What Subversion clients do you use, and what do you like or dislike about them? I'm especially interested in opinions about GUI clients on the Mac. I can't say anything about the Mac, but I always use the Subversive Plugin for Eclipse:

[flexcoders] Re: How to remove the current sort on a Datagrid

2007-11-30 Thread ruidsoares
That's exactly the problem. I don't want the id column to be visible as it was only created because of the editedItemPosition not going to the right item when the grid was sorted. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Assuming there is a column with

RE: [flexcoders] Registering flashvar variables properly?

2007-11-30 Thread Tracy Spratt
Oops, missed that, but of course, otherwise this[i] = would have errored, since Application is not dynamic. Thanks' for the correction, Gordon, and never-mind, Alex. So, Alex, this: url= {scrmurl}xmlrpc/request.php should work. How about when you do your send(), you verify scrmurl has

[flexcoders] Re: Sorting problem on date and numbers with null values, I think

2007-11-30 Thread aceoohay
The data is fully populated at the time the column header is clicked. However some of the cells are null. We certainly disagree on this:-) Since a null is a valid result for all data types, it seems to me that any sort algorithm should handle the universe of valid data elements for that

[flexcoders] Re: Error 2032 - Stream error

2007-11-30 Thread Abyss Knight
I just had this same error yesterday and had a couple answers posted. You might try a search on this board, but the checklist I was asked for was: 1. Is it using SSL? 2. Are you using Pragma: no-cache or cache control? 3. Is the server using gzip? 4. Did you check the URL of your HTTPService

[flexcoders] Bind a property of an ActionScript generated component

2007-11-30 Thread vixiom
Is it possible to bind an ActionScript generated component's properties? In the example below 'sq1' will move when the browser is resized but 'sq2' won't. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: Subversion clients

2007-11-30 Thread Stephen Allison
What Subversion clients do you use, and what do you like or dislike about them? I'm especially interested in opinions about GUI clients on the Mac. SVNX. Slightly odd multi-window interface, but beyond that no complaints so far.

Re: [flexcoders] Subversion clients

2007-11-30 Thread Sam Shrefler
Sam: Thanks for the explanation. Even though Gordon is looking for Mac, you gave me a hint on VisualSVN. I've never used it. I've always just left VS to go into Tortoise, but I'll have to give it a try. Thanks! Sam On Nov 30, 2007 9:38 AM, Samuel R. Neff [EMAIL PROTECTED] wrote: Not

[flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-11-30 Thread ben.clinkinbeard
it only copies over object values, not exact values. Huh? --- In flexcoders@yahoogroups.com, polestar11 [EMAIL PROTECTED] wrote: Hi there Does anyone know how to iterate through an Object / Dictionary copy child items. I've tried ObjectUtil, but it only copies over object values, not

RE: [flexcoders] Subversion clients

2007-11-30 Thread Mike Krotscheck
We currently use the subclipse plugin, and it's been rock-solid for us, even if it's a little slow at times. Nevertheless if subversive really has fewer bugs it certainly warrants exploration. Michael Krotscheck Senior Developer RESOURCE INTERACTIVE http://www.resource.com/

Re: [flexcoders] Subversion clients

2007-11-30 Thread Paul Decoursey
I've used subclise and I really don't care for it. I have not tried subversive. I've reverted to just using the command line on the Mac. i used to use SVNX, which isn't that bad, in fact I might even recommend it. Paul On Nov 30, 2007, at 7:17 AM, Mike Krotscheck wrote: We currently

RE: [flexcoders] Subversion clients

2007-11-30 Thread Samuel R. Neff
Not Mac, but hope this helps... For eclipse we use Subclipse. It's ok--get's job done--but a lot of times when we want to use more advanced features of Subversion we feel it's easier to open Windows Explorer and use TortoiseSVN. In Visual Studio we use VisualSVN which is a TortoiseSVN

[flexcoders] Project works then doesn't

2007-11-30 Thread Steve Hueners
I'm working on a project that initially compiles and runs correctly. I change a mx:Label control to a mx:TextArea - no other property changes at all: mx:VBox label={data.foo} mx:Label text={data.bar}/ /mx:VBox becomes: mx:VBox

[flexcoders] Re: Actionscript: Copy an Object or Dictionary

2007-11-30 Thread polestar11
--- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: it only copies over object values, not exact values. Huh? @Tom How would one bind the keys to the new dictionary children? var newDict:Dictionary = new Dictionary(); var item:Class for each(item in

  1   2   >