Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2009-01-02 Thread li wenzhi
you need to set the wmode to transparent: varflashvars ={}; varparams={wmode:transparent}; varattributes ={}; swfobject.embedSWF(myContent.swf,myContent,300,120,9.0.0,expressInstall.swf,flashvars,params,attributes); -- lwz7512 Ultrapower Flex Team

Re: [flexcoders] hideing a tab in a TabNavigator

2009-01-02 Thread Mario Vieira
editing the display list is a way, or simply trying to set the tabNav children visible to true/false is also a goal you can create your UI with a method, and so perform checks to see who will be added at run time or not you can create item renderers that uses XML, and perform further

Re: [flexcoders] Flex Builder 3 and SWFObject with IE - blocked content

2009-01-02 Thread Rick Schmitty
Thanks for the reply Li, but that does not work. I think the trasnparent mode was for popups or something if I recall For completeness of Flex Coders search, Aran Rhee on the swfobject list provided the fix: 1. give your page(s) the mark of the web - by adding this line to your HTML page. This

[flexcoders] Re: sending vo to CF from Flex throws error

2009-01-02 Thread valdhor
You are expecting an argument of type DecisionBlockVO but the error says it can't find a type of DecisionFileVO. Are you sure you have the same types set up in both Flex and CF8? It looks like the type on the Flex end is DecisionFileVO and the type on the CF8 end is DecisionBlockVO. HTH

[flexcoders] Unsupported tags in ASDoc

2009-01-02 Thread dopenhagen
How does the ASDoc utility tool handle unsupported tags ? The reason for me to think about this is that I wish to have an easily followable standard for TODO, FIXME, HACK and BRAG tags in our codebase. In general it seems like the most common standard is as follows: // [Tag]: [Description]

Re: [flexcoders] Re: sending vo to CF from Flex throws error

2009-01-02 Thread Derrick Anderson
i'm sorry, i'm getting this error in a few places and the error i pasted didn't match the code i copied - however the 2 types do match up in the case of the error and i've followed all the rules for making this happen, aliased the cfc with the path, put in remoteclass metadata on AS value object,

Re: [flexcoders] Any Developers on a Mac?

2009-01-02 Thread Paul Andrews
Arghh.. I should have never said anything - daughter drops ipod and it's now rather unhappy - three weeks out of warranty... :-( - Original Message - From: Paul Andrews To: flexcoders@yahoogroups.com Sent: Thursday, January 01, 2009 12:37 PM Subject: Re: [flexcoders] Any

Re: [flexcoders] sending vo to CF from Flex throws error

2009-01-02 Thread Paul Hastings
Derrick Anderson wrote: the error is: Could not find the ColdFusion Component or Interface API.winn.portal.1_0.callingApplication.vo.DecisionFileVO. Ensure that the name is correct and that the component or interface exists. It definitely exists, but it always throws this error- any

[flexcoders] How setup flash player interface language

2009-01-02 Thread Robert Was
After fp debug version update 10 player displays his interface (interesting for me: trace window and error messages) in language of my non-english OS. Is it possible to revert to old english translation? -- Flexcoders Mailing List FAQ:

[flexcoders] Is it possible to have the swf and LCDS app on different servers?

2009-01-02 Thread lb100lb
I have a flex client from which I would like to make RemoteObject calls through LCDS to a J2EE server. Is it possible for my swf to be on a different server from my LCDS app? If so, how should my client be configured, compiled and deployed? What would be deployed to my LCDS server? How would

[flexcoders] Re: CSS style in itemrenderer

2009-01-02 Thread vincy8080
--- In flexcoders@yahoogroups.com, Manish Jethani manish.jeth...@... wrote: On Wed, Dec 31, 2008 at 9:34 PM, vincy8080 vincy8...@... wrote: Why is the CSS style not applied to my button in the datagrid itemrenderer (see code below)? What should I do to apply the style buttonStyle to the

[flexcoders] Detecting Enter Key After Editing a Datagrid Control

2009-01-02 Thread blissweb
Hi, Is there any quick way to run a function after someone hits enter after editing a datagrid cell. Ideally I want it to move to the next field if tabbed and insert a new row if they hit enter. I see there is a enter=func for TextInput... but how do I get this into the Datagrid editing

[flexcoders] FLEX soap client and php soap client

2009-01-02 Thread ocslhk
Hello, This is my first post here and the first time i use yahoo groups. I have searched for something similar on the boards but haven't found it. Anyway I am quite new flex and I'm building my first app real app. I have an app running on a php server, and I'm using soap to communicate with

[flexcoders] 1180 Error

2009-01-02 Thread jason1701e
Hello people, I have the following Address Class: package com.jherrington { public class Address { private var _first:String = ''; public function set first(str:String):void { _first = str; } public function get first():String {

Re: [flexcoders] sending vo to CF from Flex throws error

2009-01-02 Thread Derrick Anderson
yes, it's not mapped paths- and I can pull DecisionFileVO's FROM the cfc, the only problem is when I try to send the same one back. The specific code is this cffunction name=savePage access=public returntype=void cfargument name=page

[flexcoders] AdvancedDataGrid Tree - Help Required - Urgent

2009-01-02 Thread muruga
Hi I have advanceddatagrid in which i am displaying the data in Tree structure. Since the data is huge and it is taking lots of time to retrieve from databse, we wanted build the tree dynamically. Means initially we want to display the tree only will the parent nodes. Only when the user expands

RE: [flexcoders] Re: Resizing Images.

2009-01-02 Thread Keith Reinfeld
Not sure what I am looking at... Is the 'good image' the original or a successful manipulation? If you are scaling up from a smaller image then you are almost sure to get 'jaggies', especially on diagonal lines. Smoothing can help to minimize jaggies but can't be relied upon to completely

Re: [flexcoders] ToggleButtonBar with one or more ComboBoxes instead of buttons: How to build it?

2009-01-02 Thread Alan Shaw
Thanks, I should be more clear. The dataProvider would be like a Tree's, so for example an array where some of the elements are leaves (- buttons in the bar) and some are arrays (- dropdown lists in the bar) (no deeper arrays, and no folder names). I want the user to be able to choose a single

[flexcoders] flex builder 3 on mini notebooks

2009-01-02 Thread hworke
Hi now a days the stores are full of those $300 to $500 mini notebooks with intel atom processor and up to 1 GB memory. Did any one try to install and use the Flex builder 3 on any of those mini laptops? If so how was the performance? Regards

[flexcoders] Re: Can't remove an object?!

2009-01-02 Thread Nate Pearson
I had my remove effect typed as fade instead of Fade. That's what did it. --- In flexcoders@yahoogroups.com, Manish Jethani manish.jeth...@... wrote: On Thu, Jan 1, 2009 at 6:30 AM, Nate Pearson napearso...@... wrote: I'm adding this opaque loading overlay to my application when it loads.

Re: [flexcoders] Re: Can't remove an object?!

2009-01-02 Thread Igor Costa
Try to addChild before you set the properties. If you're using as PopUp you will need that. Regards Igor On Fri, Jan 2, 2009 at 10:13 AM, Nate Pearson napearso...@yahoo.com wrote: I had my remove effect typed as fade instead of Fade. That's what did it. --- In flexcoders@yahoogroups.com

Re: [flexcoders] Re: Can't remove an object?!

2009-01-02 Thread Igor Costa
My mistake, You're problem is on removing. So where and when you call the remove function? Igor On Fri, Jan 2, 2009 at 10:18 AM, Igor Costa igorco...@gmail.com wrote: Try to addChild before you set the properties. If you're using as PopUp you will need that. Regards Igor On Fri, Jan

Re: [flexcoders] itemRenderer ComboBox

2009-01-02 Thread Mike Oliver
Ok, so the itemEditor = ComboBox with the above Override and here it is as it stands and works (up to a point). mx:DataGridColumn headerText=Reason Stopped dataField=reason_med_stopped_oidCol editorDataField=selectedItem mx:itemEditor mx:Component

Re: [flexcoders] ToggleButtonBar with one or more ComboBoxes instead of buttons: How to build it?

2009-01-02 Thread Manish Jethani
On Fri, Jan 2, 2009 at 11:06 PM, Alan Shaw noden...@gmail.com wrote: The dataProvider would be like a Tree's, so for example an array where some of the elements are leaves (- buttons in the bar) and some are arrays (- dropdown lists in the bar) (no deeper arrays, and no folder names). I want

Re: [flexcoders] 1180 Error

2009-01-02 Thread Manish Jethani
On Fri, Jan 2, 2009 at 3:46 AM, jason1701e ja...@jasonbyer.com wrote: I have the following Address Class: package com.jherrington { public class Address { [snip] The problem is that I receive an 1180 Error saying the following: Call to a possible undefined method Address.

Re: [flexcoders] Detecting Enter Key After Editing a Datagrid Control

2009-01-02 Thread Manish Jethani
On Thu, Jan 1, 2009 at 3:29 PM, blissweb bliss...@hotmail.com wrote: Is there any quick way to run a function after someone hits enter after editing a datagrid cell. Ideally I want it to move to the next field if tabbed and insert a new row if they hit enter. I see there is a enter=func

Re: [flexcoders] itemRenderer ComboBox

2009-01-02 Thread Manish Jethani
On Sat, Jan 3, 2009 at 12:16 AM, Mike Oliver moli...@corenttech.com wrote: [snip] and that saves to the database, all great...however, the editorDataField=selectedItem puts [object Object] into the Grid instead of the data element. I tried editorDataField=selectedItem.data but that fails.

Re: [flexcoders] flex builder 3 on mini notebooks

2009-01-02 Thread Ralf Bokelberg
I had one (1.8 Atom) for a day and decided to send it back. It was too weak to scroll large websites, so i don't even bothered to install something like FlexBuilder. Ralf. On Fri, Jan 2, 2009 at 7:09 PM, hworke kanps...@gmail.com wrote: Hi now a days the stores are full of those $300 to $500

Re: [flexcoders] itemRenderer ComboBox

2009-01-02 Thread Mike Oliver
Perhaps its because it is an itemEditor, but just tried it and value in the editorDataField saves the label string to the Grid, not the 'data' element. Ollie Manish Jethani wrote: On Sat, Jan 3, 2009 at 12:16 AM, Mike Oliver moli...@corenttech.com wrote: [snip] and that saves to the

Re: [flexcoders] ToggleButtonBar with one or more ComboBoxes instead of buttons: How to build it?

2009-01-02 Thread Alan Shaw
Thanks! -A On Fri, Jan 2, 2009 at 1:56 PM, Manish Jethani manish.jeth...@gmail.comwrote: On Fri, Jan 2, 2009 at 11:06 PM, Alan Shaw noden...@gmail.comnodename%40gmail.com wrote: The dataProvider would be like a Tree's, so for example an array where some of the elements are leaves

[flexcoders] Creating Asynchronous Classes

2009-01-02 Thread nathanpdaniel
Is there a primer on creating asynchronous classes? I've been building an app that runs a CRC32 check on each file (which requires looking at every byte of every file). It doesn't cause issues when the files are small text files, but when they're 40mb video files, the app hangs till

[flexcoders] model in UIComponent

2009-01-02 Thread stldvd
I've got some UI text fields and labels bound to properties in my model. I'm dispatching an event which, when listened to, causes a popup to appear: var newRulesetWindow:IFlexDisplayObject = PopUpManager.createPopUp(this, NewRuleset, true);

[flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread wkolcz
Thank you to those that have taken the time to try to help me understand AS RemoteObjects. Its much more detailed than the mxml version, but that is why I want to learn it. Having said that... When creating a DAO Class for CRUD, is it necessary / best practice declare the operation name? I

RE: [flexcoders] Creating Asynchronous Classes

2009-01-02 Thread Kevin Benz
We use MD5 and understand the issue completely. We use classes that look at the file a chunk at a time as we don't want to load 60+MB MP4 files into a ByteArray. Our solution did help in keeping the general memory overhead under control. The issue becomes one of time as although our Air client can

re: [flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread Wally Kolcz
Wait..CFCs have methods, not operations So do I remove the Operation variables and just create a function like: public function create(petData:Object):void { ro.create(petData); ro.create.addEventListener(FaultEvent.FAULT, faultHandler);

RE: [flexcoders] flex builder 3 on mini notebooks

2009-01-02 Thread Jim Hayes
I've got an eee901 with that spec, and it's an OK little machine for when I'm out and about and want low weight, small size and long battery. Performance is not so bad for what it is, but I've never bothered running flexbuilder on it. When I started with flexbuilder 2 I ran it on a 1.6 single

Re: [flexcoders] AS3 RemoteObjects and Operations

2009-01-02 Thread Simon Bailey
Hi Wally, For some examples of hooking up coldfusion to flex check the below links. They are using PureMVC but if your simply view source and check out the proxy and delegate classes you will see the simple calls to cf and handling of the returned data. Sure there is room for

[flexcoders] how to receive params from html .... in flash

2009-01-02 Thread v.cekvenich
http://yakovfain.javadevelopersjournal.com/passing_parameters_to_flex_that_works.htm I can do this an flex. But... what if I am doing .as project, not flex. How do I receive an argument? tia, .V

[flexcoders] Re: AdvancedDataGrid Tree - Help Required - Urgent

2009-01-02 Thread Amy
--- In flexcoders@yahoogroups.com, muruga murugave...@... wrote: Hi I have advanceddatagrid in which i am displaying the data in Tree structure. Since the data is huge and it is taking lots of time to retrieve from databse, we wanted build the tree dynamically. Means initially we want

Re: [flexcoders] how to receive params from html .... in flash

2009-01-02 Thread ivo
You can access it thru the loaderInfo (http://livedocs.adobe.com/flex/3/langref/flash/display/LoaderInfo.html) var serverURL:String; var port:String; public function mySwf{ serverURL = String(loaderInfo.parameters['serverURL']); port = String(loaderInfo.parameters['port']); } - Ivo

[flexcoders] AIR code signing certificate

2009-01-02 Thread arieljake
I am trying to purchase an AIR code signing certificate from Chosen Security. They have 2 plans, one is a corporate certificate and the other is a personal certificate. They are refusing to issue me a personal certificate in the name of my company which is registered as a Fictitious Business Name,

Re: [flexcoders] AIR code signing certificate

2009-01-02 Thread ivo
Have you considered other vendors? (http://help.adobe.com/en_US/AIR/1.5/devappshtml/WS5b3ccc516d4fbf351e63e3d118666ade46-7ff0.html) Might just be not well thought out options from that particular one, you are denied a personal cert in your business name and you are also denied a corp cert for

RE: [flexcoders] hideing a tab in a TabNavigator

2009-01-02 Thread Tracy Spratt
I would use a TabBar whose dataProvider content was dynamically driven, to show or hide tabs as desired. I would have that TabBar drive a Viewstack. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mario Vieira Sent:

RE: [flexcoders] Where did my CurrentTarget go?

2009-01-02 Thread Tracy Spratt
How do you know it is gone, and what do you mean by gone? Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mike Oliver Sent: Thursday, January 01, 2009 8:19 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Where

[flexcoders] Re: hideing a tab in a TabNavigator

2009-01-02 Thread Mayur
Hi, If you know which Tab (UI child) not to show. Then it is much easier. visible = false; includeInLayout = false; Beware : This neither removers your object nor frees memory. Happy Flexing ~ Mayur --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: I would use a TabBar