[flexcoders] Re: Security issue in crossscripting

2008-01-11 Thread Muhammad Ahmed Ullah
Thanks again Alex. -Ahmed --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: It isn't a FlashPlayer issue as much as a Flex Framework issue. It is not in 3.0, but may show up in 3.x or 4.0, but no guarantees From:

Re: [flexcoders] The 'right' way to do custom styles

2008-01-11 Thread Tom Chiverton
On Thursday 10 Jan 2008, Gordon Smith wrote: If the doc examples don't work, I suggest that you file a bug to get them fixed and instead look at the actual framework source code. You can My comment (as mentioned in the thread) has been approved. You should prefer declaring default styles in

Re: [flexcoders] Re: Custom Currency itemRenderer - what am I doing wrong?

2008-01-11 Thread Tom Chiverton
On Friday 11 Jan 2008, carl_steinhilber wrote: Sorry, Tom, but care to elaborate on any of those assertions? Generally, if you don't get a reply, one of those things is wrong with your post shrug. Moaning that 'no one is listening' doesn't help. -- Tom Chiverton Helping to proactively

[flexcoders] item renderer for list

2008-01-11 Thread learner
hi all, while creating a Itemrender of for the list , I am facing stranger problems 1. the data displayed in the itemrendere gets screwed up while scrolling 2. it takes lots of time ( 1 sec ) to render list Can somebody please anyalyse this and tell me that what is that which is taking resources

[flexcoders] Flex 3 checkbox layout issues

2008-01-11 Thread Giles Roadnight
Hi All I've made a CheckBox tree component here: http://giles.roadnight.name/CheckBoxTree/main.html which I am pretty pleased with but I'm have problems getting it to work in Flex 3. The CheckBoxs appear out of line with the label - 8 pixels too high. I can correct this by setting y to 8 but

[flexcoders] is this the Flex 3 release date ?

2008-01-11 Thread Tom Chiverton
http://www.flashcodersny.org/wordpress/?p=133 -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose

[flexcoders] Loading a link/url in a new window

2008-01-11 Thread Stephen Roy J. Tang
Hi, I'm doing something like this: navigateToURL(new URLRequest(loader.html?URLTO=[encoded url], '_blank'); Where loader.html is a static html page that will load the passed url parameter using javascript (by parsing window.location). We're doing this as a workaround, because our

[flexcoders] RemoteObject, Flex 3 and Cairngorm

2008-01-11 Thread Giles Roadnight
Hi All We use renaun's AMF class to connect to our back end AMF interfaces: http://renaun.com/blog/flex-components/remoteobjectamf0/ and we are in the process of migrating form Flex 2 to Flex 3. We've got the library working in Flex 3 and all is fine except that we get the following warnings:

[flexcoders] FlexBuilder 3 Beta 3 - Overstate causes resizing effect

2008-01-11 Thread polestar11
Hi there I upgraded from FlexBuilder 3 Beta 2 to Beta 3 and am suddenly getting some strange rendering / sizing issues, particularly for over states of buttons and scrollbars. Buttons: In some cases my over-state for buttons results in the label to move slightly to the left the button size

[flexcoders] Hi

2008-01-11 Thread srikanth_reddy_007
I am sending a HTTPService request to the server and from the server in a servlet i am getting the locale of the request. Its always en_US reggardless of the browser locale. can some one help to send browser locale to the server?

Re: [flexcoders] RemoteObject, Flex 3 and Cairngorm

2008-01-11 Thread Giles Roadnight
OK, we've worked this out now. I needed to specify and set up an XML file to get the RemoteObject to work. On Jan 11, 2008 9:45 AM, Giles Roadnight [EMAIL PROTECTED] wrote: Hi All We use renaun's AMF class to connect to our back end AMF interfaces:

Re: [flexcoders] How to use flexmdi framework in flex builder 2.0.1

2008-01-11 Thread Joseph Balderson
I'm also having problems getting FlexMDI working with FB 2.01. I keep getting the errors Unable to load SWC flexmdi.swc and An internal build error has occurred. Please check the Error Log. I checked the catalog.xml in the swc, and it's compiled for Flex 3, which is probably why FB is having a

[flexcoders] Re: How does scale-9 placement affect the size of a border-skin?

2008-01-11 Thread polestar11
How is it coded - what are the simple rules to follow when using scale-9? Is there any reference? --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Yeah, that's the way it is coded right now. It might change before Flex 3 ships, but don't count on it

[flexcoders] Non-modal windows

2008-01-11 Thread reflexactions
I want to have a non-modal popup window which then has a child non modal popup window that floats above it. But when I click on the first window it places it in front of the child window. Is there a way to do this, from my reading of the PopUpManager/SystemManager code there doesnt seem to be

RE: [flexcoders] Re: Datagrid Renderer not showing updated ArrayCollection

2008-01-11 Thread pablo podas
did you try refreshing the array collection or datagrid ? Alex Harui [EMAIL PROTECTED] wrote: My rule is: don’t use Bindable unless you absolutely need it. It adds overhead to your application. You’ll get warning if you try to bind to something that isn’t bindable and then you

[flexcoders] Flex with Hibernate:Need some help with fill() and IManaged

2008-01-11 Thread java.flex
Need some help with fill() and named querys: 1) As long as I use the dataservice. fill() mehod to populate an arraycollection with the results from a simple named query like From MessageDetails I have no problems and the arraycollection gets populated correctly. But as soon as I use a more

[flexcoders] Dynamic DataGrid + slow horizontal scrolling

2008-01-11 Thread Gary Smith
Can anyone explain why this datagrid is so slow at horizontal scrolling: source and demo here: it takes a few seconds to start over the internet due to large number of columns being generated dynamically out from the xml source http://www.smithkjaer.dk/flex/TestComp.html Note: If I disable the

RE: [flexcoders] Add methods to RemoteObject in AS?

2008-01-11 Thread Peter Farland
It's something like this: import mx.rpc.events.ResultEvent; import mx.rpc.remoting.mxml.RemoteObject; import mx.rpc.remoting.Operation; ... public var srv:RemoteObject; ... private function init():void { srv = new RemoteObject(pojo); srv.showBusyCursor = true; var op1:Operation =

[flexcoders] Re: Taking a variable from an Component in my Viewstack

2008-01-11 Thread michniu
Use a GlobalObject to keep the value cross the different components. --- In flexcoders@yahoogroups.com, John [EMAIL PROTECTED] wrote: Hi there, I want to extract a variable from each of my Components in the Viewstack as I display it. When the variable has been extracted from the

[flexcoders] mx:binding equivalent in Actionscript? Need to dynamically bind text inputs..

2008-01-11 Thread zlayde
Hi all: I'm looking to programattically bind a textInput box as a source and an xml element (via e4x) as a destination. I know how to do this in MXML, but I need to do it in Actionscript b/c the XML I'm binding to is unknown (i.e. I don't know the exact structure). The docs say that you can't

Re: [flexcoders] mx:binding equivalent in Actionscript? Need to dynamically bind text inputs..

2008-01-11 Thread Scott Melby
Rich - Haven't ever tried it... but, ChangeWatcher.watch() might be useful. hth Scott Scott Melby Founder, Fast Lane Software LLC http://www.fastlanesw.com zlayde wrote: Hi all: I'm looking to programattically bind a textInput box as a source and an xml element (via e4x) as a

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread dfalling
The title sounded like exactly my problem, but the description didn't match up. My issue is simply that variable width columns do not resize properly when showing/hiding columns. That issue seems to deal with it overriding fixed widths. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL

[flexcoders] Problems compiling defaults.css into SWC - F3B3

2008-01-11 Thread ben.clinkinbeard
I am trying to include the default styles in my SWC but am getting errors when setting the compiler options. defaults.css is in the top level of my library project. If I use -include-stylesheet defaults.css defaults.css the error displayed is unknown configuration variable 'include-stylesheet'

Re: [flexcoders] Dynamic DataGrid + slow horizontal scrolling

2008-01-11 Thread Scott Melby
Gary - Pretty much Every time I see datagrid performance issues it is due to 1 of the following 2 issues. 1) Heavy renderers (HBox VBox, etc,) - This is not the case for you application since you are just using the standard renderer. 2) Inefficient data source - I believe this is the case

[flexcoders] 2032 error, webservices, flex 2, BEA

2008-01-11 Thread Douglas Knudsen
Ok, we are getting the dreaded 2032 error intermittently from a Flex app using webservices over HTTPS. I've read everything I can available via the all mighty Google. Again, this is intermittent and only affects IE 6. For example, a particular webservice call can work about 75% of the time on

[flexcoders] Anyone have a template ant build file for FDS?

2008-01-11 Thread Collene
Hi all, I'm trying to create a Flex Data services application and deploy to Tomcat 6 using ant. I created a simple Stock Portfolio application from this book: http://www.theriabook.com/ . The Stock Portfolio has a remote procedure call using a Java backend and Flex/mxml front end. In my build

RE: [flexcoders] Apply gradients on text?

2008-01-11 Thread Gregor Kiddie
You can apply gradients to text components dynamically. Take a look at DisplayObject.filters and flash.filters. It effectively turns a display object into a Bitmap behind the scenes and applies the filter you have applied. Gk. Gregor Kiddie Senior Developer INPS Tel: 01382

[flexcoders] simple flash question (outside of flex again)

2008-01-11 Thread Gustavo Duenas
Hi, I've just recently switch from Flash 8 to cs3, and I was trying to set a ProgressBar component the same way I did in Flash 8, I know is different now, but I've been trying to google this thing and nothing yet. so far is this. I have my PB with this: Mode=Pulled Source=_root I've

Re: [flexcoders] movie clip control from flex

2008-01-11 Thread Derrick Anderson
hey gustavo, check out this url http://www.adobe.com/devnet/flex/quickstart/embedding_assets/#EmbeddingSwfFiles this shows how you can embed swf files into your flex app. also from the docs: You can manipulate the embedded SWF file by using the methods and properties of the MovieClipLoaderAsset

[flexcoders] delay in rendering UIcomponent

2008-01-11 Thread learner
Hi all , My component has following configuration HdivideBox List/ VBox TabNavigator/ Hbox/ /VBox HdivideBox When I creates this component, it takes lots of time (1/2 second) before rendering itself on UI and all the processing on UI hangs. the main reason that i

[flexcoders] Re: How to use flexmdi framework in flex builder 2.0.1

2008-01-11 Thread ben.clinkinbeard
I have been pestering Brian Holmes to create a Flex 2 SWC for a while now since he was the one who screwed up and made the original Flex 3. :) Feel free to harass him until he does it: http://brianjoseph31.typepad.com/smashedapples/2007/09/moxie-killed-th.html As mentioned below, you can point to

[flexcoders] Re: Populating comboBox

2008-01-11 Thread candysmate
--- In flexcoders@yahoogroups.com, simonjpalmer [EMAIL PROTECTED] wrote: one very small point, you can get rid of the line which adds a dummy Select item by setting the prompt on the combo OOps, missed that. Thanks for the heads up Simon.

[flexcoders] How to integrate multiple Flex application in a one-site Flex application?

2008-01-11 Thread michniu
Hey Coders, I have 3 different Flex application now , my new task is integrate them in one-site application : suppose I have 3 apps : http://myhost/myapp1.swf; http://myhost/myapp2.swf; http://myhost/myapp3.swf; and my one-site app should be : http://myhost/myonesite.swf; the one of 3

[flexcoders] Apply gradients on text?

2008-01-11 Thread greeninvaders
Hi! My designer just asked me if I could apply gradients to dynamic text in Flex (for example on a Label component) I've searched the net and this forum and couldnt find any info whether it's even feasible or not. I checked the Label component source and it seems the part that draws the text is

[flexcoders] Binding an arraycollection of Loaders

2008-01-11 Thread samdafi
Hello, I'm just learning flex and am trying to make a simple gallery app that grabs albums from a feed. Here's a brief description: ModelLocator has an -Album has --Photos, an ArrayCollection of ---Photo, has a thumbnailLoader, a loader that contains a -Bitmap There is a list of

Re: [flexcoders] Using the Flex Component Kit in an ActionScript project

2008-01-11 Thread Elie Zananiri
No, I've tried that and it still doesn't work. Besides, if I just draw a rectangle in the graphics of the child object, it displays properly, without having to set any dimensions in the parent. On 10-Jan-08, at 5:25 PM, Alex Harui wrote: In Flex apps, the protocol is that parents size

[flexcoders] Loading modules

2008-01-11 Thread markgoldin_2000
Module's file is accidents.mxml. I am using the following function to load a module: private function createModule(m:ModuleLoader, s:String):void { if (!m.url) { m.autoLayout = true; m.url = s; m.loadModule(); m.enabled = false; } } I have two questions:

[flexcoders] Flex + Spring + Hibernate - Lazy=true

2008-01-11 Thread Rodrigo Pereira Fraga
Someone has some solution to use the Pattern OpenSessionInView with Flex using BlazeDS? I am using Spring and it contains a OpenSessionInViewFilter used in web.xml, and a OpenSessionInViewInterceptor. But it is different with Flex +) Someone has idea of how I can use the Lazy = true to

[flexcoders] Setting custom component properties in MXML

2008-01-11 Thread Merrill, Jason
When using your own custom made components in MXML, what is the best way to easily set properties? I.e., say I have a simple component that has an image inside a panel, and I want to set the image source in my MXML, like this: c:MyImageComponent imageSource=myPhoto.jpg / The way I figured

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
Thank you for this wonderful example and maybe I am just too much of a noob at this but wouldn't this example just put every thing in a data grid? --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: It is difficult to debug problems when you bind directly to lastResult.

[flexcoders] Re: FlexBuilder 3 Beta 3 - Overstate causes resizing effect

2008-01-11 Thread polestar11
I managed to solve my scrollbar problem, by tweaking the .fla symbols. I put the scale-9 outside the vertical areas for all resources. I'm still struggling with my buttons though. I tried setting the padding amounts, which worked in 1 area, but not in others Any suggestions? --- In

Re: [flexcoders] How to use flexmdi framework in flex builder 2.0.1

2008-01-11 Thread Joseph Balderson
In a word: laziness. Have not installed SVN on this new machine yet, so I used the swc because it was easier, and like a fool assumed the source would be the same. Thanks for the clarity Ben and Max. ___ Joseph Balderson, Flash

[flexcoders] Accessing objects within objects within objects... ???

2008-01-11 Thread anthony_morsey
I have a the following object hierarchy: TabNavigator tab1_panel (first tab in series of 4) myCanvas (canvas in the first tab) myText (text control within the above canvas) How do I change the text value of myText in the above example? Before I added the second canvas above

[flexcoders] Add methods to RemoteObject in AS?

2008-01-11 Thread Paul Dale
Howdy ... anyone know what the AS equivilent for this is? mx:RemoteObject id=srv showBusyCursor=true destination=pojo mx:method name=getConfigForCompany result=showConfig(event) / mx:method name=getConfiguredCompanies result=showConfig(event) / /mx:RemoteObject I'm not seeing how to

Re: [flexcoders] How to use flexmdi framework in flex builder 2.0.1

2008-01-11 Thread Max Frigge
Hi, i am using the flexmdi in FB2 and it works like a charm. I use the source files though... why are u so keen in using the swc files. I reckon it's very nice to have the source there so that you can easily customize it. So my advice would to use the source instead.. Cheers, Max -

Re: [flexcoders] mx:binding equivalent in Actionscript? Need to dynamically bind text inputs..

2008-01-11 Thread Daniel Freiman
Take a look at mx.utils.XMLNotifier and mx.collections.XMLListAdapter for examples of how it is used. Since these classes are undocumented we have to assume that they may change without warning. - Dan Freiman On Jan 11, 2008 9:45 AM, Scott Melby [EMAIL PROTECTED] wrote: Rich - Haven't

[flexcoders] Taking a variable from an Component in my Viewstack

2008-01-11 Thread John
Hi there, I want to extract a variable from each of my Components in the Viewstack as I display it. When the variable has been extracted from the Component, I then want to display or update one in one of the other Components. I have been trying for days and come up with nothing, can someone

Re: [flexcoders] Re: How to use flexmdi framework in flex builder 2.0.1

2008-01-11 Thread Joseph Balderson
DOH! I must have missed that post. Thanks Ben. ___ Joseph Balderson, Flash Platform Developer | http://joeflash.ca Writing partner, Community MX | http://www.communitymx.com Abobe Certified Developer Trainer ben.clinkinbeard wrote: I

[flexcoders] Why are references to my local filesystem making it into published files?

2008-01-11 Thread john.daharsh
I get a 1009 exception, and it is referencing a path on my local machine(?!) I am publishing for a server-based application, with a server technolgy of other selected. I fail to understand why any hard-coded references to my local filesystem would be embedded into the published files. It

Re: [flexcoders] Re: Amazon S3 awss3lib Flex Library error 2038

2008-01-11 Thread Daniel Tse
It seems that the awss3lib project has been updated since I first posted and now it's all fixed! (no longer need to comment out the shouldCacheResponse property and I no longer get the 2038 error when I upload. Thanks Christian! (if you're reading) -Daniel On Jan 9, 2008 12:54 PM, Tom Sobut

[flexcoders] AS3 Data Coercion Problem

2008-01-11 Thread pete.mackie
From PHP server RemoteObject AMF3 serialization, I receive a photo object per below into my Flex client: package WPhoto { [Bindable] [RemoteClass(alias=WPhoto.PhotoObj)] public class PhotoObj { public var photo:*;

[flexcoders] flexmdi compiled with flex sdk 2.0.1 hotfix 3

2008-01-11 Thread madflexcoder
I compiled the flexmdi framework with flex sdk version 2.0.1 hotfix 3. The download can be found in the downloads at the googlecode page. http://code.google.com/p/flexmdi/ For those of you that were looking for it or having trouble compiling with flex 201 feel free to email me offlist for any

RE: [flexcoders] Flex 3 checkbox layout issues

2008-01-11 Thread Alex Harui
Please open a bug. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Friday, January 11, 2008 3:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex 3 checkbox layout issues Hi All I've made a

RE: [flexcoders] Setting custom component properties in MXML

2008-01-11 Thread Tracy Spratt
Public variable is one certainly acceptable way. Another is to use setter/getter functions. They are especially useful if you need to take some action when the property value is set. I use these very often. You can declare a public property in mxml: mx:Object id=imageSource / I don't do

[flexcoders] controlling a movieclip from a movieclip (AS3)

2008-01-11 Thread Gustavo Duenas
I have one movie clip, which has an order in the timeline. the order is : this.ball.gotoAndPlay(2); I've been trying: root.ball.gotoAndPlay(2); ball.gotoAndPlay(2); MovieClip(ball).gotoAndPlay(2); but no success at all...Am I'm doing wrong something? I've been Trying this is AS2 but is ok,

RE: [flexcoders] Re: XML List problems

2008-01-11 Thread Tracy Spratt
TileList is very similar to List and DataGrid. Each element (row, tile) in the list gets a reference to the dataProvider item that is producing it. With all the lists, you have to tell the control which property in the dataProvider item you want to display. Specify labelField (dataField

[flexcoders] Re: Flex + Spring + Hibernate - Lazy=true

2008-01-11 Thread andrii_olefirenko
BlazeDS (and LCDS as far as i remember) doesn't support this out of box. There are workarounds like 1) make you own DTO (hibernate free) 2) prefetch object dependencies 3) include metadata about lazy properties with you objects, control externalization to handle objects with metadata and so

RE: [flexcoders] Loading a link/url in a new window

2008-01-11 Thread Alex Harui
If you're running local-with-filesystem, maybe you should use AIR instead? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Roy J. Tang Sent: Friday, January 11, 2008 1:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Loading modules

2008-01-11 Thread Alex Harui
ModuleLoader will load when the url changes. There might be a flag to turn off that behavior. Is the module displayed when you try to enable it? If you enable too soon it might not have an effect. From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] print to server

2008-01-11 Thread dominique.bessette
is there a way to print out statements in a flex application to the server? ie. in java it's System.out.println(ERROR);

RE: [flexcoders] Using the Flex Component Kit in an ActionScript project

2008-01-11 Thread Alex Harui
Flash does not clip by default so drawing in the graphics area will usually show. I don't have time to poke at your files right now, but if you've set the width/height and/or called setActualSize on the component, it should report its new width and should display accordingly.

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
I've tried this basic event handler with no success Code: mx:HTTPService id=tempXML url=https://{customer.text}.mysite.net/interface.php?action=showopenamp;operation=showassetsamp;format=xmlamp;opstatus=critamp;username={username.text}amp;password={password.text}; / mx:Script ![CDATA[ import

[flexcoders] RE: [flexcomponents] item renderer for list

2008-01-11 Thread Alex Harui
You should extend UIComponent and not Canvas. You are not using any Canvas features so you don't need the weight. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of learner Sent: Friday, January 11, 2008 2:23 AM To: [EMAIL PROTECTED];

[flexcoders] Possible Data Service - Hibernate Assembler bug

2008-01-11 Thread foobone9
I have two different apps A B. On startup both use the same DS fill method (and same fill parameters) to login and authenticate a user. The fill returns a managed User object (the logged in user). Both applications work fine on their own. However, I am having the following problem: I start

[flexcoders] Re: 2032 error, webservices, flex 2, BEA

2008-01-11 Thread Douglas Knudsen
to add the current response headers are: HTTP/1.1 200 OK Date: Fri, 11 Jan 2008 16:44:17 GMT Transfer-Encoding: chunked Content-Type: text/xml; charset=utf-8 SOAPAction: getAlertsForDates X-Powered-By: Servlet/2.4 JSP/2.0 If cache-control is not sent at all, does IE have issue with that? DK On

RE: [flexcoders] print to server

2008-01-11 Thread Tracy Spratt
Remember, Flex apps do not run on the server like Java, jsp apps. trace() will output to the flashlog.txt file if you are running in a debug flash player, and have the mm.cfg file configured. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
Yeah thanks for the advice but I can't seem to get anything on that code to work and to be honest I don't even begin to understand where to begin on how to modify it to get it to work. Trying to get it to work but I get a whole mess of errors 1046: Type was not found or was not a compile-time

[flexcoders] maven and eclipse with flex..

2008-01-11 Thread Mert Çalışkan
Anybody using maven-archetype for creating their flex projects like, mvn archetype:create -DarchetypeArtifactId=maven-archetype-flex -DarchetypeVersion=1.0 -DarchetypeGroupId=dk.jacobve.maven.archetypes -DgroupId=bla

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread rueter007
Are you using Flex 3 beta 3? because I tried the below sample code and I cannot reproduce it. The column widths remain the same no matter how many times I toggle them. --- In flexcoders@yahoogroups.com, dfalling [EMAIL PROTECTED] wrote: Yeah, I really should have done this in the first

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
OK I've seen some of the errors mx:HTTPService id=tempXML resultFormat=e4x result=onResult(event) url=https://{customer.text}.mysite.net/interface.php?action=showopenamp;operation=showassetsamp;format=xmlamp;opstatus=critamp;username={username.text}amp;password={password.text}; /

[flexcoders] Blurring Application Area Beneath TitleWindow (Like an Alert)

2008-01-11 Thread Paul Whitelock
I need to blur the application area beneath a TitleWindow based on what's going on in the TitleWindow. The blur effect I'm looking for is the same that is drawn when an Alert window pops up but the difference is that I want to be able to programatically disable or enable the application blur based

RE: [flexcoders] Is Flash player beta rockstar in Flex 3

2008-01-11 Thread Matt Chotin
I think you mean Moviestar? Yes, beta 3 has Moviestar (which was actually already released). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Hess Sent: Friday, January 11, 2008 11:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Is Flash player beta

[flexcoders] How do I set and get the date of a DateField?

2008-01-11 Thread simonjpalmer
not normally stumped, but I can't figure out how to set the value of a DateField from a Date and then do the reverse and get a Date object from the DateField. I was expecting to have accessors which took Date objects, but there aren't any. Do I have to do the whole thing via formatted text?

[flexcoders] resizing and sliding panels?

2008-01-11 Thread pfkellogg
i have 2 panels in my app, a thin navigator panel on the left and a fat dashboard panel on the right. I want to click and have the navigator shrink to nothing while the dashboard expands to full size, without using states. like a sliding panel. anyone have links to some samples that work or any

Re: [flexcoders] Setting custom component properties in MXML

2008-01-11 Thread Jeffry Houser
Merrill, Jason wrote: When using your own custom made components in MXML, what is the best way to easily set properties? I.e., say I have a simple component that has an image inside a panel, and I want to set the image source in my MXML, like this: c:MyImageComponent

[flexcoders] Re: Binding an arraycollection of Loaders

2008-01-11 Thread samdafi
Hi Alex, Thanks so much for the tip. I changed the itemRenderer to the code below and it seems to be working just great. mx:Image x=10 y=10 mx:source display:Bitmap bitmapData={data.thumbnailLoader.content.bitmapData} /display:Bitmap /mx:source /mx:Image -Sam --- In

[flexcoders] LCDS AMF call not firing result events, busy cursor does not go away

2008-01-11 Thread Maciek Sakrejda
I'm running into some odd Flex behavior, and I was wondering if anyone had run into something similar before. Basically, it looks like my RemoteObject result handlers are sometimes not being called. More specifically, I have a remote object that corresponds to a Java class which makes a jdbc call

RE: [flexcoders] Non-modal windows

2008-01-11 Thread Alex Harui
Yeah, there's no functionality built-in for what you want. Maybe try catching mouseDown off the systemManager in capture phase and stopImmediatePropagation() when clicking on the first popup From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf

[flexcoders] Re: Setting custom component properties in MXML

2008-01-11 Thread Jason
Thanks, I'm only resisting because I like the simplicity of MXML, I'm actually FAR more comfortable with Actionscript. Thanks, and yes, I know about get and set... thanks though. So it looks like I'm doing it the preferred way anyway. Thanks for the responses! Jason --- In

RE: [flexcoders] Dynamic DataGrid + slow horizontal scrolling

2008-01-11 Thread Alex Harui
Scott is correct. However, horizontal scrolling is not optimized in the DG so it will never perform as well as vertical scrolling. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Melby Sent: Friday, January 11, 2008 6:31 AM To:

Re: [flexcoders] print to server

2008-01-11 Thread Mark Shen
which path I can get the flashlog.txt ?Thanks - Original Message From: Tracy Spratt [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Friday, January 11, 2008 2:29:05 PM Subject: RE: [flexcoders] print to server Remember, Flex apps do not run on the server like Java, jsp apps.

[flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread dfalling
Yeah, I really should have done this in the first place...I'm using more text to explain the problem than the code takes up... -- ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical mx:DataGrid width=300

[flexcoders] Re: How do I set and get the date of a DateField?

2008-01-11 Thread simonjpalmer
thanks! that seems to work as long as I have dd/mm/ or mm/dd/ as the formatString, otherwise it fails to parse and I seem to get a zero date. --- In flexcoders@yahoogroups.com, Maciek Sakrejda [EMAIL PROTECTED] wrote: DateField.selectedDate? -Original Message- From:

[flexcoders] Re: Exit

2008-01-11 Thread Alger Werft
While I worked on the item, I was calling a JS function on window.onbeforeunload event, which shall transfer the call to flex's logout function. But it did not helped me to resolve the issue. I did not come to know where I was wrong, in making a call or in accessing flex's code. I once

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
I am trying to find an example of the result handler that will get the data to the TileList. Tracy's example is great but I am having a hard time making this work with my app. --- In flexcoders@yahoogroups.com, markcavins [EMAIL PROTECTED] wrote: Thank you for this wonderful example and maybe

[flexcoders] server vs. local error

2008-01-11 Thread dominique.bessette
How come on my server I get this error (below) but on my local machine I dont? TypeError: Error #1034: Type Coercion failed: cannot convert flash.events::[EMAIL PROTECTED] to mx.events.ListEvent.

[flexcoders] Re: Flex + Spring + Hibernate - Lazy=true

2008-01-11 Thread Rodrigo Pereira Fraga
Oh my god =/ But who uses the LCDS, it does not contain a HibernateAssembler which implements the use of lazy? --- In flexcoders@yahoogroups.com, andrii_olefirenko [EMAIL PROTECTED] wrote: BlazeDS (and LCDS as far as i remember) doesn't support this out of box. There are workarounds

Re: [flexcoders] FileReferenceList for Downloads?

2008-01-11 Thread Rick Schmitty
Unless I'm doing something wrong, each time you call yourFileReference.download(...) it prompts the user for the directory and filename to be saved as I've got step 1 and 2 fine, its when you get to step 3 that it becomes annoying to the user with all the prompts for each file On Jan 10, 2008

[flexcoders] Is Flash player beta rockstar in Flex 3

2008-01-11 Thread Greg Hess
Hi All, Is the latest Flash player beta 'rockstar' the Media Widget in Flex 3? Thanks, Greg

RE: [flexcoders] Re: XML List problems

2008-01-11 Thread Tracy Spratt
labelField and labelFunction are properties of TileList. You have several other issues. I advise using my example code, including the trace statements. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of markcavins Sent:

[flexcoders] Re: Problems compiling defaults.css into SWC - F3B3

2008-01-11 Thread madflexcoder
don't use the -include-stylesheet directive when in a flex library project. it's done automatically. --- In flexcoders@yahoogroups.com, ben.clinkinbeard [EMAIL PROTECTED] wrote: I am trying to include the default styles in my SWC but am getting errors when setting the compiler options.

RE: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

2008-01-11 Thread Alex Harui
Post a mini-test-case. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dfalling Sent: Friday, January 11, 2008 7:09 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DataGridColumn width shrinks when visibility is toggled

Re: [flexcoders] How do I set and get the date of a DateField?

2008-01-11 Thread Maciek Sakrejda
DateField.selectedDate? -Original Message- From: simonjpalmer [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] How do I set and get the date of a DateField? Date: Fri, 11 Jan 2008 21:28:32 - not normally stumped, but I can't

[flexcoders] Only allow dragging tree branch items with the same branch

2008-01-11 Thread jery.duval
I'm a newbie to flex, but long time Java Framework developer. I have created a tree and enabled the drag and drop. I want to limit the user to only being able to drag and drop within the same tree branch. ex. I would only want b, a, or r to be dragged within Foo Tree foo b

[flexcoders] Re: SVG and CSS Styles

2008-01-11 Thread mthomas1969
Degrafa does, indeed, work with SVG although it's a bit rough round the edges since it's only been in beta for a week. Nevertheless, it solved my problem. Thanks for the tip! -Matt --- In flexcoders@yahoogroups.com, scalenine [EMAIL PROTECTED] wrote: Check out degrafa.com . You can use

RE: [flexcoders] print to server

2008-01-11 Thread Tracy Spratt
It is generated automatically. See: Configuring the debugger version of Flash Player in the docs. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark Shen Sent: Friday, January 11, 2008 2:37 PM To: flexcoders@yahoogroups.com

RE: [flexcoders] is this the Flex 3 release date ?

2008-01-11 Thread Matt Chotin
Release date will hopefully be announced in a few weeks. Apologies for not being able to say more, unfortunately being a public company we actually have rules on what can and can’t be said in this regard. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom

RE: [flexcoders] Setting custom component properties in MXML

2008-01-11 Thread Alex Harui
Public var (or function get/set pairs) are how you define properties. No real clean way to do it using tags for simple types. All id's are public. You can create a private slot and assign it dynamically. From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] How to integrate multiple Flex application in a one-site Flex application?

2008-01-11 Thread Alex Harui
Are you asking how to use SWFLoader and TabNavigator or how to do 3 apps in an HTML page? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of michniu Sent: Thursday, January 10, 2008 9:44 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: XML List problems

2008-01-11 Thread markcavins
OK so in the example that I have tempXML.lastResult.asset.fleet tempXML is my source (the url) asset is the parent attribute and fleet is the actual name that I want to display I'm still unsure as to where I would use the labelFunction(asset). Sorry I know this must be sounding Dugh to

  1   2   >