Re: [flexcoders] Re: DataGrid Sort by Date problem -- Flex 2

2008-01-08 Thread Tom Chiverton
On Tuesday 08 Jan 2008, vkc_nair wrote: Any help on this? Did you check the parse() result ? In light of http://rachaelandtom.info/node/1373 I would :-) -- Tom Chiverton Helping to efficiently conquer enterprise-class solutions on: http://thefalken.livejournal.com

RE: [flexcoders]

2008-01-08 Thread Kenneth Sutherland
Change the scale values E.G. mx:RadioButton scaleX=0.5 scaleY=0.5 label=small button label / mx:RadioButton scaleX=1.5 scaleY=1.5 label=large button label / mx:RadioButton scaleX=0.5 scaleY=0.5 label=small button large label fontSize=34/ From:

[flexcoders] Passing BitmapData through LocalConnection

2008-01-08 Thread Muhammad Ahmed Ullah
Hi, When I try to pass BitmapData through the LocalConnection, I'm getting the following error message: Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.LocalConnection was unable to invoke callback setImgData. error=TypeError: Error #1034: Type Coercion failed: cannot

[flexcoders] Testing for shift-tab key press?

2008-01-08 Thread candysmate
Does anyone please know how to test for shift-tab key press please?

[flexcoders] Cairngorm - a good idea?

2008-01-08 Thread Tim Ashworth
Hi all, Thanks for all the info and links about Cairngorm, I've basically spent the last day or so reading through all the information available on the Cairngorm framework I can find. Here's a list of the links wot I found if you're interested Great Article by Jesse Warden

Re: [flexcoders] Passing BitmapData through LocalConnection

2008-01-08 Thread Drew Bourne
Hi Ahmed, Try registering the flash.display.BitmapData class using the flash.net.registerClassAlias function. If I remember rightly you need to do this for any class besides Object that you want to pass through LocalConnection before passing any objects over the connection. You'll want

[flexcoders] How to find width of scrollbar in comboBox dropdown ?

2008-01-08 Thread Jim Hayes
I'm having some brain ache with trying to find an easy solution to this one, and I'm wondering If I'm missing the obvious (again )? I'm trying to replace the hardcoded var scrollBarWidth:int = 16; line in the code below with one that actually reflects the true width of the scrollbar (say if it's

[flexcoders] Re: Scrolling in application and component

2008-01-08 Thread flex.fusion
Hi Alex, I have an issue with scrolling a datagrid horizontally on key press (Left Arrow key and Right Arrow key). I am using flex 2. I went through following keyboard navigation link: http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwh

[flexcoders] Contents Loadder

2008-01-08 Thread NileAge, Mail
Hi all I want make a loader for flex page contents such as label and texts

[flexcoders] Capturing TabClick in mx:TabNavigator

2008-01-08 Thread Dharmendran A
Hi, I need to capture TabClick event in mx:TabNavigator i.e., When user clicks on the tab ( i have three tabs in my UI) each time, i need to do some validation. Can anyone help me. Thanks Dharmendran A

[flexcoders] Vbox and Hide / Resize Effect - Can some one help me?

2008-01-08 Thread pierrechaigneau
Hi, I'm a beginner un Flex and a would like to do the same effect with the Vbox an Hbox than : http://weblogs.macromedia.com/khoyt/files/f1040.swf I have made the two vbox but i can't do the auto resize of the page when Hbox downstair appear. Can' someone help me? THANKS

[flexcoders] question about flex container

2008-01-08 Thread xh.dreamlover
Hi, everyone: i'm making a flex container with Adobe Flex Component Kit for Flash CS3 in flash. In the movie clip, i create a simple motion tween between two keyframes labeled A and B for the FlexContentHolder component then publish it to a swc file. I then put an image into the container in

[flexcoders] Open Source ActionScript HTML/CSS broswer released

2008-01-08 Thread flashcodersny
Motion Color Inc. today open-sourced a public beta version of Wrapper, formerly used for closed-sourced projects. Wrapper is a cross-browser compliant HTML/CSS rendering engine written in ActionScript that sits on top of your standards compliant HTML page. Wrapper eliminates cross-browser issues

[flexcoders] DragManager broken in beta 3? Or my code broken?

2008-01-08 Thread Andrew Jones
Hello - I was just wondering if anyone else has experienced problems with using Drag and Drop functionality after going to Flex Builder 3, beta 3? I have 3 projects that all use drag/drop in a similar fashion, and ever since installing FB3 b3 they now error out no matter what I try. My drag

[flexcoders] Flex to java objects

2008-01-08 Thread sharma.nrapendra
hi can anyone tell me how we change action script object into java object...???

[flexcoders] Re: use runtime image more than once

2008-01-08 Thread joshuagatcke
We thought about having a flash assets file or something along those lines, but we really can't have this stuff in a compiled file as the types of icons changes all the time on a per user basis. It would be nearly impossible to track all the changes and update the assets file to meet

[flexcoders] Make a loader

2008-01-08 Thread NileAge, Mail
Hi all I want make a loader for flex controls such as label, links while binding the data

[flexcoders] Re: Generic Sort Function for date column containing null value

2008-01-08 Thread letterpigeon
I've written a simple generic sortCompareFunction as follow which works, but performs a lot worse than normal sorting without it (taking about 10+ seconds to sort a grid of 1 records. Without using this function, it takes about 1.5). public static function

[flexcoders] Nested Repeaters: Weird Behaviour

2008-01-08 Thread nkopcsek
Hi, I got some really strange behaviour with nested repeaters. In this case a repeater is part of a component which is repeated itself (let's call this component RepeatedComponent, see below for code). Whenever I add a new item to the dataProvider of the outer repeater it doesn't add only the new

[flexcoders] Printing very long textarea

2008-01-08 Thread Otto
Hello, I've run into a small issue making a print feature for my application (flex3 beta3). I have a textarea that may contain lots of text, enough to wrap beyond the first page. The problem is that it doesn't wrap inbetween lines but it just cuts a line in two. See sample pdf here [1]. Is

[flexcoders] Problems changing the width of the SWF on the HTML wrapper

2008-01-08 Thread João
Hello, we have created a form in Flex than should be used on several sites with different widths. Our idea was to change the width manually on the HTML wrapper file without having to recompile the SWF. So, what we did was: mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=100%

[flexcoders] Browser window size

2008-01-08 Thread byte.sensei
This is probably a simple question but is there an easy way to get the current browser window size? I have a Flex app with the application height/width set to 100%, and then I divide that up into various vbox/hbox elements. However, in some instances I create a pop-up with PopUpManager. The

[flexcoders] callLater() doesn't

2008-01-08 Thread Tom Chiverton
Given that I get the 'tried' Alert, what would cause me not to get the 'did actually' Alert ? This is an AS3 class that extends UIComponent. . private function updateURL(dontCare:*):void{ if (!parsing){ Alert.show(tried);

[flexcoders] Flash Player 9 - debug version

2008-01-08 Thread Robert Csiki
Can anyone tell me please what's the latest version of Flash Player 9 (Windows) - debug version and if it's available on the Internet? I'm currently having 9,0,28,0, installed by Flex Builder 2, but it started to behave strangely in the last couple of weeks. I don't have nor use Flex Builder 3

[flexcoders] handCursor with Text Label components

2008-01-08 Thread duncan mcmillan
Hi flexcoders When I'm using either a Text or Label and want the handcursor to appear on Mouseover, it fails to activate. I have set true both useHandCursor buttonMode, still without success. My Texts and Labels are within a composite component which extends UIComponent. I addChild them

Re: [flexcoders] Printing very long textarea

2008-01-08 Thread Frederico Garcia
Gregor Kiddie escreveu: It all comes down to how you are printing the TextArea in the first place! PrintJob allows you to give a Rectangle along with the Sprite to define the printing area. Once you’ve called PrintJob.start() you can get the pageWidth and pageHeight of the paper and use

Re: [flexcoders] handCursor with Text Label components

2008-01-08 Thread Frederico Garcia
duncan mcmillan escreveu: Hi flexcoders When I'm using either a Text or Label and want the handcursor to appear on Mouseover, it fails to activate. I have set true both useHandCursor buttonMode, still without success. My Texts and Labels are within a composite component which extends

[flexcoders] Re: Flash Player 9 - debug version

2008-01-08 Thread jason vancleave
http://www.adobe.com/support/flashplayer/downloads.html --- In flexcoders@yahoogroups.com, Robert Csiki [EMAIL PROTECTED] wrote: Can anyone tell me please what's the latest version of Flash Player 9 (Windows) - debug version and if it's available on the Internet? I'm currently having

RE: [flexcoders] Printing very long textarea

2008-01-08 Thread Gregor Kiddie
It all comes down to how you are printing the TextArea in the first place! PrintJob allows you to give a Rectangle along with the Sprite to define the printing area. Once you've called PrintJob.start() you can get the pageWidth and pageHeight of the paper and use these values along with the

[flexcoders] print function code - can someone help me?

2008-01-08 Thread b.martinelli
Hi, I have an application : - on the left side a list, - on the right side detail's company leaders. it's look like : http://www.sitepoint.com/print/flex-2-internet-applications (section : Enhancements ... and More!) And i need two buttons : - The firt one who permit to print the current

Re: [flexcoders] Re: use runtime image more than once

2008-01-08 Thread Frederico Garcia
joshuagatcke escreveu: We thought about having a flash assets file or something along those lines, but we really can't have this stuff in a compiled file as the types of icons changes all the time on a per user basis. It would be nearly impossible to track all the changes and update the

Re: [flexcoders] question outside of flex.

2008-01-08 Thread Derrick Anderson
if you are seeing things like #video# in the javascript, it sounds like you are missing some cfoutput tags On Jan 7, 2008 1:26 PM, Gustavo Duenas [EMAIL PROTECTED] wrote: Hi, this is outside flex, but I guess that someone here may have seen this before. I have a cfm page and I'm trying to

[flexcoders] How to pass ArrayCollection from Flex to coldfusion?

2008-01-08 Thread markflex2007
Hi, I need pass ArrayCollection data from Flex to coldfusion,Please give me a idea how to do this. Thanks Mark

[flexcoders] Re: Printing very long textarea

2008-01-08 Thread Otto
--- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: I'm making a PrintTextArea component wich is basically a TextArea with simillar behaviour to PrintDatagrid. Still has some bugs, so I'll repost has soon has I corrected them. Read the documentation on

Re: [flexcoders] ApplicationControlBar question

2008-01-08 Thread Frederico Garcia
markgoldin_2000 escreveu: I am using ApplicationControlBar to create a toolbar similar to desktop applications. How can I bring buttons together as close as possible? Thanks -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

Re: [flexcoders] Re: Printing very long textarea

2008-01-08 Thread Frederico Garcia
Otto escreveu: --- In flexcoders@yahoogroups.com, Frederico Garcia [EMAIL PROTECTED] wrote: I'm making a PrintTextArea component wich is basically a TextArea with simillar behaviour to PrintDatagrid. Still has some bugs, so I'll repost has soon has I corrected

[flexcoders] ApplicationControlBar question

2008-01-08 Thread markgoldin_2000
I am using ApplicationControlBar to create a toolbar similar to desktop applications. How can I bring buttons together as close as possible? Thanks

RE: [flexcoders] Nested Repeaters: Weird Behaviour

2008-01-08 Thread Tracy Spratt
First, don't use the names of existing properties, methods or classes for your component, or variable names. Specifically dataProvider and data. Next, use a setter function instead of a public property, so you can debug the values being passed in. Type the setter function as specifically as

[flexcoders] Re: Printing very long textarea

2008-01-08 Thread Otto
--- In flexcoders@yahoogroups.com, Gregor Kiddie [EMAIL PROTECTED] wrote: Once you've called PrintJob.start() you can get the pageWidth and pageHeight of the paper and use these values along with the sizes of your TextArea to create your print area. You can then call PrintJob.addPage() as

Re: [flexcoders] Browser window size

2008-01-08 Thread Jehanzeb Musani
Hello, You can use the flash.system.Capabilities class to find out the screen resultion of user system. For browser info, you can write a function in JavaScript and call it from flex using ExternalAPI interface. You can find an exmple of that if Flex Help, search for CapabilitiesGrabber in help.

RE: [flexcoders] Browser window size

2008-01-08 Thread Jim Hayes
Does this do what you want (using screenManager.screen) ? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundGradientAlphas=[1.0, 1.0] backgroundGradientColors=[#943C3C, #943C3C] height=100% width=100% mx:Script

Re: [flexcoders] How to pass ArrayCollection from Flex to coldfusion?

2008-01-08 Thread João Fernandes
Mark, arrayCollections will be converted to arrays of structs when passed to CF. If you use AS3 Classes that use remoteClass you can have those instances converted to the corresponding CFC instances in CF. -- João Fernandes http://www.onflexwithcf.org http://www.riapt.org

Re: [flexcoders] How to pass ArrayCollection from Flex to coldfusion?

2008-01-08 Thread Jeffry Houser
In AS3, you'd do something like this: myRemoteObject.mymethod(MyArrayCollection); Were you having a specific problem? markflex2007 wrote: Hi, I need pass ArrayCollection data from Flex to coldfusion,Please give me a idea how to do this. Thanks Mark -- Jeffry Houser,

RE: [flexcoders] ApplicationControlBar question

2008-01-08 Thread Tracy Spratt
horizontalGap can also be negative. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Frederico Garcia Sent: Tuesday, January 08, 2008 10:53 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ApplicationControlBar question

RE: [flexcoders] Flex to java objects

2008-01-08 Thread Kenneth Sutherland
You'd need to be using data services and you'd do something like the following [RemoteClass(alias=com.myvopackage.MyVO)] public class MyVO extends Object { //all the various values inside object here. //make sure same as the remote java class.. } The following link should be helpful

Re: [flexcoders] Problems changing the width of the SWF on the HTML wrapper

2008-01-08 Thread Thomas Lauck
No, I am passing in the width. But when I wanted to try a very basic test of the YahooMapService, I set all the properties statically. Also, the rest of the app works fine, its just the map that I have issues with. Thus I wanted to make sure I wasn't shooting myself in the foot by making a

RE: [flexcoders] Problems changing the width of the SWF on the HTML wrapper

2008-01-08 Thread Tracy Spratt
When you say changed manually the width of the swf, do you mean you set the width of the object and embed html tags? Doesn't seem to me like a good way to do what you want. If I was doing this, I would pass the desired size of the app into the swf using flashvars. Tracy

[flexcoders] Flex Map Not Dispatching onMapLoad - DOCTYPE?

2008-01-08 Thread lauckthomas
I posted this to the YDN-Flash Group...and I'm probably breaking a double post rule somewhere. I figured the topic might get more of a response here. --- I've downloaded the Yahoo AS3 Libraries to use the map in a Flex application. In Firefox, the onMapLoad event does not get dispatched.

[flexcoders] Re: Nested Repeaters: Weird Behaviour

2008-01-08 Thread nkopcsek
Hi Tracy, I simplified my original application to be able to concentrate on the problem itself. Since a VBox doesn't have a dataProvider that name is free for use. Also i'm not that much interested in code beautifing here ;d. The setter function is also not really needed because you can debug

Re: [flexcoders] question outside of flex.

2008-01-08 Thread Gustavo Duenas
Thanks Derrick I hope you can help me out with, this is the code so far I've been using to trying to pass the HTML var from the coldfusion to the embeded flv in javascript. cfset video=URL.guest/ cfoutput #video# /cfoutput !-- ImageReady Slices (Untitled-2) -- table width=800 height=600

Re: [flexcoders] question outside of flex.

2008-01-08 Thread Derrick Anderson
AC_FL_RunContent( 'codebase','

[flexcoders] Flex 3 Pre-Release Tour in Northern California

2008-01-08 Thread TJ Downes
Hi All, just want to announce for everyone in Northern California that Ryan Stewart will be speaking at the NorCal Flex User Group on the 23rd, in Sacramento. For full details check out the UG site at http://www.norcalflex.com. Please RSVP if you plan on attending.

[flexcoders] Re: Browser window size

2008-01-08 Thread byte.sensei
Both suggestions worked -- I implemented the javascript / ExternalInterface method first, then saw the other reply and that worked out, too. I kept the systemManager.screen version since it doesn't require Javascript, and the Javascript code I was using to detect the size of the current

[flexcoders] Re: caching issues

2008-01-08 Thread markcavins
Thanks for the advice but the issues is with FF everything works in IE. --- In flexcoders@yahoogroups.com, mitek17 [EMAIL PROTECTED] wrote: Hi Mark, In your PHP code remove all header control commands and just use the following: header('Pragma: bogus'); header('Cache-control: bogus');

[flexcoders] Re: caching issues

2008-01-08 Thread markcavins
this is how I am getting the url mx:HTTPService id=login_user result=checkLogin(event) showBusyCursor=true method=GET url=https://cfg0013.zonarsystems.net/interface.php; mx:request xmlns= customer {customer.text}

[flexcoders] Re: Capturing TabClick in mx:TabNavigator

2008-01-08 Thread wesley.petrowski
This should work: public function onCreationComplete():void { tabNav.addEventListener(IndexChangedEvent.CHANGE, tabsChanged); } private function tabsChanged(event:IndexChangedEvent):void { //do validation } --- In flexcoders@yahoogroups.com, Dharmendran A [EMAIL PROTECTED] wrote: Hi,

[flexcoders] Controlling browser http results with flex

2008-01-08 Thread markcavins
Hello all, I am working on an app and I am having some problems with the way ff is reacting to a login form that I have made in flex to get to some customer information. I have figured out that when a customer enters the wrong customer number my flex app will display the proper error message but

[flexcoders] Flex Calendar

2008-01-08 Thread vivek
Hey Guys, Thanks for looking into my message. I need some urgent help regarding creating a calendar in flex. I want to create a calendar as shown in the image in this link: http://www.nabble.com/Customizing-DateChooser-in-Flex-to13983948.html

[flexcoders] Re: NetConnection Header

2008-01-08 Thread eccentricwade
I ended up writing a service that takes the new session id as a variable and changes the server session. This updates the appendtogateway varaible with the new session ID and all subsequent calls use the new session id. http://www.amfphp.org/docs2/fundamentals/Sessions.html Wade Arnold

[flexcoders] Re: caching issues

2008-01-08 Thread markcavins
This is how I am currently getting the service private function resetForm():void{ var header:URLRequestHeader = new URLRequestHeader(pragma, no-cache); var request:URLRequest = new

[flexcoders] Save/Recall a Password field?

2008-01-08 Thread byte.sensei
I have a Flex app where the first screen is a Login page. This is replacing an ASPX/HTML site, and one thing I never realized was how much users rely on the browser's ability to remember passwords. Now that I've launched the new site, a lot of users are asking why it doesn't save their

Re: [flexcoders] callLater() doesn't

2008-01-08 Thread Douglas Knudsen
Check the docs on callLater() http://livedocs.adobe.com/flex/2/docs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Partsfile=1438.html it queues the call in the next refresh. So, maybe you never get another refresh and hence no call. What is it you are trying to do actually? Perhaps

[flexcoders] Re: Save/Recall a Password field?

2008-01-08 Thread TJ Downes
I utilize the SharedObject to save them as hashed values. It's by far the easiest method. TJ Downes Sanative http://www.sanative.net Northern California Flex UG http://www.norcalflex.com

Re: [flexcoders] handCursor with Text Label components

2008-01-08 Thread duncan mcmillan
Thanks Frederico, this now works Duncan - Original Message From: Frederico Garcia [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, 8 January, 2008 3:23:17 PM Subject: Re: [flexcoders] handCursor with Text Label components duncan mcmillan escreveu: Hi flexcoders

[flexcoders] Flex Builder license

2008-01-08 Thread mailtoraman
I am new to Flex world. 1) We can use Flex SDK with Eclipse IDE and develop the flex applications. 2) We can buy developer license of FlexBuilder and develop the flex applications. Please let me know what is the difference between the above two options. When we will go for what option?

[flexcoders] Programatically add new groupedColumns to AdvancedDataGrid

2008-01-08 Thread Ezekiel48
I am trying to create a gantt chart, and would want groupedColumns with month spanning the dates of the month. I tried to concat and push a AdvancedDataGridColumnGroup onto groupedColumns, it only worked with push, it adds to the array, but doens't update the display of the ADG.

[flexcoders] VBox content not refreshing on scroll

2008-01-08 Thread byte.sensei
I've noticed in several places that when scroll bars are used that the content in whatever component is being scrolled doesn't get updated. I have several different Canvas and VBox/HBox screens with a vertical scroll bar, and when you scroll up and down it seems to jumble up the content and

[flexcoders] Re: caching issues

2008-01-08 Thread markcavins
In addition I have been looking in the adobe docs and have augmented the script (to no avail) private function resetForm():void{ var loader:URLLoader = new URLLoader(); configureListeners(loader); var header:URLRequestHeader = new URLRequestHeader(pragma,

RE: [flexcoders] VBox content not refreshing on scroll

2008-01-08 Thread Alex Harui
Can you post a simple test case? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of byte.sensei Sent: Tuesday, January 08, 2008 10:28 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] VBox content not refreshing on scroll I've

RE: [flexcoders] Open Source ActionScript HTML/CSS broswer released

2008-01-08 Thread Jim Hayes
On a (somewhat) related note, has anyone had a chance to play with the code that Alex Harui posted here: http://blogs.adobe.com/aharui/2008/01/html_and_flex_1.html ? I'm actually looking for something to display html tables, some horrible hackery on my part got it to display more or less what

RE: [flexcoders] How to find width of scrollbar in comboBox dropdown ?

2008-01-08 Thread Alex Harui
Scrollbars are protected so a simple subclass should be able to access them. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim Hayes Sent: Tuesday, January 08, 2008 4:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to

[flexcoders] Re: Lazy Loading on Tree Component with LCDS

2008-01-08 Thread Kevin
Thanks. I'll try these out and see if I can make it work. My wife just had our second baby a couple days ago, so I am a little in the fog! - Kevin --- In flexcoders@yahoogroups.com, Jeff Vroom [EMAIL PROTECTED] wrote: On second thought, this will be trickier than I thought. One problem

RE: [flexcoders] Testing for shift-tab key press?

2008-01-08 Thread Alex Harui
keyFocusChange event From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Tuesday, January 08, 2008 3:41 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Testing for shift-tab key press? Does anyone please know

RE: [flexcoders] Open Source ActionScript HTML/CSS broswer released

2008-01-08 Thread Alex Harui
Someone is looking into opensourcing my code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jim Hayes Sent: Tuesday, January 08, 2008 10:42 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Open Source ActionScript HTML/CSS

[flexcoders] RichTextEditor - format preservation

2008-01-08 Thread Richard Rodseth
I have a RichTextEditor with htmlText bound to a property in a model. I update the model property on change events. The problem is that if I type to replace text, the formatting is not preserved. i.e. set font to 48, start typing, and the first character is in 48, the next one isn't. Or if I have

Re: [flexcoders] Flex Calendar

2008-01-08 Thread Scott Melby
Vivek - I had similar issues last year and ended up using a modified version of the Calendar app I found on the Quietly Scheming blog. This calendar is very nice and works very well. You can read my full post about it, plus try a sample app out and view source code here

[flexcoders] crossdomain not working with HTTP Request Error

2008-01-08 Thread Dominique Bessette - Halsema
I'm trying to finish this project and i'm running out of time if anyone has any ideas PLEASE let me know. I have a flex application that calls my web service through the wsdl which is located in an ear file http://{svr8}:port/weemc-service/weemc?wsdl on my local machine the flex app works when

Re: [flexcoders] Open Source ActionScript HTML/CSS broswer released

2008-01-08 Thread Max Frigge
Where is the problem with the iframe trick.. I reckon it's a nice way to combine flex and hmtl. I mean html support by the Flash player would be great event though I guess the performance will be better when its rendered directly by the browser.. or am I wrong? And does anyone know (and is

[flexcoders] Include mxml file in action script

2008-01-08 Thread chr_nrt
Hi everybody, I want to include one mxml file in script block of another mxml file. How to include that? I remember after we compile mxml file it converts into an action script file, but i am not sure how to use that .as file. Please help me, thanks in advance. Thanks chr

RE: [flexcoders] Open Source ActionScript HTML/CSS broswer released

2008-01-08 Thread Jim Hayes
Where is the problem with the iframe trick.. Well, I considered it! But if I have a flex popup window then it would render *under* the iframe... And such like. If I want the html to display in a viewStack then I have to manage that separately, over a JS interface. Also, I don't want to be sat

[flexcoders] Re: Newbie : Flex Hosting Question

2008-01-08 Thread hardikpandya2000
Hello Anas, Thanks for your reply, This is earlier stage of my application developement and I am trying to concrete down, what do I need to host Flex Data Driven application, I do not know PHP. I need to have reuest/response data to/from mysql database and need to parse the esults into JSP

Re: [flexcoders] Include mxml file in action script

2008-01-08 Thread Jeffry Houser
Something like: mx:script include myfile.as /mx:script However, I do not think you can use this method to include one MXML file in another. When you compile an MXML file, you can save the AS that it generates; I believe the argument is 'keep generated content'. I would expect it to be

[flexcoders] Re: Include mxml file in action script

2008-01-08 Thread chr_nrt
Basically what i am trying to do is, after login validations i have to show main screen to end user. I thought that i can use in simple way like public var myMain:main = new main(); myMain.testFunc(); I am using eclipse with FB2 plug in. I know how to include those components using flex like

RE: [flexcoders] crossdomain not working with HTTP Request Error

2008-01-08 Thread Alex Harui
When you run on your local machine, there is no enforcement of security rules (mainly because there is no server serving the swf and thus no domain to verify against), but also as a convenience for development. When you deploy to a server, that server becomes the domain for your SWF. Any

[flexcoders] Global Save approach

2008-01-08 Thread markgoldin_2000
I am using an ApplicationControlBar as the main application toolbar with buttons for common tasks. Save is one of these tasks. My application container is a TabNavigator. Each page is a combination of forms, grids, and other stuff. What I want is to be able to save data from each tab

[flexcoders] Re: VBox content not refreshing on scroll

2008-01-08 Thread byte.sensei
Sure, try http://www.symetri.com/flex_test/test.html http://www.symetri.com/flex_test/test.html If you use the vbar to scroll up/down you should see what I'm talking about -- the form content gets messed up. Then, if you roll the mouse around the VBox after scrolling it usually refreshes the

Re: [flexcoders] Re: Include mxml file in action script

2008-01-08 Thread Jeffry Houser
chr_nrt wrote: Basically what i am trying to do is, after login validations i have to show main screen to end user. Some people do this with states. Some people do this with ViewStacks. I suggest reading up on each one. In my experience people often start with States, then move to

Re: [flexcoders] Flex Calendar

2008-01-08 Thread Jeffry Houser
Hi Vivek, I'm sure it's possible to do this. Did you have any specific challenges trying to implement this? Were you looking to outsource the creation of this component? vivek wrote: Hey Guys, Thanks for looking into my message. I need some urgent help regarding creating a

[flexcoders] Re: VBox content not refreshing on scroll

2008-01-08 Thread byte.sensei
Quick addendum: I remembered why I added wmode,opaque to my AC_FL_RunContent -- I'm using a hidden iframe in the HTML wrapper to pull in content from another site on certain pages. I had read that for this to work properly you had to add wmode=opaque to the html wrapper...

[flexcoders] Re: Using Restrict property in DataGrid

2008-01-08 Thread markgoldin_2000
Sorry, but where am I specifying the restrict pattern? --- In flexcoders@yahoogroups.com, George [EMAIL PROTECTED] wrote: No, no need, use default DataGridColumn with editable=true. Each time when you editing, itemEditorInstance is actually a TextInput instance, set restrict patterns on

RE: [flexcoders] Re: VBox content not refreshing on scroll

2008-01-08 Thread Alex Harui
Wmode makes the player work much harder and it looks like there might be a bug. Please file a bug with your test case. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of byte.sensei Sent: Tuesday, January 08, 2008 12:57 PM To:

[flexcoders] Re: Flex 3 Pre-Release Tour in Northern California

2008-01-08 Thread simonjpalmer
anyone coming to England any time soon? --- In flexcoders@yahoogroups.com, TJ Downes [EMAIL PROTECTED] wrote: Hi All, just want to announce for everyone in Northern California that Ryan Stewart will be speaking at the NorCal Flex User Group on the 23rd, in Sacramento. For full details check

Re: [flexcoders] crossdomain not working with HTTP Request Error

2008-01-08 Thread Dominique Bessette - Halsema
i understand that, what i dont understand is where exactly the file is supposed to go, as i said right now it is at http://[host]:[port]/weemc-service/crossdomain.xml which is the web root of that ear file it is trying to access. so are you saying i'm supposed to put it in the web root of the

[flexcoders] why are these KeyboardEvent handlers not being called?

2008-01-08 Thread Brian
I'm trying to mock up an example of a problem I'm having in a larger app. I'm hoping to reproduce the problem in a smaller app that I can post here. I'm just trying to move the image around in response to the user pressing certain keys. But I'm having an even more fundamental problem with the

RE: [flexcoders] crossdomain not working with HTTP Request Error

2008-01-08 Thread Peter Farland
You can tell it to load from a specific subdirectory using the loadPolicyFile API, but the default location is to look for it in the webroot of a server (so deploying a war with a default context root of the empty string is one way to achieve that). From:

[flexcoders] Re: Save/Recall a Password field?

2008-01-08 Thread simonjpalmer
I asked exactly this question last week and the answer I got was use shared objects. Would you be willing to share your code? --- In flexcoders@yahoogroups.com, TJ Downes [EMAIL PROTECTED] wrote: I utilize the SharedObject to save them as hashed values. It's by far the easiest method. TJ

[flexcoders] Re: Page States

2008-01-08 Thread simonjpalmer
there are lots of ways of making sure that the state of your custom controls is managed exactly how you want it. None of them are completely free, you have to put in some effort. Here are a few: 1) create the control every time it gets accessed. This will guarantee that it retains no state 2)

[flexcoders] Repeater problem

2008-01-08 Thread Merrill, Jason
I've got two different repeaters in my flex app. One renders checkboxes, one doesn't. The one that works is wrapped inside a canvas in an accordian component, and the items don't render until that section is clicked by the user. The second one is just rendering inside a canvas on a panel.

Re: [flexcoders] Flex Builder license

2008-01-08 Thread Mike Chabot
Unless you are short on cash, go with the second option. You want a rich IDE to develop in. It really helps. The developer license includes the ability to run either Flex Builder, or the Flex Builder plug-in for Eclipse. Without the license you don't have the nice graphical IDE. -Mike Chabot On

RE: [flexcoders] Re: Nested Repeaters: Weird Behaviour

2008-01-08 Thread Tracy Spratt
Use a setter function. Assign the dataProvider of the component's repeater in the setter function. If it is so easy to debug the binding, why are you having a problem? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nkopcsek

  1   2   >