[flexcoders] Load XML file from different location?

2010-06-08 Thread Bob
Hi All, I've been going through an exercise by Karl Matthews to load XML data into an AIR App: http://www.adobe.com/devnet/air/flex/articles/xml_viewer_on_air.html but I would like to change where the XML file used in the project is retrieved from. Currently the XML file is loaded

Re: [flexcoders] How do I get the browser's height and width?

2009-09-16 Thread Bob Wohl
You pretty much have to get it using JS. hth! B. On Wed, Sep 16, 2009 at 5:02 PM, luvfotography ygro...@all-digital-links.com wrote: How do I get the browser's height and width, not the swf's height and width, but the browser's height and width, can I get it without using javascript

Re: [flexcoders] Who else is here - SharedObjects?

2009-07-17 Thread Bob Wohl
Look at remote shared objects on FMIS. You would store the clients via rso, and anytime some one would enter or leave you'd add the client name or match and remove client on exit, that would update the list on all clients (on change). I'm not sure how you'd do this via LCDS/Blaze sicne I haven't

Re: [flexcoders] Access FormItem child

2009-05-22 Thread Bob Wohl
Actionscript. On Fri, May 22, 2009 at 1:01 PM, markgoldin_2000 markgoldin_2...@yahoo.com wrote: If I have a FormItem like this: ?xml version=1.0 encoding=utf-8? mx:FormItem xmlns:mx=http://www.adobe.com/2006/mxml; width=100% height=100% direction=horizontal mx:TextInput id=username/

[flexcoders] labelFunction on BarSeries not firing

2009-02-26 Thread Bob Wohl
Hello all, I'm not to sure why this isn't firing. I've broke this down to the simplest of forms and even used some very basic examples to reproduce. For some reason the labelfunctiojn never gets hit, maybe I'm missing something very simple. My stacked charts and pie charts fire just fine, seems to

Re: [flexcoders] labelFunction on BarSeries not firing

2009-02-26 Thread Bob Wohl
Ah! good point, I completely overlooked that! Yes, it was good time. Nice seeing some new faces. :) Thanks Ryan! B. On Thu, Feb 26, 2009 at 12:16 PM, Ryan Graham ryan.gra...@phoenix.eduwrote: Hey Bob, Good meeting you at the AZFPUG meeting last night. Looks like labelPosition

[flexcoders] Mouse events from Axis Label- charts

2009-02-04 Thread Bob Wohl
Hello, I'm trying to figure out how to click on horizontal axis labels (using DateTimeAxis). I can use a MouseEvent.CLICK and check it's event.target.parent.placement to verify that it's the right axis and then access it's text but this seems like a hack. I can't add mouse functionality to it(roll

[flexcoders] Performance Issues with AdvancedDataGrid

2008-08-01 Thread Bob
I have an application based on a AdvancedDataGrid control that makes use of custom editors and renders to in many ways resemble Excel. Problem I am having is that if the user begins rapidly entering data the application will occasionally miss keyboard entry. Our observation is that in the

Re: [flexcoders] Stop Scaling scrollThumb - skinning

2008-04-28 Thread Bob Wohl
Well this could definitely work in a solo dev environment. Unfortunately I'm not on a solo mission :( Thanks for the info on this Gabriel. I'm sure this will come in handy! B. On Sat, Apr 26, 2008 at 8:42 AM, gabriel montagné [EMAIL PROTECTED] wrote: On Fri, Apr 25, 2008 at 2:34 PM, Bob

Re: [flexcoders] Stop Scaling scrollThumb - skinning

2008-04-28 Thread Bob Wohl
a work in progress so you might bump into an occasional error, etc. Just dismiss and you should be fine. cheers, ethan On Fri, Apr 25, 2008 at 2:34 PM, Bob Wohl [EMAIL PROTECTED] wrote: I'm trying to adapt a skin to a scroll bar with out scaling the scrollThumb image. The proper

Re: [flexcoders] Stop Scaling scrollThumb - skinning

2008-04-28 Thread Bob Wohl
Bob, On Mon, Apr 28, 2008 at 11:19 AM, Bob Wohl [EMAIL PROTECTED]bob.wohl%40gmail.com wrote: [...] Ah well, I talked the designer into redesigning it. I wish I had the time on this project to just roll my own. Do you need this scrollbar to be used on many different components? I mean

[flexcoders] Stop Scaling scrollThumb - skinning

2008-04-25 Thread Bob Wohl
Hello all, I'm trying to adapt a skin to a scroll bar with out scaling the scrollThumb image. All the searching I've done points me to editing the SDK which seems a bit hack-ish. Also, most of the info I found was on FB2 and not 3. Does anyone know a way to kill the scaling of the scrollThumb?

Re: [flexcoders] Re: Is SWFObject ready for prime time?

2008-04-22 Thread Bob Wohl
I just updated an application to use SWFObject 2.0 yesterday. Hopefully when it gets to QA I won't get bombarded by failed browser issues. If so, I'll just switch, so not to big of a deal. Although, trying to remember, I've used SWFObject in a quite a few apps that use ExternalInterface/JS in the

Re: [flexcoders] Drop anywhere to remove

2008-04-04 Thread Bob Wohl
Yes, would work the same as your 'drag to container', just a different target to drop to. B. On Fri, Apr 4, 2008 at 3:09 PM, newflexer [EMAIL PROTECTED] wrote: Hi, We have a container we can drag and drop objects to, and would like to remove them by allowing users to drag and drop them

Re: [flexcoders] Flex Webcam Recorder

2008-04-03 Thread Bob Wohl
You will need to have FMS installed and attach the camera to the netStream with a param record here's some really awesome code to help you get started: http://www.pmko.net/category/flash-media-server/ (props to the owner of this blog for converting the code to AS3/mxml!) B. On Thu, Apr 3,

Re: [flexcoders] Re: Flex Webcam Recorder

2008-04-03 Thread Bob Wohl
I'm thinking the same since it is the client side. The methods would be the same, only the server side changes. Though I would check Red5 and WoWza's documentation to find out for certain. A couple of the people from both are on a few of these flash/flex list. Maybe they will chime in :) B. On

Re: [flexcoders] How to get flex popup modal dialog to fade entire browser window?

2008-04-03 Thread Bob Wohl
Well, unfortunately you will need to use javascript along with CSS and then have your embeded content in that. Flex does not natively do this w/o the other 2. Using lightbox you can embed your swf in one of their containers and use flex to do the fade effect for you if so desired. B. On Thu, Apr

Re: [flexcoders] Re: New Question: Component

2008-04-02 Thread Bob Wohl
Hmmm... Have you tried something like this: mx:Script ![CDATA[ //call this on application creationComplete(or when ever after that) private function creationISComplete(e:Event):void{ //foo is in essence a class with the method setTempMethod()

Re: [flexcoders] TabContainer - how to get a reference to the module that is loaded inside a tab

2008-04-02 Thread Bob Wohl
http://livedocs.adobe.com/flex/3/html/help.html?content=navigators_3.html the tab navigator is tied to a viewStack, so can't you use the veiwstackID.selectedChild? hth B. On undefined, guitarguy555 [EMAIL PROTECTED] wrote: I have a TabContainer and each tab contains a different module.

Re: [flexcoders] fading out a Box on removal?

2008-04-02 Thread Bob Wohl
http://livedocs.adobe.com/flex/3/html/help.html?content=08_Dates_and_times_4.html hth On Wed, Apr 2, 2008 at 4:15 PM, Anthony Ettinger [EMAIL PROTECTED] wrote: Is there an easy way to fade out a Box from ActionScript? Ie: when an error message appears, I just want it to show for 2.5

Re: [flexcoders] Issues with SWF playing in Firefox but not in IE6 or IE7

2008-02-12 Thread Bob Wohl
Do you get the security error? IE doesn't like activeX embedded items that use external data w/o a javascript embed method. B. On Feb 12, 2008 9:44 AM, Patrick Driggett [EMAIL PROTECTED] wrote: I have a small little Flex app that loads a local XML file and displays dynamically created

[flexcoders] Passing php session ID into a flex application

2008-02-11 Thread Bob Jones
Hi all, I was wondering how to use flashvars to pass a php session id into a flex application. I am new to flashvars so I need to know the syntax on the mxml and php sides. Thanks.

[flexcoders] Dynamically changing the size of a chart

2008-01-24 Thread Bob Jones
Hi all, I'm trying to make a bar or column chart, but sometimes I have too many column or bar series and each series becomes too small because its trying to fit inside the component. Is there any suggestion how to make the chart component dynamically change it's size? Thanks.

[flexcoders] Check for null FileReference

2007-01-22 Thread Bob Silverberg
be a much better way of doing this, which would also get around the problem. Any help that anyone could provide would be greatly appreciated. Thanks, Bob

[flexcoders] Re: Question

2006-06-09 Thread Bob Tierney
to Tomcat to support the complete functionality of FDS Regards, -bob tierney- --- In flexcoders@yahoogroups.com, Kelly @ Dekayd Media Inc. [EMAIL PROTECTED] wrote: If you need J2EE capabilities then you can use: http://geronimo.apache.org/ I think JBoss is J2EE too but I am not sure

[flexcoders] change style of validation errors

2005-11-15 Thread Bob Remeika
an error. I would also like to change the background of that field. My initial thought was to subclass one of the validators and change these properties on the listener when an error occurs, but it looks like this is something that flex does internally. Does anybody have any tips? Thanks, Bob

[flexcoders] Movieclip Tweening Prototypes

2005-10-17 Thread Bob Remeika
control. If anybody has any insight into the internals of flex animation (specifically animation as it pertains to the accordion control) or how to debug the problem further, then your help would be greatly appreciated. Thank you, Bob Remeika Yahoo! Groups Sponsor

[flexcoders] Re: Movieclip Tweening Prototypes

2005-10-17 Thread Bob Remeika
in UIObjectExtensions.as and UIComponentExtensions.as. If you can find out what the Flash SWF is extending, and list them, maybe we can resolve the issues, and work around them. - Original Message - From: Bob Remeika [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 17, 2005

[flexcoders] Re: Movieclip Tweening Prototypes

2005-10-17 Thread Bob Remeika
of the Effect classes extend tween, and some of those mothods overrwrite Tween's, and all those that extend it, at runtime thus fubarring the whole crew. Why not using the built in tween classes instead of Laco? - Original Message - From: Bob Remeika [EMAIL PROTECTED

[flexcoders] Re: Movieclip Tweening Prototypes

2005-10-17 Thread Bob Remeika
) in the designer's FLA, you can pass in that class reference, thus only affecting it, and not the actual MovieClip itself. Sorry bro, I feel your pain. - Original Message - From: Bob Remeika [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, October 17, 2005 4:38 PM

[flexcoders] Webservices and pre-compiled SWFs

2005-09-28 Thread Bob Remeika
Is it possible to continue to use the Flex proxy server if you are precompiling your Flex SWFs? Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

[flexcoders] How to submit a bug?

2005-09-14 Thread Bob Remeika
How do I go about submitting a bug in flex to macromedia? I think I found some issues between flex and ATG web services when using named services. I submitted my question to people on this list with the topic Bug or am I missing something??? Flex on tomcat connecting to ATG web service, but

[flexcoders] Bug or am I missing something??? Flex on tomcat connecting to ATG web service

2005-09-09 Thread Bob Remeika
help to shed more light on the situation. Thanks and Best Regards, Bob Here is the MXML code that I used to connect that *works* mx:WebService id=wsProof wsdl=http

[flexcoders] How to programmatically select multiple items in a List control?

2005-08-18 Thread Bob Remeika
Does anybody know how to do this? I would assume that it has something to do with pushing an index on the selectedIndices property but I have been unable to get it to work. I am able to select a single element by setting selectedIndex to a valid index though. I do also have

RE: [flexcoders] Re: application flow, logic question . . .

2005-07-11 Thread Bob Remeika
Regards, Bob Remeika -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chris.alvarado Sent: Monday, July 11, 2005 9:02 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: application flow, logic question . . . thanks everyone

RE: [flexcoders] Flex over dialup?

2005-07-07 Thread Bob Remeika
Jesse, I appreciate the time for the thorough response. This is something that is useful knowledge not only to us, but to the community as a whole. I will try to keep everybody updated as we discover tips and tricks that will help other developers. Thanks, Bob Remeika -Original Message

[flexcoders] Flex over dialup?

2005-07-05 Thread Bob Remeika
shopping cart? Any information would be helpful... we would like to use flex, but we are worried that some users will have a hard time using our flex application over a slow connection. Thank you, Bob Remeika -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files