RE: [flexcoders] Re: scrollRect ???

2009-09-24 Thread Alex Harui
I don't know of any example code. Are you trying to do anything different from the other map applications out there? Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] O

RE: [flexcoders] e4x Filtering Success

2009-09-24 Thread Tracy Spratt
Don't do that much code in-line, declare a Bindable instance level XMLListCollection variable and create that in a creationComplete handler. That way you can debug your e4x expression using toXMLString(); It will be nearly impossible to debug the inline binding. Tracy Spratt, Lariat Services, dev

[flexcoders] Re: scrollRect ???

2009-09-24 Thread flexaustin
Alex, thanks. Do you happen to know of any articles or examples on creating a satellite view pan/zoom control? Jason --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > I'm pretty sure scrollrects are always positioned at 0,0. It essentially > creates a mask of a certain size, positions

RE: [flexcoders] ToolTipManager problem

2009-09-24 Thread Gordon Smith
> Is there any other way I can get the tooltip to die after 2 seconds > regardless of what mouse movements take place...? Use a Timer to call destroyToolTip(). I believe that hideDelay only affects tooltips that are automatically shown, not ones that you show with createToolTip(). - Gordon Fr

RE: [flexcoders] ToolTipManager problem

2009-09-24 Thread Alex Harui
I think if the tooltip shows up under the mouse you may not get an itemRollOut and clean up the old one. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of

[flexcoders] ToolTipManager problem

2009-09-24 Thread luketvanderfluit
Hi. Here I have a component. Problem is that itemRollOver, itemRollout and change doesnt always close the tooltip. Then Im stuck with an open tooltip that can only be removed by reloading the application... I want to use ToolTipManager.hideDelay to automatically hide the tooltip after 2 secon

Re: [flexcoders] Re: JavaScript can't call Flex

2009-09-24 Thread Paul Andrews
bgamblin wrote: > Ah Ha! Found it. The problem was in my flex code, in the callback. I defined > it as taking one parameter, an event. Just to make sure that wasn't the > problem, I put in a default value of "null" for the parameter, but that's not > the same as having no parameter at all. So, w

[flexcoders] Re: JavaScript can't call Flex

2009-09-24 Thread bgamblin
Ah Ha! Found it. The problem was in my flex code, in the callback. I defined it as taking one parameter, an event. Just to make sure that wasn't the problem, I put in a default value of "null" for the parameter, but that's not the same as having no parameter at all. So, when JavaScript called it

[flexcoders] Re: JavaScript can't call Flex

2009-09-24 Thread bgamblin
There are many things that the user has to do to get to the menu where this call is made. So, the Flash would have to be ready, or else it wouldn't have been responding to state changes, button presses, and all the other things necessary to get to that point. I do know, for instance, that this

Re: [flexcoders] Re: JavaScript can't call Flex

2009-09-24 Thread Paul Andrews
bgamblin wrote: > I appreciate the quick response. Unfortunately, the call comes long after the > SWF is loaded. > > This is part of my attempt to upload a file using a self signed-SSL > connection (notoriously difficult in Flex). So this call comes after the > backend has already loaded the fi

[flexcoders] Re: JavaScript can't call Flex

2009-09-24 Thread bgamblin
I appreciate the quick response. Unfortunately, the call comes long after the SWF is loaded. This is part of my attempt to upload a file using a self signed-SSL connection (notoriously difficult in Flex). So this call comes after the backend has already loaded the file, and it's just returning

[flexcoders] Re: SDK 3.2 upgrade to 3.4 issue

2009-09-24 Thread djhatrick
I use this template here for my html template... under 3.3 sdk is this still affected? SWFObject flex template http://www.robgonda.com/blog/index.cfm/2008/7/15/SWF-Object-21-Flex-Template --- In flexcoders@yahoogroups.com, Jim Cheng wrote: > > If you do hang back with 3.3 _AND_ are using Flex

[flexcoders] Re:Flex with Sharepoint

2009-09-24 Thread Merrill, Jason
Sharepoint servers have all kinds of Webservices established you can connect to and call from Flex. You'd have to do some hunting around on some Sharepoint forums or documentation to find what you're specifically looking for though. Jason Merrill Bank of America <> Global Learning Learnin

Re: [flexcoders] JavaScript can't call Flex

2009-09-24 Thread Paul Andrews
bgamblin wrote: > I've got a SWF, embedded in an object, just like the standard Flex HTML. In > another section of the same HTML, I have JavaScript that calls a function in > the SWF. However, when the call is made, everything stops. That is to say, > all code written after that call is ignored,

[flexcoders] JavaScript can't call Flex

2009-09-24 Thread bgamblin
I've got a SWF, embedded in an object, just like the standard Flex HTML. In another section of the same HTML, I have JavaScript that calls a function in the SWF. However, when the call is made, everything stops. That is to say, all code written after that call is ignored, and the function itself

RE: [flexcoders] e4x Filtering Success

2009-09-24 Thread Jim Hayes
the & needs to be the correct xml entity, I believe. try using && in your mxml rather than && It's trying to tell you that, but it took me a few head scratches to work it out, I must admit. -Original Message- From: flexcoders@yahoogroups.com on behalf of AJC2357 Sent: Thu 9/24/2009 12:

RE: [flexcoders] scrollRect ???

2009-09-24 Thread Alex Harui
I'm pretty sure scrollrects are always positioned at 0,0. It essentially creates a mask of a certain size, positions it at 0,0, then only shows the pixels that would otherwise be displayed at x,y at 0,0 Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.a

[flexcoders] Dropdown won't show (combobox, Menus)

2009-09-24 Thread Michelle's Transition
Hi Everyone, I have a problem that's getting on my nerve just a bit. I'm working on a EMR app and would like to display a PDF file in my Flex app. I'm using the HTML component to display it which works good so far, but my current version of the screen is using a PopUpMenuButton to allow selectio

[flexcoders] How can I view internet traffic for an Air App?

2009-09-24 Thread luvfotography
To view internet traffic while using a Flex app, I just use Safari and go to the menu bar and go to Window/Activity. Is there an equivalent tool to see internet traffic to and from an Air app??? (while not in Debug mode) thanks,

[flexcoders] AdvancedDataGrid Groups and leafs

2009-09-24 Thread Ivan B
I'd like to display items in AdvancedDataGrid that at root level contain both grouped items and leafs (think file system). Is this possible? Regards

[flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread reflexactions
I have that set already and it seems to have no impact on this. I think thats becuase the SystemManager is capturing the MouseDown at SystemManager level so it sees the mouse down event which is not really effected by mouseFocusEnabled setting on the button. Once it sees the mouse down it runs

RE: [flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread Alex Harui
mouseFocusEnabled=false Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of reflexactions Sent: Thursday, September 24, 2009 8:47 AM To: flexcoders@yahoogroup

[flexcoders] How to make the effect smooth

2009-09-24 Thread ilikeflex
Hi I am using the below sample to increase the width and height but i want that the text should also transit smoothly. Any pointers??? http://www.adobe.com/2006/mxml";>

[flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread reflexactions
Yes I want to be able to click in the main form because that is where the button is, this is why using modal or disabling the main app won't work. If it is easier to understand think of a toolbar that lives in the main form with several non-modal popup windows. Clicking the toolbar will do somet

Re: [flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread Tom McNeer
First question would be: do you *want* them to be able to click in the main form? If not, you could simply set the "modal" property of the popup to "true" when you create it. -- Thanks, Tom Tom McNeer MediumCool http://www.mediumcool.com 1735 Johnson Road NE Atlanta, GA 30306 404.589.0560

[flexcoders] Re: Frame around image

2009-09-24 Thread reygeek
Just put it in a Box (or HBox or VBox) or a canvas or any other container and style it. --- In flexcoders@yahoogroups.com, "Christophe" wrote: > > Hello, > > How to make a frame around an mx:image ? > > Thank you, > Christophe, >

RE: [flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread Jake Churchill
Look into the PopupManager.createPopup method http://livedocs.adobe.com/flex/3/langref/mx/managers/PopUpManager.html There is a modal attribute which is false by default. I believe if you set that to true, you'll get your desired result. Jake Churchill CF Webtools 11204 Davenport, Ste

[flexcoders] Receiving AIR LocalConnection Slows App

2009-09-24 Thread michaelisraelcaplan
Hi, I'm working through a really strange issue with my Flex 4 AIR app. I've lost days of sleep, hair, and numerous brain cells trying to get to the source of the issue with no luck. The scenario is as follows: - AIR app with initialized receiving and sending localConnection objects. - Brow

[flexcoders] Frame around image

2009-09-24 Thread Christophe
Hello, How to make a frame around an mx:image ? Thank you, Christophe,

[flexcoders] Flex with Sharepoint

2009-09-24 Thread Netaman
Does anyone have a better way of integrating Flex with Sharepoint then with a ColdFusion remote call to a C# app; C# code here using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Net; using System.Text; namespace pathBugLibrary1 { public class p

[flexcoders] Re: How to stop a button click from changing focus

2009-09-24 Thread valdhor
Disable the application? Application.application.enabled = false; --- In flexcoders@yahoogroups.com, "reflexactions" wrote: > > If I have a popup window which has focus and I then click a button that is in > the application main form the SystemManager's mouseDown handler automatically > activ

[flexcoders] How to stop a button click from changing focus

2009-09-24 Thread reflexactions
If I have a popup window which has focus and I then click a button that is in the application main form the SystemManager's mouseDown handler automatically activates the main app and deactivates the popup. How can I stop that from happening.

Re: [flexcoders] Help with comboBox selectedItem

2009-09-24 Thread abhijit chore
selected Item always give you the object.You have to typecast it into String or use Selected Label. Kind Regards Abhijit On Thu, Sep 24, 2009 at 8:45 AM, funandlearning3 wrote: > > > Hi, > > I have a combobox which is populated with query on backend. when I am > trying to display a alert box wi

[flexcoders] Help with comboBox selectedItem

2009-09-24 Thread funandlearning3
Hi, I have a combobox which is populated with query on backend. when I am trying to display a alert box with the selectedItem, I get the following error: Multiple markers at this line:Implicit coercion of a value with static type object to a possibly unrelated type string: Here is my code sni

[flexcoders] Re: Potomac - Flex Modularity Framework (like OSGi / Eclipse RCP)

2009-09-24 Thread schtoo2
Yes. Theres an example application with source (2 modules and one application) included with the download. -Chris --- In flexcoders@yahoogroups.com, primo411 wrote: > > Is there a sample application with sources anywhere ? > > Regards > > 2009/9/23 schtoo2 > > > > > > > Hi flexcoders, > >

Re: [flexcoders] Potomac - Flex Modularity Framework (like OSGi / Eclipse RCP)

2009-09-24 Thread Pedro Sena
Interesting, I was looking for something like that for a while. @primo411: Take a look at http://www.potomacframework.org/documentation/getting-started/ Regards On Thu, Sep 24, 2009 at 8:18 AM, primo411 wrote: > > > Is there a sample application with sources anywhere ? > > Regards > > 2009/9

Re: [flexcoders] Logic diagram library for Flex

2009-09-24 Thread primo411
Maybe Degrafa ( http://www.degrafa.org/ ) ? Their "Process Map" example seems very similar to what you are looking for: http://www.finflex.fi/projects/degrafaProcessMap/ Regards, Julien Nicoulaud 2009/9/19 twcrone70 > > > Anyone know of any Flex libraries for creating logic diagrams or the lik

Re: [flexcoders] Potomac - Flex Modularity Framework (like OSGi / Eclipse RCP)

2009-09-24 Thread primo411
Is there a sample application with sources anywhere ? Regards 2009/9/23 schtoo2 > > > Hi flexcoders, > > I wanted to drop by and announce our new Flex framework. I've seen a few > messages here over time where people are looking for a framework like the > Eclipse RCP that includes a deep modula