RE: [flexcoders] Rounding error

2008-12-18 Thread Gregor Kiddie
most of the info out there is in C/C++ but you should be able to pick up something if it doesn't sound too much like overkill. Or Use Alchemy and turn it into AS code. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street,

Re: [flexcoders] How to open the popup many time?

2008-12-18 Thread Haykel BEN JEMIA
You can't show one instance many times. You will have to create as many instances as you need windows. private function createWindow(message:String):void { var win:BasicWindow = new BasicWindow(); win.showText = message; win.open(); } You will have to manage all the instances created.

Re: [flexcoders] Database connection from AIR application

2008-12-18 Thread kotha poornima
Hi Fidel, First of all Thanks for the reply. And i need to clarify one more thing from you: If we are going to write any server-side code like java or coldfusion then we have to deploy in Tomcat or Weblogic Servers right!!! Then how we can say the application as Desktop application rather than a

[flexcoders] Get Children function

2008-12-18 Thread lorenzo.boaro
Hi, i've this problem... i created a class that extends a Panel, named CustomPanel. CustomPanel contains a CustomViewStack (that extends ViewStack) and CustomViewStack contains 2 differents panel. i would retrieve CustomViewStack children from CustomPanel. How can i reach this? thanks a

RE: [flexcoders] Get Children function

2008-12-18 Thread Kenneth Sutherland
Presuming you've given your custom viewstack an ID inside the custom panel you'd call that then get the selectedChild or getChildAt for that viewstack. CustomPanel CustomViewStack id='myStack' Panel id='panel1' / Panel id='panel2' /

[flexcoders] Re: Get Children function

2008-12-18 Thread lorenzo.boaro
ok but to reach this from as3? thanks Lorenzo --- In flexcoders@yahoogroups.com, Kenneth Sutherland kenneth.sutherl...@... wrote: Presuming you've given your custom viewstack an ID inside the custom panel you'd call that then get the selectedChild or getChildAt for that viewstack.

RE: [flexcoders] Re: Get Children function

2008-12-18 Thread Kenneth Sutherland
Pretty much the same thing. You should have something like the following var myStack : CustomViewStack = new CustomeViewStack(); so myStack.getChildAt(0) will return the first child (providing it has at least one child). Kenneth. From: flexcoders@yahoogroups.com

Re: [flexcoders] OLAPDataGrid Modify The headers

2008-12-18 Thread Tom Chiverton
On Tuesday 16 Dec 2008, frielingts wrote: But i cannot figure out how do the same for the second level column headers. Any clues or insight? Would a custom row renderer do the job ? -- Tom Chiverton Helping to heterogeneously target collaborative guinine best-of-breed users

[flexcoders] Re: Get Children function

2008-12-18 Thread lorenzo.boaro
Thanks Kenneth --- In flexcoders@yahoogroups.com, Kenneth Sutherland kenneth.sutherl...@... wrote: Pretty much the same thing. You should have something like the following var myStack : CustomViewStack = new CustomeViewStack(); so myStack.getChildAt(0) will return the

[flexcoders] An other custom event

2008-12-18 Thread lorenzo.boaro
Hi, i can't understand the custom event business! can you help me? i'll explain the problem.. i've created this class: package events { import flash.events.Event; import mx.containers.Panel; public class NewEvent extends Event {

[flexcoders] Big issue with keyboard mapping on Windows

2008-12-18 Thread Sebastien ARBOGAST
I'm currently developing a Flex 3 business application on a Mac laptop with a French Belgian keyboard. Everything worked great until some customers started to notice that they can't type some characters in my app under Windows. It seems like the main problem is with the top digit keys on the main

[flexcoders] Re: An other custom event

2008-12-18 Thread lorenzo.boaro
FLIP_EVENT stands for NEW_EVENTwhen i this code i made mistakes... thanks again --- In flexcoders@yahoogroups.com, lorenzo.boaro lore...@... wrote: Hi, i can't understand the custom event business! can you help me? i'll explain the problem.. i've created this class: package

Re: [flexcoders] An other custom event

2008-12-18 Thread Haykel BEN JEMIA
You have to add the event listener to the object that dispatches the event you want to listen to. If your panels have the ids panel1 and panel2 for example, you have to do: panel1.addEventListener(NewEvent.FLIP_EVENT, test); panel2.addEventListener(NewEvent.FLIP_EVENT, test); and not

[flexcoders] blazeds handling error messages from java to flex

2008-12-18 Thread v6_kranthi
Hi Everyone, I am new to flex and am currently facing some problem, this is what i want, i have java as backend(services) and flex as front end, i have blazeds in the middle to provide flex interaction with java. Now i want to handle the exceptions generated by java to be handled by flex. I

[flexcoders] Re: SWF file format question - SymbolClass Tag

2008-12-18 Thread aaron smith
Actually, I could be wrong. would it make more sense if it was the DoABC tag? There's a field on DoABC called ABCData - I would assume that's the bytecode. hmm. i'll keep looking arund. if anyone has any ideas hook me up. On Wed, Dec 17, 2008 at 1:44 PM, aaron smith

Re: [flexcoders] How focusOut Event works in Flex

2008-12-18 Thread koti reddy
Thank you for your response...Show and Hide events are working in proper way which i expected...But Is their any way can i stop going to other tab if user filled half of his form and he has some error messages to look at as Alerts Before going to other tab. thanks

[flexcoders] Rich text editor customization

2008-12-18 Thread Mayank Vora
Hi, I wanted to know if there is a way to embed images using Rich Text Editor. Has anyone tried customizing RTE to embed html images. Regards, Mayank

[flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread icodeflex
I think RSLs are the key to keeping file side down on your Flex apps. The Flex framework is about 1.5 megs worth of code, and it only gets bigger if youre doing charting, rpc, etc. A Flex app gets a tough hit dragging all this supporting code into the app. That said though, if you reference these

[flexcoders] Force SuperTabNavigator tabs to be properly sized even if not showed

2008-12-18 Thread maxime.decaix
Hi all, I'm writing an IRC Client in Flex using the SuperTabNavigator to manage channels and privates. Each tab contains an canvas containing an HBox. Their which is fixed to 100%. I noticed that if I access the hbox.width value before clicking the tab, the value is less than the value after

[flexcoders] Re: An other custom event

2008-12-18 Thread lorenzo.boaro
tahnks now it works... an other question... if i modify theevent class to pass a panel public static const NEW_EVENT:String = newEvent; private var currentPanel:Panel; override public function clone():Event {

[flexcoders] Help trying to create a slightly complex border.

2008-12-18 Thread dave_defusion
I'm trying to create a postage stamp like border - which would look like a border of overlapping circles - and am having issues. I want a constant fill and line/stroke style for all elements of my border. I was using degrafa to do this using circles and repeaters but couldn't get a single stroke

Re: [flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread Manish Jethani
On Wed, Dec 17, 2008 at 9:26 AM, devenhariyani devenhariy...@yahoo.com wrote: Does anyone know where I can find some good examples of flex apps written completely in ActionScript 3? I did some quick searches on Google, but didn't find much. This viewer app is done in pure ActionScript 3 using

Re: [flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread Tom Chiverton
On Thursday 18 Dec 2008, Manish Jethani wrote: AS3 (without Flex) isn't going to buy you much. If you call your app a widget though, I agree Flex is too much for that. The world needs a mini-Flex, a widget development language. This is called JavaScript :-) -- Tom Chiverton Helping to

Re: [flexcoders] Database connection from AIR application

2008-12-18 Thread Tom Chiverton
On Thursday 18 Dec 2008, Fidel Viegas wrote: No, you need to write server-side code in java, php, ruby, .net, etc..., or your can use a gateway such as merapi. There are some projects out there trying to make ActionScript native connectors, such as

Re: [flexcoders] Bug: history.js issues in IE7

2008-12-18 Thread Tom Chiverton
On Wednesday 17 Dec 2008, flexaustin wrote: roughly 200 pixels wide and 15 pixels tall, that has the name IFRAME id=ie_historyFrame. Is the page throwing a JavaScript or 404 error for some code from the embed template ? Is it safe to remove the history.js file and if I do this will I need

Re: [flexcoders] How to open the popup many time?

2008-12-18 Thread Fotis Chatzinikos
I think he means re-opening the window after a user closes it? Is that the case Mark? If so keep a reference to your window instance and call open on it via a button as you already do,... If you want multiple windows, change : private var win:BasicWindow = new BasicWindow(); to: private var

[flexcoders] Re: Error Message

2008-12-18 Thread valdhor
The destination property will look in the services-config.xml file for a matching destination. Flex can then use this destination to find your server. It looks as though you don't have that destination set in your services-config.xml file. Check your projects properties for the location of the

[flexcoders] Statusbar goes blank after popup

2008-12-18 Thread danielrkrueger
Why does the AIR application status bar go blank after a popup window?

Re: [flexcoders] An other custom event

2008-12-18 Thread Fotis Chatzinikos
what is : FLIP_EVENT ? it does not look defined... On Thu, Dec 18, 2008 at 1:09 PM, lorenzo.boaro lore...@katamail.com wrote: Hi, i can't understand the custom event business! can you help me? i'll explain the problem.. i've created this class: package events { import

Re: [flexcoders] An other custom event

2008-12-18 Thread Fotis Chatzinikos
disregard this... I read the first mail, before seeing your second mail and answers... On Thu, Dec 18, 2008 at 4:05 PM, Fotis Chatzinikos fotis.chatzini...@gmail.com wrote: what is : FLIP_EVENT ? it does not look defined... On Thu, Dec 18, 2008 at 1:09 PM, lorenzo.boaro

Re: [flexcoders] How focusOut Event works in Flex

2008-12-18 Thread Fotis Chatzinikos
I usually disable the other tabs on errors so they cannot click them, but i remember a case where i could use the change event to stop it from changing the selectedIndex... I cannot remember what i did thought... Have a look at the docs for your container. Anybody else remembers how to do this?

Re: [flexcoders] blazeds handling error messages from java to flex

2008-12-18 Thread Fotis Chatzinikos
Why do not you catch the exception in the backend and return an error code to the frond end? On Thu, Dec 18, 2008 at 1:10 AM, v6_kranthi v6_kran...@yahoo.com wrote: Hi Everyone, I am new to flex and am currently facing some problem, this is what i want, i have java as

Re: [flexcoders] Re: An other custom event

2008-12-18 Thread Haykel BEN JEMIA
The panel that fired the event is e.target! The curentPanel is a property of the NewEvent itself, so you access it directly through e.currentPanel, but before, you have either to make it public or implement a public getter for it. As I said, if with currentPanel you just want to save a reference

[flexcoders] Re: An other custom event

2008-12-18 Thread lorenzo.boaro
you have perfectly reason!!! thanks a lot... can i pose you the last question? i've an array collection like this (written completely from as3!!) mx:Array mx:Object monday=23 tuesday=45 / mx:Object monday=33 tuesday=90 / mx:Object monday=13 tuesday=15 / /mx:Array can i access fields names

[flexcoders] Re: Bug: history.js issues in IE7

2008-12-18 Thread flexaustin
No erros are being thrown in IE. Just the big box being included after all the page content. I set the iframe display to 'none' in the history.js file. Once the app is compiled and goes through QA I will update this post on if that worked or not. --- In flexcoders@yahoogroups.com, Tom

[flexcoders] Tables in Rich Text Editor

2008-12-18 Thread Jeroen De Vos
Hi, Perhaps one of the most asked questions on the list: when will the Rich Text Editor support tables? I had high hopes with Flash Player 10 and the Text Layout Framework, but alas, no tables. Anyone has any luck extending the RTE to support tables? Thanks, Jeroen. Jeroen De Vos C/ICT -

[flexcoders] Re: File Explorer

2008-12-18 Thread Amy
--- In flexcoders@yahoogroups.com, Fotis Chatzinikos fotis.chatzini...@... wrote: Depends on your style / preferences... XML might be easier to handle but arrays are much faster to wire and compute.. I use the following array based structure , where parent helps upward tree traversal

[flexcoders] Re: File Explorer

2008-12-18 Thread Amy
--- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: Amy, I have never worked with HierarchicalCollectionView. What are its advantages over e4x XML? Is it mainly integration with AdvancedDataGrid? It is part of DataVisualization, yes, but you don't have to use it with ADG.

[flexcoders] LCDS RTMPS connection forced closed

2008-12-18 Thread Daniel Harfleet
Hi, we are running into a problem with RTMPS on LCDS 2.6 . If anyone has any ideas, or is experiencing similar problems, please let me know, many thanks dan 15:26:35,575 INFO [STDOUT] [LCDS]SocketServer 'my-rtmps-SocketServer' has accepted new Connection '13257590'. 15:26:35,576 INFO

Re: [flexcoders] Re: An other custom event

2008-12-18 Thread Haykel BEN JEMIA
If your array has the id a for example, you can do: for each (var o:Object in a) { for (var p:Object in o) { trace(p + + o[p]); } } You can access the properties of an object like with an array. Haykel Ben Jemia Allmas Web RIA Development http://www.allmas-tn.com On

[flexcoders] Re: Error Message

2008-12-18 Thread jch92592
Valdhor, Thank you for the reply. I reviewed the referenced site and it helps, but, I think I need an example of how to update the services-config.xml fiel to point to server that would be great. jh --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: The destination property

[flexcoders] Degrafa Meter Component

2008-12-18 Thread scott chidester
I created a configurable vertical meter component using Degrafa for a project I am working on. Thought I would share it with the group in case some one else has a similar need. http://www.txtracks.com/flex-examples/degrafa-meter/degrafatemplate.html

[flexcoders] Re: Error Message

2008-12-18 Thread oneworld95
Try this: http://www.adobe.com/devnet/flex/articles/rpc_service_03.html -Alex --- In flexcoders@yahoogroups.com, jch92592 jch92...@... wrote: Valdhor, Thank you for the reply. I reviewed the referenced site and it helps, but, I think I need an example of how to update the

Re: [flexcoders] Re: File Explorer

2008-12-18 Thread Fotis Chatzinikos
Hi Amy, I replied to your mail because it was the last in the conversation (I do not use the web based interface-just gmail), and i usually reply to the last message and not the original question...Does this mess up the web view? Your solution is similar to mine, i just use a custom data

[flexcoders] Re: blazeds handling error messages from java to flex

2008-12-18 Thread v6_kranthi
HI Fotis Chatzinikos, I don't want to handle at the backend because that will make all my services to be modified and it will be a lot of rework. Please suggest me if there is any way to do it at front end. Thankyou, Regards, V.Kranthi. --- In flexcoders@yahoogroups.com, Fotis Chatzinikos

[flexcoders] Re: Degrafa Meter Component

2008-12-18 Thread oneworld95
Very nice. Thanks for sharing. -Alex --- In flexcoders@yahoogroups.com, scott chidester scott_chides...@... wrote: I created a configurable vertical meter component using Degrafa for a project I am working on. Thought I would share it with the group in case some one else has a similar need.

[flexcoders] Customizing the ADG?

2008-12-18 Thread oneworld95
I'd like to customize the AdvancedDataGrid so it has some buttons at the top to enable Next/Previous. I've got the paging mechanism working, but it's not a custom ADG. How do I package the buttons and the code into a custom ADG so users can just drop it in using either an SWC or other method?

[flexcoders] Button hotspot for skins that aren't rectangular borders

2008-12-18 Thread Todd
Hello All, I have a button with a skin that isn't a rectangular border. What's the best way to have the button only change states when the user mouses over the perceived button bounds (with an irregular skin). For example, I have a button and custom skin that looks like: |-\ | \ |

[flexcoders] Re: Error Message

2008-12-18 Thread valdhor
You may like to check out http://blogs.adobe.com/flexdoc/2007/02/hello_world_application_for_fl_1.html --- In flexcoders@yahoogroups.com, jch92592 jch92...@... wrote: Valdhor, Thank you for the reply. I reviewed the referenced site and it helps, but, I think I need an example of how to

Re: [flexcoders] Re: File Explorer

2008-12-18 Thread Dan Vega
This is great stuff, thanks so much to all of you. For the record I am not arguing with anyone, I am just trying to learn the most efficient way of doing things. With that being said and a ton of screwing around with code I have come up with my solution (half way there). I have decided to only

[flexcoders] Re: Button hotspot for skins that aren't rectangular borders

2008-12-18 Thread Todd
Hmmm...the formatting previewed correctly, but was totally messed up during the actual post, let me try again: |-\ eol | \ eol | \eol | /eol | / eol |-/ eol --- In flexcoders@yahoogroups.com, Todd tpreka...@...

[flexcoders] Re: Error Message

2008-12-18 Thread valdhor
Basically, you want to create a destination in the services-config.xml file that points to your server. Something like: endpoint uri=http://www.example.com/flex2gateway/; class=flex.messaging.endpoints.AMFEndpoint/ Also, make sure you have compiler settings set for for this. Something like

[flexcoders] Re: An other custom event

2008-12-18 Thread lorenzo.boaro
hi, i'll hope that you are very patient... i'll try your code...but not works..maybe i made mistake in creating the custom provider... i have this class public dynamic class CustomProvider extends Object { private var test:String; private var

[flexcoders] Tree and array data

2008-12-18 Thread Dan Vega
I am in the middle of building a file explorer and I have come to a stumbling block. I have a simple screen that has a tree on the left and a grid on the right. My ColdFusion components return an array and I end up with something that looks like this. So far it works great but all of my

[flexcoders] Re: How focusOut Event works in Flex

2008-12-18 Thread Amy
--- In flexcoders@yahoogroups.com, koti reddy koti_reddy...@... wrote: Thank you for your response...Show and Hide events are working in proper way which i expected...But Is their any way can i stop going to other tab if user filled half of his form and he has some error messages to look at

Re: [flexcoders] Re: An other custom event

2008-12-18 Thread Haykel BEN JEMIA
This is a bit different. In the last example, the objects were generic with dynamic properties (are not declared). The class CustomProvider is dynamic, which means it can hold dynamic properties, but the properties in your code (monday, tuesday) are declared, hence not dynamic. The for..in loop

[flexcoders] VSlider, snap to tickmarks?

2008-12-18 Thread aphexyuri
Hi I've got a slider that has different values based on params passed to it. I populate the tick marks with an array of possible values the slider can have, and would like to snap the thumbs to the tickmarks. Is this possible. Thanks Yuri

[flexcoders] Passing a varibable back to ActionScript via HTTPRequest

2008-12-18 Thread wkolcz
I have a CF page that generates a Unique ID (UUID). I have an HTTPRequest passes information to a CF page and I want it to generate the number and then return it to ActionScript where it can use it as a local variable. Any idea on how to do that? Does the HTTPRequest return a value? Does it have

[flexcoders] Re: An other custom event

2008-12-18 Thread lorenzo.boaro
But if i would have a dynamic object like mine one and the reads values in the correct order, for example: first object: production test monday 23 tuesday 45 second object: production test 2 monday 34 tuesday 56 and so on... when i try to rint the object fields are not in the correct order...

[flexcoders] Re: VSlider, snap to tickmarks?

2008-12-18 Thread aphexyuri
Forgot to mention...the possible values are not evenly incremented, so using snapInterval isn't possible. --- In flexcoders@yahoogroups.com, aphexyuri yuriv...@... wrote: Hi I've got a slider that has different values based on params passed to it. I populate the tick marks with an array of

Re: [flexcoders] VSlider, snap to tickmarks?

2008-12-18 Thread Manish Jethani
On Thu, Dec 18, 2008 at 10:49 PM, aphexyuri yuriv...@yahoo.co.uk wrote: I've got a slider that has different values based on params passed to it. I populate the tick marks with an array of possible values the slider can have, and would like to snap the thumbs to the tickmarks. I think your

Re: [flexcoders] Re: An other custom event

2008-12-18 Thread Manish Jethani
On Thu, Dec 18, 2008 at 10:56 PM, lorenzo.boaro lore...@katamail.com wrote: when i try to rint the object fields are not in the correct order... tuesday 45 production test monday 23 The order cannot be guaranteed in a for loop. You can instead store the fields as an array of name-value pairs

[flexcoders] Re: Help trying to create a slightly complex border.

2008-12-18 Thread Tim Hoff
Hi Dave, In order to get a stroke around all of the shapes, you'll need to draw them as one composition. You were on the right track with using curveTo(), but that's going to be a lot of trial and error work. I would suggest you go back to using degrafa for this (see GeometryComposition). The

RE: [flexcoders] Re: Get Children function

2008-12-18 Thread Tracy Spratt
Be aware of deferred instantiation. Only the children that have been viewed by the user will be instantiated. I am curious as to why you want to do this. If you are declaring the children ar design time, why not give them known Ids? If you are instantiating them at run-time, you should

Re: [flexcoders] Re: An other custom event

2008-12-18 Thread Manish Jethani
On Thu, Dec 18, 2008 at 11:32 PM, Manish Jethani manish.jeth...@gmail.com wrote: On Thu, Dec 18, 2008 at 10:56 PM, lorenzo.boaro lore...@katamail.com wrote: when i try to rint the object fields are not in the correct order... tuesday 45 production test monday 23 The order cannot be

RE: [flexcoders] Passing a varibable back to ActionScript via HTTPRequest

2008-12-18 Thread Tracy Spratt
An HTTPService call will return a value if the server process writes back a response. You can set the resultFormat=text. I have never done this since I always wrap my returned data in a status node: returnstatus status=success, stausdescription= MyData/returnstatus This give me a

RE: [flexcoders] Re: An other custom event

2008-12-18 Thread Tracy Spratt
For..in loop enumeration order is not guaranteed. You could use an Array or ArrayCollection. You should still use the numeric iterator to access the values in order. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

Re: [flexcoders] Re: Get Children function

2008-12-18 Thread Manish Jethani
On Fri, Dec 19, 2008 at 12:02 AM, Tracy Spratt tspr...@lariatinc.com wrote: Be aware of deferred instantiation. Only the children that have been viewed by the user will be instantiated. Deferred instantiation should be no problem for accessing the immediate children of a ViewStack object.

RE: [flexcoders] Stop the flicker between menu items

2008-12-18 Thread Tracy Spratt
I suspect that there is a vertical gap or padding of some kind betweeen the elements. Might have to subclass to fix, or maybe there is a style? Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Mark Carter Sent:

Re: [flexcoders] Passing a varibable back to ActionScript via HTTPRequest

2008-12-18 Thread Nate Beck
Just out of curiosity.. Why wouldn't you use a CFC with access=remote? Then you could use the Flex mx:RemoteObject and pretty much be good to go. http://www.adobe.com/devnet/flex/flex_cf.html has the information you need to accomplish such a thing. On Thu, Dec 18, 2008 at 10:51 AM, Tracy

RE: [flexcoders] Tree and array data

2008-12-18 Thread Alex Harui
Will there ever by any leaves? If not, just replace the leaf icon with the branch icon From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dan Vega Sent: Thursday, December 18, 2008 8:57 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Tree and array data

RE: [flexcoders] Re: Button hotspot for skins that aren't rectangular borders

2008-12-18 Thread Alex Harui
If your programattic skin doesn't have any pixels in some area, the mouse shouldn't detect it. The mouse sees transparent pixels as valid target area. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Todd Sent: Thursday, December 18, 2008 8:48 AM To:

RE: [flexcoders] Statusbar goes blank after popup

2008-12-18 Thread Alex Harui
Please file a bug or post a test case From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of danielrkrueger Sent: Thursday, December 18, 2008 6:04 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Statusbar goes blank after popup Why does the AIR application

Re: [flexcoders] Tree and array data

2008-12-18 Thread Dan Vega
but not every folder will be a branch, only those who have children. I can set the default leaf icon to a standar folder but I am stuck on how to treat branches using my example.

[flexcoders] Runtime Screen/Form designer

2008-12-18 Thread Carl Vorster
Hi, I'm looking for a kick start into building a screen designer/painter where the end user can actually build their own screens/forms using drag and drop. I saw some examples a while back, but can't seem to find it, and google is not helping.. Any pointers would be greatly appreciated.

Re: [flexcoders] Re: blazeds handling error messages from java to flex

2008-12-18 Thread Fotis Chatzinikos
Hm, no ideas here... I would recommend rewriting the backend. I know it sound boring, but ... The user should (if not always 99%) not see exception specific information. It might become a security risk if they start seeing your tables, datastructures and so on... On Thu, Dec 18, 2008 at 6:30

[flexcoders] Re: Button hotspot for skins that aren't rectangular borders

2008-12-18 Thread Todd
Ok, thanks. That clarified some things for me, and now I've now gotten it to work by fixing code that filled in the shape between the lines only. Thanks. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: If your programattic skin doesn't have any pixels in some area, the mouse

[flexcoders] When can Browser Compatibility issues happen with the Flex App

2008-12-18 Thread anuj181
Hi All I have a release build of my project which when I have couple of issues. When I put that release folder on the server (which is Linux Box in my case having apache server), the file would show up fine in IE 7.0 but displays as plain text (displaying bunch of javscript and HTML code) in

[flexcoders] why the air app can not see the nativeMenu

2008-12-18 Thread markflex2007
Hi, I did this,but why I can not see the menu.Thanks for your help. mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=init() mx:Script ![CDATA[ private function init():void{ var root:NativeMenu = new

RE: [flexcoders] Database connection from AIR application

2008-12-18 Thread Wildbore, Brendon
Any reason why the built in SQL Lite database wont do? Example of how to use: http://seantheflexguy.com/blog/2007/06/14/super-simple-sqlite-example-for-adobe-air-1-beta/ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of kotha

Re: [flexcoders] Tree and array data

2008-12-18 Thread Fotis Chatzinikos
use iconFunction=yourFunction() where yourfunction checks your isLeaf variable and assigns a folder or leaf icon On Thu, Dec 18, 2008 at 9:07 PM, Dan Vega danv...@gmail.com wrote: but not every folder will be a branch, only those who have children. I can set the default leaf icon to a

[flexcoders] Select DataGrid Column

2008-12-18 Thread edlueze
Hi Folks: Is there anyway to select a column in a DataGrid or an AdvancedDataGrid? I've only managed to find ways of selecting rows, but my data is grouped in columns. I'd prefer not to flip my data so that columns become rows. Is there a better way? Thanks!

[flexcoders] Re: OLAPDataGrid Modify The headers

2008-12-18 Thread frielingts
That may have worked. I kind of hacked a solution which is to programatically modify the underlying advancedDatagrid columns after the OLAPDatagrid's validateDisplayList event column fires. I set a flag to fire a custom event so that I don't modify the headers every time validateDisplayList

Re: [flexcoders] Rich text editor customization

2008-12-18 Thread Derrick Anderson
the RTE is a Panel w/ TextArea written in MXML, so open up the source and see how it functions. Specifically, the setTextStyles and getTextStyles functions- I have not customized it for images, but Image is a supported tag in the htmlText property. d. On Wed, Dec 17, 2008 at 11:35 PM, Mayank

[flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread devenhariyani
Tom, thank you for your feedback. yes Javascript is great, but Myspace, one of the most popular sites that allows widgets doesn't allow Javascript. This restricts us to Flash or Flex. Flex being the newer technology it made sense to try flex, especially for our plans to have more interactive

Re: [flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread Fotis Chatzinikos
Hi, I think I read somewhere that the framework will cache per domain. Ie if siteX uses the framework and it is cached it is only cached for siteX, not siteY... I am not sure if that is the case though, as i am using framework caching but my application is not deployed yet and have not tested

[flexcoders] FLVs not loading after I publish to server

2008-12-18 Thread dmkramerica
Hey all! I have what seems to be a minor problem. I have a Flex project, it loads FLVs, and it does so just fine in my development environment, but when I upload the source files to my server, the .html wrapper loads, the .swf loads, but the referenced FLVs do not appear. For instance one

Re: [flexcoders] Flex + Papervision Business Applications

2008-12-18 Thread monkeyden
Thanks for responding Gabriel. This is pretty much what I've seen around. It simply displays a 3D Papervision component within Flex. What I am interested in doing is integrating Flex+PV3D in such a way that forms can be animated AND interactive. The end game is obviously to have a functional

[flexcoders] FlexBuilder3 - changing destPath for modules does not work?

2008-12-18 Thread weiji
Hi, We are using FB3 with SDK 3.2.0.3958, and we can't seem to get FB to output the modules to the desired directory. Let's say our main application mxml is in the current directory, like so: ./main_flex.mxml and we have some modules in subdirectories like so: ./corp/mods/abc/Module1.mxml

[flexcoders] What is the largest Flex app?

2008-12-18 Thread Darrell Ross
In a conversation with the former CTO of a very large media brand, he asked questions re: Flex's ability to scale. In his mind, scale means several million sessions per day. While we discussed some of the Flex charting components which are a part of Yahoo!Finance which see significant daily

Re: [flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread Alan
It's all Flash, why is there any notion of Flash vs. Flex. It's like saying 'Should we use PHP or Zend?'. Rather it should be 'Do we need Flex in our Flash app?' Unless you Flex as newer? Flex came out 5 years ago. ActionScript 3 was publicly released in June 2006. Although Flex is now

[flexcoders] Re: Two questions: Nested applications styles colllisions, flashvars injection

2008-12-18 Thread horizens
For anyone interested, I was able to get this to work normally when building or with a loader passing flashvars: package { import flash.display.Loader; import mx.core.Application; public class MyApplication extends Application {

[flexcoders] Re: File Explorer

2008-12-18 Thread Amy
--- In flexcoders@yahoogroups.com, Fotis Chatzinikos fotis.chatzini...@... wrote: Hi Amy, I replied to your mail because it was the last in the conversation (I do not use the web based interface-just gmail), and i usually reply to the last message and not the original question...Does

Re: [flexcoders] Re: Is Flex the wrong technology for widgets? SWF file sizes are too big...

2008-12-18 Thread Ralf Bokelberg
Flex is more interactive? This must be a misunderstanding. Flex is really more about enterprise development process, less about technology. And it is not concerned about size, just features. Your 500k Flex widget is 20k in Flash probably. Ralf. On Thu, Dec 18, 2008 at 10:02 PM, Alan

[flexcoders] How can i make possible to keep user back in the same TAB..

2008-12-18 Thread b.kotireddy
Hi, The below code is my one of the TAB from 4 tabs. Before leaving this tab i need to evaluate the page, if user forgot to save his filled data i need to save that data. My Question is their any way can i keep the focus on the same TAB if he gets some error message or some Alert in the this TAB.

[flexcoders] Search Function within a Flex App -- Not Filter

2008-12-18 Thread Adrian Williams
Hi All, I have another wild one...has anyone seen or figured out how to embed a search function within a flex app? I have seen the information on creating filters but they all filter out (read: remove from visibility) all the data that falls outside the filter. In other words, I need

[flexcoders] DataGrid Column Drag Question

2008-12-18 Thread vkc_nair
Hi All, Is it possible to drag the datagrid column header outside the grid area to set the visible property to false? Any sample code available? Thanks Vimal

[flexcoders] SOLVED: Re: FLVs not loading after I publish to server

2008-12-18 Thread dmkramerica
MIME type for .flv extension not set to video/x-flv in IIS. Duh. --- In flexcoders@yahoogroups.com, dmkramerica kramer.da...@... wrote: Hey all! I have what seems to be a minor problem. I have a Flex project, it loads FLVs, and it does so just fine in my development environment, but

Re: [flexcoders] What is the largest Flex app?

2008-12-18 Thread Nate Beck
That's an interesting question... because Flex is client side, it's the same as asking about scalable javascript. So when we're talking about scalability issues and flex, the majority of issues will reside on the server. At that point it's the same discussion as every other web technology... php,

[flexcoders] Re: Error Message

2008-12-18 Thread Amy
--- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: Basically, you want to create a destination in the services- config.xml file that points to your server. Something like: endpoint uri=http://www.example.com/flex2gateway/; class=flex.messaging.endpoints.AMFEndpoint/ Also,

  1   2   >