[flexcoders] Help -- ArgumentError on SharedObject.getLocal call

2008-03-25 Thread rkbeach
Hi All, I have 3 web applications...in 2 of them, in an init method (creationComplete=init())of the application mxml file, I invoke the SharedObject as follows var appSO:SharedObject = SharedObject.getLocal(roleObjectFile,/); Now, I am modifying the init method in the 3rd web application...and

Re: [flexcoders] Re: AMFPHP MySQL Results Object

2008-03-25 Thread Daniel Tse
Thanks Aaron, I'll see what I can look up on the RemoteObject as well. CaffeineWabbit, Thanks for the pointers. I saw that Mike Potter's AMFPHP example also created a php array instead of using the mysql results object but... I noticed on the AMFPHP browser page it can actually create a table

RE: [flexcoders] A persistent logon system in flex?

2008-03-25 Thread Rick Winscot
Just remember that the shared object is a plain-text storage device and by default its contents are not encrypted. Hashing would help - but will only deter the casual/inexperienced hacker. A hardened approach will require more design time. Since the shared object is essentially cookies for Flash.

[flexcoders] bug in drop-in ItemRenderer or Newbie mistake?

2008-03-25 Thread hoytlee2000
Hello, In all the examples I have seen online most of the Drop-In ItemRenderers use an ArrayCollection when a CheckBox is used as the DataProvider. I tried using an XMLList collection instead and I don't get any of the CheckBoxes in the ItemRenderer to be checked when the value is true, by

[flexcoders] Re: ComboBoxes as ItemRenderer

2008-03-25 Thread quantum_ohm
Yes, thx Doug, that's what finally I thought... Simplier (but not so 'clean' as one combo in each column...) I'm in a hurry, so for now I'm going to do this way ! --- In flexcoders@yahoogroups.com, dougco2000 [EMAIL PROTECTED] wrote: My advice is to make the itemrenderer a separate component

[flexcoders] Re: Help -- ArgumentError on SharedObject.getLocal call

2008-03-25 Thread manchanda.vivek
Hi one thing more I tried to Google this and i got this :- Make sure you have an instance of the object referenced in your project. The object is not linked into your .swf upon compiling the project, because there is not a reference to the object anywhere in the project, so the RemoteObject call

[flexcoders] Re: BlazeDS License Error

2008-03-25 Thread cyrill.zadra
Hi, Try to treplace the jar files in your flex-builder project with the jwar files from the new BlazeDS. You will find them in the blazeds.war file. regards Cyrill --- In flexcoders@yahoogroups.com, Dominic Pazula [EMAIL PROTECTED] wrote: Deleted the old version of BlazeDS (including the

[flexcoders] Re: ArrayCollection of String as single-column DataGrid provider

2008-03-25 Thread mario.blataric
Ok, how do I display and edit ArrayCollection that contains only String types in it if I can't use DG? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: You cannot use simple types (String, Number) in a DG. You have to use objects like: mx:Object label=String1 /

[flexcoders] Flex component swf file

2008-03-25 Thread Remya
Hi I have an application which uses a pop up window containing a flex component. I need to port the application to a different machine. I am able to transfer my main application file and pop up window's swf file but I am not able to do the same thing with the component. This component is used by

Re: [flexcoders] [Offtopic] Flex Email Application

2008-03-25 Thread Tom Chiverton
On Thursday 20 Mar 2008, Tom Chiverton wrote: Any ideas why this could happen on a Linux system?? Nope. I even tried middle clicking ! At home the hover effect on the balls work, but they still don't do anything. Dragging doesn't work either. Could you put a debug build (on an alternative URL)

[flexcoders] Re: dataGrid - Column width

2008-03-25 Thread manchanda.vivek
Sure ,you can set the columns width for each columns in Percentage and then you can check how much you need the width . --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Sure, but you'll have to visit every dataprovider item and call measureText() on its text.

[flexcoders] Re: Help -- ArgumentError on SharedObject.getLocal call

2008-03-25 Thread manchanda.vivek
Hi This can be bcoz your 3rd web method might be over right the rest 2 method , or try only run the 3rd method and comment the other 2 method if it work then the 3rd one might over right the rest 2 method . --- In flexcoders@yahoogroups.com, rkbeach [EMAIL PROTECTED] wrote: Hi All, I

Re: [flexcoders] arraycollection and tree

2008-03-25 Thread Nayan Savla
Hi Luke, Just create a List in Java and return it. alternatively you can add it to a Value Object and then return it. below is example of my function, CategoriesVo is simple java class with three public variables. public List getCategoriesAll(){ List list = new

Re: [flexcoders] Re: Using old (2.01) History Manager in Flex 3.x

2008-03-25 Thread Tom Chiverton
On Friday 21 Mar 2008, One Person wrote: As stated before I don't have time before my release to make the change to get things to work with the new Flex 3 way of doing things. So carry on using 2.0.1 then. -- Tom Chiverton Helping to completely cluster interactive architectures on:

Re: [flexcoders] How do I remove an effect?

2008-03-25 Thread Christian
I'm not sure if this is possible, but I know that in the past, I've set effects using setStyle('effectName', EffectClassInstance). Would it be possible to just use that and set it to null perhaps? On Tue, Mar 25, 2008 at 3:09 PM, Josh McDonald [EMAIL PROTECTED] wrote: Hey guys, How do I

Re: [flexcoders] Re: ArrayCollection of String as single-column DataGrid provider

2008-03-25 Thread Scott Melby
You have a couple of choices... you could translate the strings to objects with a single property (loop over them), then feed that array to a standard DataGrid. Or, if you plan to be doing a lot of this, you could create a custom component that does the job internally. It is a pretty trivial

[flexcoders] Re: how to make opaque panel border?

2008-03-25 Thread Paul Whitelock
There is a style borderAlpha that you can use to change the opacity of the title bar, control bar and sides of the Panel. You can experiment with some different Panel styles and see the generated style code using a design application that I wrote for FBPanelBgSkin (my free component that adds new

[flexcoders] RPC Fault (rss feeds)

2008-03-25 Thread bornaeon
Hi all. I am working in my full flex site, and in one part of that, I want to load my rss feed from my blog in wordpress. that's working well when I run my project localy, and all dynamic objects is correct, but when I upload that on my webserver and check that on it, I see this Error message:

[flexcoders] Re: A persistent logon system in flex?

2008-03-25 Thread andrewwestberg
If you're looking for a commercial system, nitrolm.com has this capability. Talk to me off-list if you want me to demo it for you in an online meeting. -Andrew Westberg --- In flexcoders@yahoogroups.com, mbhoisie [EMAIL PROTECTED] wrote: I'm trying to implement a remember me feature in a

[flexcoders] Re: Dynamic Context Menu

2008-03-25 Thread cyrill.zadra
Thanks for your answer. I think the menuselect Event could be the correct direction. As far as I could read from the api documentation the menuSelect Event functions are executed bevore the ContextMenu is shown. In my app the menuSelect function is requesting data from a server (RemoteObject).

[flexcoders] Re: Unable to view the TreeNode after adding the ArrayCollection Elements..

2008-03-25 Thread sk_acura
I am able to solve the issue.. Stupid me..I forgot the [Bindable] keyword..!!! Thanks a lot.. Mars --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Other folks have complained about the XML to object conversion. Start adding trace statements to see if your data is

[flexcoders] Re: BlazeDS License Error

2008-03-25 Thread Dominic Pazula
I get this error when I start Tomcat. This is a new install from the turnkey zip file. There are no projects in the webapps folder (besides the samples). --- In flexcoders@yahoogroups.com, cyrill.zadra [EMAIL PROTECTED] wrote: Hi, Try to treplace the jar files in your flex-builder

[flexcoders] Re: Accessing XML attribute through ArrayCollection

2008-03-25 Thread jer_ela
its not clear where board comes from, but assuming it exists and is an xml var that has an id attrib one of the following should work trace(board.attribute(id)); trace([EMAIL PROTECTED]); --- In flexcoders@yahoogroups.com, Tony Armstrong [EMAIL PROTECTED] wrote: Hello all, I am using an

[flexcoders] Re: BlazeDS License Error

2008-03-25 Thread cyrill.zadra
Do you start Tomcat through Flex Builder or the startup.bat script? Do you have any flex jar (flex-bootstrap.jar,flex-messaging.jar ..) files in your tomcat/lib folder? --- In flexcoders@yahoogroups.com, Dominic Pazula [EMAIL PROTECTED] wrote: I get this error when I start Tomcat. This is a

[flexcoders] Re: applying effect/transition to module whilst loading.

2008-03-25 Thread aceoohay
Alex: The system I am working on is comprised of many panels, each panel is a module. I use moduleLoader to load the modules. As the panel is displayed on the stage what I would like is to apply an effect/transition so that it doesn't just popup, but does something neat while rendering such

[flexcoders] Re: how to make opaque panel border?

2008-03-25 Thread actionscript_czar
There is a style called borderAlpha that you can set to 1.0 so that it is fully opaque. --- In flexcoders@yahoogroups.com, coder3 [EMAIL PROTECTED] wrote: the default panel border is semi-transparent, that's why if I add 2 panels at the same position, the title of the panel will look

[flexcoders] Re: BlazeDS License Error

2008-03-25 Thread Dominic Pazula
I started Tomcat from the startup.bat in the bin/ location. There are flex jars in the blazeds webapp (as well as the other samples that ship with it). I'm still confused WHY blazeDS is checking for a license for Fleb Builder. There is nothing in the BlazeDS location that is not open source.

RE: [flexcoders] Re: AMFPHP MySQL Results Object

2008-03-25 Thread Aaron Hergenreder
What I found useful was to make an ArrayCollection class in PHP like the following (note: I didn't come up with this idea, but it works great, but I cannot find the link where I found this) class ArrayCollection extends ArrayObject { var $_explicitType = flex.messaging.io.ArrayCollection;

[flexcoders] Re: bug in drop-in ItemRenderer or Newbie mistake?

2008-03-25 Thread ben.clinkinbeard
Its probably an issue with the data being treated as a string but LabelFunction won't help you. I don't know that you can use a DropIn that is expecting a boolean with XML data. I think you'd need to override the data setter and test data == true HTH, Ben --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Any tutorial about getting started with Flex, BlazeDS and Spring... FROM SCR

2008-03-25 Thread César P .
For me it works the following way: 1. Create a Dynamic Web Project 2. Extract the BlazeDS war to my project in the corresponding folder usually YourProject/WebContent 3. Right click on the project Flex Project Nature Add Flex Project Nature 4. Application Server Type Other 5. Done If you

[flexcoders] Re: BlazeDS License Error

2008-03-25 Thread Dominic Pazula
I got the error to go away. I re-entered my license key in Flex Builder. My question remains: Why does BlazeDS, which is open source, care about the license of FB? There were no FB projects being built in there. It was just the standalone free server download... --- In

Re: SPAM-LOW: [flexcoders] Re: applying effect/transition to module whilst loading.

2008-03-25 Thread David Henry
Alex, Consider writing a custom component to wrap your module loader in. You can do your effects on the wrapper while the module loads inside. You could even use the wrapper to add a border and some window decorations such as a minimize or close button for the wrapper/module. Sorry I don't

[flexcoders] localized context menu

2008-03-25 Thread M.Javed
Hi, There is a little problem I am facing in my localized application that when I try to show some localized text in context menu it doesnt display the localzed text, instead it displays questions marks. The rest of application is working absolutely fine with localzed strings. is there any

[flexcoders] Perl with Flex

2008-03-25 Thread moonrchand
Hi, how can i integrate perl script with flex. simple example is appreciated. Thanks in Advance, Chandra

[flexcoders] Help converting from rtmp using fds to amf using blaze

2008-03-25 Thread Body Works Studio
Hi all, we just got our copy of FB3 pro, and as part of the upgrading project I just found out I need to pull out our rtmpChannel usage and replace it as Blaze does not support rtmp. Does anyone know of a good tutorial on configuring blaze beyond what comes with turnkey. Or does anyone have

[flexcoders] Flex Builder - output filename

2008-03-25 Thread christiangrail
Hi All, I need to set the output filename of an flex application within the Flex Builder. I know how to do it with the mxml compiler and the maven plug-in, but I need to set the filename directly in the Flex Builder. I have tried to directly edit the .actionScriptProperties file, but till now

Re: [flexcoders] Flex Builder - output filename

2008-03-25 Thread Tom Chiverton
On Tuesday 25 Mar 2008, christiangrail wrote: Does anybody know a way to do this? You can add command line parameters (--output for instance) in the project properties. -- Tom Chiverton Helping to paradigmatically aggregate strategic metrics on: http://thefalken.livejournal.com

[flexcoders] Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
I need to get the domain the Flex app is running in. My is hosted at aaa.com A page on bbb.com embeds my app on their page. At runtime I need to know that my app is running on bbb.com I've tried LocalConnecition.domain but that gives me aaa.com.

[flexcoders] Re: Cache image in Security Sandbox

2008-03-25 Thread kramus0
Does nobody else have ever thought about that? Thanks for your help. Markus --- In flexcoders@yahoogroups.com, kramus0 [EMAIL PROTECTED] wrote: I have build a simple image cache in Flex that is used to cache all loaded images from different web sites. When I deployed that version I got

[flexcoders] Re: Flex 3: Cloning WebService instance

2008-03-25 Thread handitan
Cool! I was being told by someone else about it too. Will try it out. Thx Randy! --- In flexcoders@yahoogroups.com, Randy Martin [EMAIL PROTECTED] wrote: You really need to take a look at the webservice introspection wizard in FB 3. The code it generates handles asynchronous calls to the

Re: [flexcoders] Get the Domain the Flex app is running in

2008-03-25 Thread Tom Chiverton
On Tuesday 25 Mar 2008, shivkxr wrote: I need to get the domain the Flex app is running in. Have a look in Application.application -- Tom Chiverton Helping to greatly integrate enterprise interfaces on: http://thefalken.livejournal.com

[flexcoders] Re: Automate build for large apps?

2008-03-25 Thread toofah_gm
Does anyone have an answer for this? --- In flexcoders@yahoogroups.com, flexinator2 [EMAIL PROTECTED] wrote: We have a very large Flex2 application with several hundred classes and around a dozen RSL (swc files). We've been using the flex2 eclipse IDE to do builds but would like to automate

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread markflex2007
Hi Don, I have read the code in your demo. but this one is show us how to read data from coldfusion cfc and save to flex Arraycollection. My question is how to update database with cfc after I pass updated ArrayCOllection from Flex. Thanks a lot Mark --- In flexcoders@yahoogroups.com, Don

Re: [flexcoders] Re: Flex 3: Cloning WebService instance

2008-03-25 Thread Jon Bradley
Then have a blast trying to deal with WSDL security issues because you have to manually form the headers yourself, making the whole process quite painful. I wish there were a better way to do it on OS X. There's a .NET application that can help if you're on Windows (http://

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
Tom, Thank you for the reply. However, what exactly am I looking for in Application.application? The Application.application.url is not what I need. Since I don't see help on Application.application I don't really know :)

[flexcoders] Form upload

2008-03-25 Thread Giro
I want to discuss about form file upload. I don't need form file upload source code. I more want to learn about how to process a form with a file upload option and more form fields. What is more correct when you press submit button? I think that i can first upload file, and when this finish

[flexcoders] Re: Flex Builder 3: *major* bug in deleting linked folders

2008-03-25 Thread Dmitri Girski
I've submitted a bug related to this problem (export release build deletes files contents in the release dir) https://bugs.adobe.com/jira/browse/FB-12306 Dmitri. --- In flexcoders@yahoogroups.com, thirtyfivemph [EMAIL PROTECTED] wrote: I am trying my best to not go to my blog and rant

[flexcoders] Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread shivkxr
Is there a way to determine (at runtime) the values for allowScriptAccess and allowNetwork assess at runtime? In my case, I don't control the html and my Flex app is embeded in pages on other websites and some of them set these parameters such that my ExternalInterface.addCallBack() fails with

RE: [flexcoders] Re: Accessing XML attribute through ArrayCollection

2008-03-25 Thread Tracy Spratt
The two resultFormats have their own issues, you need to decide first which you want to use. I advise e4x. You do not get the search and filter capability with the default object tree. If you go e4x, you will either need to use XMLListCollection , or manually loop over the XMLList and

RE: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Tracy Spratt
Pretty sure Tom was speaking of Application.url. Hmm, maybe you could use externalInterface to ask the html wrapper for its ?location? Something like that, I haven't done much browser scripting lately. Tracy From: flexcoders@yahoogroups.com

RE: [flexcoders] Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread Tracy Spratt
Try..catch around the ExternalInterface call? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shivkxr Sent: Tuesday, March 25, 2008 11:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Need to determine

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Tom Chiverton
On Tuesday 25 Mar 2008, shivkxr wrote: Since I don't see help on Application.application I don't really know :) http://livedocs.adobe.com/flex/3/langref/mx/core/Application.html#url was going to be my suggestion :-) It looks trivial to extract the domain from the string. Something like

[flexcoders] TabNavigator scrollbar space - BUG ?

2008-03-25 Thread bobpardoe1959
I have a TabNavigator and I add children to it in actionscript. Each child has its style set to top=2, bottom=2, left=2, right=2. When displayed the tabnavigator has a 20ish pixel gap on bottom and on the right of the container area. Left and top are aligned correctly. It looks as if it is

[flexcoders] Flex App Hangs on Streaming FLV Seek

2008-03-25 Thread caffeinewabbit
Good afternoon all. In my current Flex 2 project, I'm switching our video playback components from using progressive download to streaming playback via FMS 3. Everything's working great and doing what it should, but occasionally when I perform a seek on a NetStream, my whole application freezes

[flexcoders] Binding WebService Data to ArrayCollection

2008-03-25 Thread mjweyland
I have what I hope is a simple question and have been struggling with this for what feels way too long. I am calling a web service, here is the WSDL ?xml version=1.0 encoding=utf-8? soap:Envelope xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; xmlns:xsd=http://www.w3.org/2001/XMLSchema;

[flexcoders] Re: Form upload

2008-03-25 Thread shivkxr
Giro, Yes, you can additional form fields while uploading a file. var request:URLRequest = new URLRequest(uploadUrl); request.method = POST; request.data = requestData; fileReference.upload(request, fileFieldName); requestData is a string in the form of name/value pairs seperated with an

[flexcoders] ComboBoxes + Label in ItemRenderer

2008-03-25 Thread quantum_ohm
Hello, How could I reference a label with a kind of 'selectedIndex' ? It might sound dummy, but I'd like to follow the idea (http://blog.dougco.com/category/coding/flex/) used with the CBs to apply it to a label... The problem is that the result in the label doesn't stay in its right place when I

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
Tom, The issue is not the parsing, it's that the url points to my domain. I don't need my domain, I need the domain the app is hosted in. Does that make sense?

[flexcoders] Re: Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread shivkxr
Try..catch around the ExternalInterface call? Tracy That's the best that can be done?

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
Hmm, maybe you could use externalInterface to ask the html wrapper for its ?location? Something like that, I haven't done much browser scripting lately. Tracy Well, I can't use ExternalInterface due to security restrictions :). That is how I am/was getting this information but now due to

[flexcoders] Heights of repeated datagrids

2008-03-25 Thread Paul Steven
Still trying to figure out how to control the heights of datagrids in a repeated custom component. If I do not set the height of the datagrid then all repeated datagrids seem to acquire a height which is the height necessary to display the largest amount of data. Therefore I end up with some

[flexcoders] Re: Perl with Flex

2008-03-25 Thread Andrew Strader
--- In flexcoders@yahoogroups.com, moonrchand [EMAIL PROTECTED] wrote: Hi, how can i integrate perl script with flex. simple example is appreciated. Thanks in Advance, Chandra It is not clear what you mean by integrate? You can host a Perl script on a web server, run it as CGI or

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Jeffry Houser
I re-read your original post. Application.application.url shows the URL to the swf. You are serving up a swf from 'bbb.com' but the page is located on 'aaa.com'. I do not believe there is any way to find the URL that the page is being served from in your situation. If the swf and

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Tom Chiverton
On Tuesday 25 Mar 2008, shivkxr wrote: The issue is not the parsing, it's that the url points to my domain. I don't need my domain, I need the domain the app is hosted in. I think I get it. I've never had to deal with content on one host embeded in content on another one. Do you have control

[flexcoders] Re: creating MXML components with new-operator in ActionScript

2008-03-25 Thread vdeprojects
--- In flexcoders@yahoogroups.com, mavdzee [EMAIL PROTECTED] wrote: Hi, I have noticed that when I create an MXML component in ActionScript, that the children of the MXML component are not created until I add it as a child of another component. Is there any way to force creation of

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Joe
Security.allowDomain(your domain); On Tue, Mar 25, 2008 at 12:41 PM, shivkxr [EMAIL PROTECTED] wrote: Hmm, maybe you could use externalInterface to ask the html wrapper for its ?location? Something like that, I haven't done much browser scripting lately. Tracy Well, I can't use

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
Do you have control over the embeding HTML ? Sadly, no. FYI: The other website is MySpace.com Adobe have been kind enough to work with them and tighten the security so much that the app has no idea where it is or what it can do. They (MySpace) control the html and the object tag. Even if you

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
JavaScript. However, with different domains, the JavaScript would violate the security sandbox. I understand this is a limitation of the Flash Player. I do not expect this limitation to be lifted as it open ups potential for cross-site scripting. If Flash Player gave me the domain

Re: [flexcoders] Re: Strange Flex Builder 3 Plug in behaviour: ctrl-click / F3 broken

2008-03-25 Thread Robert Ross
my god i thought it was just me! I think i use this shortcut more than any other, it seemed to work fine in Beta 3. Also it used to show you the relative locations of instances of *whatever* you had hilighted in the vertical bar on the right, similar to the current search functionallity. I miss

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
--- In flexcoders@yahoogroups.com, Joe [EMAIL PROTECTED] wrote: Security.allowDomain(your domain); Joe, I don't follow. There is no cross scripting going on, so how does allowDomain play a part here?

[flexcoders] Re: Flex 3: Cloning WebService instance

2008-03-25 Thread handitan
Ugh, I heard about that issue. I thought that had been resolved on B2. Thx for the info, Jon. --- In flexcoders@yahoogroups.com, Jon Bradley [EMAIL PROTECTED] wrote: Then have a blast trying to deal with WSDL security issues because you have to manually form the headers yourself, making the

[flexcoders] Re: Automate build for large apps?

2008-03-25 Thread Cato Paus
Hi I would recomend you to check out the www.theriabook.com Chapther 6 is about End-to-End Rapid Application Development with Flex Data Management Services, the Chapther is about using build.xml Java, Flex,Ant and SQL. isbn on the book: ISBN 0-9777622-2-x --- In flexcoders@yahoogroups.com,

Re: [flexcoders] Re: flex builder 3 on os x very very slow in debug mode

2008-03-25 Thread Willy Ci
or you can try Opera, if that still give you problem I think IE 5 is your lost hope. Willy On Mon, Mar 24, 2008 at 7:07 PM, Josh McDonald [EMAIL PROTECTED] wrote: There's definitely some problems with the debug flash player on OS X. I get hard lockups (nothing but the mouse working, not

Re: [flexcoders] Re: Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread Jon Bradley
On Mar 25, 2008, at 12:32 PM, shivkxr wrote: Try..catch around the ExternalInterface call? Tracy That's the best that can be done? Unless you have control over the HTML, yes that's the best you can do. That's the point of this security by the way. SWF files cannot control the sandbox

Re: [flexcoders] Re: Automate build for large apps?

2008-03-25 Thread Robert Stehwien
Sorry for the terse reply, but try the following: * Ant (probably your best bet since you use nant) * http://labs.adobe.com/wiki/index.php/Flex_Ant_Tasks * http://code.google.com/p/flex-template/ * http://code.google.com/p/antennae/ * Rake * http://code.google.com/p/flexible-rails/ *

RE: [flexcoders] Heights of repeated datagrids

2008-03-25 Thread Tracy Spratt
I know repeater will allow for different heights of the items, but have had this problem myself and have no ready solution. Calculating the height is tough, because of the wordWrap. Perhaps there is a property you could use, like measuredHeight, that you could use to set the height

[flexcoders] Can a Listener return a value

2008-03-25 Thread markgoldin_2000
Can a Listener program return a value back to a program that set this listener up? Thanks

[flexcoders] Re: RPC Fault (rss feeds)

2008-03-25 Thread wesley.petrowski
If you don't have permissions to put files at the root of the server, you can use Security.loadPolicyFile() to load a crossdomain.xml from a custom location. --- In flexcoders@yahoogroups.com, bornaeon [EMAIL PROTECTED] wrote: Hi all. I am working in my full flex site, and in one part of

Re: [flexcoders] Re: AMFPHP MySQL Results Object

2008-03-25 Thread Aaron Miller
Hi Daniel, * I noticed on the AMFPHP browser page it can actually create a table based on the recordset that is returned. e.g. the table automatically changes based on my sql result and it doesn't seem like there's any specific binding to columns. I'm curious as to how they did that. *You

[flexcoders] Re: Datagrid enter key on the last row

2008-03-25 Thread mr_j_harris
--- In flexcoders@yahoogroups.com, shrike6_7 [EMAIL PROTECTED] wrote: Hi, with an editable datagrid, if you edit a cell value in the last row and you press Enter Key, flex don't commit change and the cell don't exit from editable state. Any suggestion? Thanks Try the tab key perhaps. Or

[flexcoders] General Wondering :)

2008-03-25 Thread Mario Falomir
Hi, I have a question, well actually Im looking for some advice, Im developing an application and I have a singleton class called UIManager which takes care of some of the visual stuff displayed on the main UI such as texts, labels and whatnot, for instance one of the functions of this class is

Re: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Jeffry Houser
The Flash Player does give the domain it is running from. As others have stated, Application.application.url will give it to you. You don't want to get get the domain it is running off of, you want to get the domain of the web page that embeds it. shivkxr wrote: JavaScript.

[flexcoders] Installing Ant Plugin for FB3 StandAlone

2008-03-25 Thread toofah_gm
How do you install the regular eclipse ant plugins into FB3 StandAlone product?

[flexcoders] Re: ComboBoxes + Label in ItemRenderer

2008-03-25 Thread dougco2000
You need to move your code that sets the label: criticite.text = ( resultGravite * resultProbabilite ).toString(); into the doShow() routine since that is where the objects get (re)set everytime the grid changes. -doug --- In flexcoders@yahoogroups.com, quantum_ohm [EMAIL PROTECTED] wrote:

[flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread markflex2007
Hi, I try to pass flex ArrayCollection to coldfusion cfc like following ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:Script ![CDATA[ import mx.controls.Alert; import

Re: [flexcoders] Re: How to pass Flex ArrayCollection to Coldfusion CFC?

2008-03-25 Thread Derrick Anderson
how about just switching the argument type to 'ANY' to get past the error, then u can see what type of object is sent to coldfusion. On Tue, Mar 25, 2008 at 2:20 PM, markflex2007 [EMAIL PROTECTED] wrote: Hi, I try to pass flex ArrayCollection to coldfusion cfc like following ?xml

[flexcoders] Developer Exam

2008-03-25 Thread VELO
Hi Folks... I wanna to share my happiness... I Pass o Adobe Flex 2 Developer Exam. Thanks to all who help me, specially who helps me off list. VELO

RE: [flexcoders] Can a Listener return a value

2008-03-25 Thread Mike Krotscheck
foo.addEventListener( Event.SomeEvent, responderEventHandler ); private function responderEventHandler(event:Event):void { event.target.publicParameter = bar; } Michael Krotscheck Senior Developer RESOURCE INTERACTIVE http://www.resource.com/ www.resource.com

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
The Flash Player does give the domain it is running from. As others have stated, Application.application.url will give it to you. You don't want to get get the domain it is running off of, you want to get the domain of the web page that embeds it. That is correct. I need the domain

[flexcoders] How do I set width to 100% in actionscript?

2008-03-25 Thread luvfotography
How do I set the width to 100% using actionscript?? It only allows a number - not a string!?! var newcanvas:Canvas = new Canvas(); newcanvas.width = 100%; 1067: Implicit coercion of a value of type String to an unrelated

[flexcoders] Re: Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread shivkxr
--- In flexcoders@yahoogroups.com, Jon Bradley [EMAIL PROTECTED] wrote: On Mar 25, 2008, at 12:32 PM, shivkxr wrote: Try..catch around the ExternalInterface call? Tracy That's the best that can be done? Unless you have control over the HTML, yes that's the best you can do.

Re: [flexcoders] How do I set width to 100% in actionscript?

2008-03-25 Thread Clint Tredway
you have to use percentWidth On Tue, Mar 25, 2008 at 1:43 PM, luvfotography [EMAIL PROTECTED] wrote: How do I set the width to 100% using actionscript?? It only allows a number - not a string!?! var newcanvas:Canvas = new Canvas(); newcanvas.width = 100%; 1067: Implicit coercion of a

RE: [flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread Alex Harui
Try BrowserManager.url From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shivkxr Sent: Tuesday, March 25, 2008 11:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Get the Domain the Flex app is running in The Flash

Re: [flexcoders] How do I set width to 100% in actionscript?

2008-03-25 Thread Dennis Falling
Someone's probably beaten me to this but, use percentWidth instead. On Tue, Mar 25, 2008 at 1:43 PM, luvfotography [EMAIL PROTECTED] wrote: How do I set the width to 100% using actionscript?? It only allows a number - not a string!?! var newcanvas:Canvas = new Canvas(); newcanvas.width

RE: [flexcoders] Can a Listener return a value

2008-03-25 Thread Alex Harui
That works, but is considered a hack in the strictest sense. The W3C Events spec indicates that event properties are read-only. Flash allows writing to them to make setup easier (constructor args are easy to mix up). From: flexcoders@yahoogroups.com

RE: [flexcoders] General Wondering :)

2008-03-25 Thread Alex Harui
Use ResourceManager? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mario Falomir Sent: Tuesday, March 25, 2008 10:51 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] General Wondering :) Hi, I have a question, well actually

RE: [flexcoders] Re: creating MXML components with new-operator in ActionScript

2008-03-25 Thread Alex Harui
For performance reasons, children are not created until the container is attached to the parent. In general, this problem is a warning flag. It says that your central code is pushing information downward which means that it has knowledge of the visuals. Modern architectures prefer that

[flexcoders] Re: Need to determine allowScriptAccess/allowNetworkAccess at run time

2008-03-25 Thread shivkxr
Jason, No ExternalInterface.available on tell you if the browser supports it. It returns true irrespective of security settings.

RE: [flexcoders] localized context menu

2008-03-25 Thread Alex Harui
I think that's a known player bug. It still uses double-byte for ContextMenus on Windows. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of M.Javed Sent: Tuesday, March 25, 2008 7:33 AM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Get the Domain the Flex app is running in

2008-03-25 Thread shivkxr
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Try BrowserManager.url Alex, Yes, I think it should work barring any security issues I might encounter. I'll post my findings here. Thanks.

  1   2   >