[flexcoders] Re: pausing application for given time

2005-09-09 Thread heybluez
Never tried this but maybe use setInterval() when the button is pressed and then when that calls the function you do a clearInterval() to stop the setInterval(). setInterval():

[flexcoders] Re: Another Proxy? PHP?

2005-09-01 Thread heybluez
Of heybluez Sent: Thursday, August 11, 2005 5:04 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Another Proxy? PHP? Hey, I have a client that does not want to use the Flex proxy for HTTPService requests. Unfortunately, you need to have a crossdomain.xml file on all the requested servers

[flexcoders] Another Proxy? PHP?

2005-08-11 Thread heybluez
Hey, I have a client that does not want to use the Flex proxy for HTTPService requests. Unfortunately, you need to have a crossdomain.xml file on all the requested servers. This, is probably unlikely to be the case all the time...if even part of the time. SO I was thinking of building a PHP

[flexcoders] Re: Another Proxy? PHP?

2005-08-11 Thread heybluez
Hi. Can you expand on this? If I am sending a request from flex, how would i use RewriteRule? Thanx! --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 8/12/05, heybluez [EMAIL PROTECTED] wrote: I have a client that does not want to use the Flex proxy

[flexcoders] Re: HTTPService useProxy question...

2005-07-09 Thread heybluez
to use that data. PHP grabs the xml feed, unzips it, and sends it to Flex when Flex requests it. Since PHP is server-side, and not bound by any domain sandbox, I'm good to go. http://dev.jessewarden.com/swg/resources/ - Original Message - From: heybluez [EMAIL PROTECTED

[flexcoders] HTTPService useProxy question...

2005-07-08 Thread heybluez
Anyone bypass the flex proxy with useProxy=false? I have a flex app that currently uses the server as a proxy but we want to bypass the flex server and go directly to the source HTTP post/request. For example, one source is an RSS feed that will come up in a browser but is an XML file. When I

[flexcoders] Re: HTTPService useProxy question...

2005-07-08 Thread heybluez
. The Flash Player will automatically check this address for any domain or subdomain that is accessed. The Flex proxy gets around this restriction. Cheers, Ted ;) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of heybluez Sent: Friday

[flexcoders] indicating drop target on mx:list

2005-07-02 Thread heybluez
I am trying to figure out a way to indicate to the user what they are over on a list when dragging. I would like to activate the rollover color when the drag item is over that particular list item. any suggestions? thanks, Michael -- Flexcoders Mailing List FAQ:

[flexcoders] List.selectedIndex=0; - how do i fire change event?

2005-07-02 Thread heybluez
Ok... silly question. I have a list with a change event. I would like to be able to set the index via actionscript like so: List.selectedIndex=0; This will highlight the right item but it will not fire the change event. I am wondering how I can make it know that the list changed? Thanks,

[flexcoders] Re: iconFunction with List

2005-06-15 Thread heybluez
have a leading ./ before images, so it would look like [Embed(./images/groupFolderSmall.jpg)] It shouldnt make any difference though. Andrew. --- In flexcoders@yahoogroups.com, heybluez [EMAIL PROTECTED] wrote: Hello This should work..shouldn't? --- MXML mx:List id

[flexcoders] Re: iconFunction with List

2005-06-15 Thread heybluez
@yahoogroups.com, heybluez [EMAIL PROTECTED] wrote: Man, I don't get itit won't work! No icon is displayed. I know it is thereany ideas? -Michael --- In flexcoders@yahoogroups.com, Andrew Spaulding [EMAIL PROTECTED] wrote: it should work. I've got the same code :p Except where

[flexcoders] Re: Getting client's IP address

2005-06-13 Thread heybluez
Hi, I do this with a simple .jsp script in the Flex app. You can include something like the following: getIPAddress.jsp: clientip valGet%=request.getRemoteAddr()%/valGet /clientip Then call that within Flex in an HTTPService and parse the return. HTTPService.result.clientip.valGet , etc

[flexcoders] iconFunction with List

2005-06-13 Thread heybluez
Hello This should work..shouldn't? --- MXML mx:List id=subGroupList labelField=sub_desc iconFunction=subGroupsIcon width=100% height=100% fontWeight=bold fontSize=11 / --- AS // Embed icons. [Embed(images/groupFolderSmall.jpg)] var

[flexcoders] Re: render Pdf document in a flex app

2005-06-10 Thread heybluez
Or you can just fake it with this: http://coenraets.com/viewarticle.jsp?articleId=95 --- In flexcoders@yahoogroups.com, Jose Lora [EMAIL PROTECTED] wrote: Not ideal, but you could also convert them to FlashPaper and load them directly into your app. _ From:

[flexcoders] Re: HttpRequest and HttpSession access in Remote Obj ect

2005-05-09 Thread heybluez
Anyone have any examples of this? --- In flexcoders@yahoogroups.com, James Ward [EMAIL PROTECTED] wrote: Pradeep, I think I saw this same problem when I did not have my RemoteObject class in the webapp's classloader. Is the class you are invoking in either the WEB-INF/lib or

[flexcoders] Re: setFocus() on a TextInput

2005-05-09 Thread heybluez
Robert L. Brueckmann Senior Web Developer Merlin Securities, LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of heybluez Sent: Monday, May 09, 2005 11:56 AM

[flexcoders] Re: Microsoft Sharepoint Portal and Flex

2005-05-06 Thread heybluez
interesting. since I am not a windows programmer, here is an ignorant question. does sharepoint have an API? Could I patch an app into it? if so, where do i need to go? --- In flexcoders@yahoogroups.com, Dave [EMAIL PROTECTED] wrote: I'm currently working on a project utilizing Flex and

[flexcoders] Charlottesville, VA

2005-04-25 Thread heybluez
Hey, Anyone in C-Ville that is pretty good with Flex? -Michael Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To unsubscribe from this group, send an email to: [EMAIL PROTECTED] * Your use of Yahoo! Groups is subject

[flexcoders] Re: MenuBar : How do I snag the Root Field of the Me nu?

2005-04-22 Thread heybluez
Hey, it works perfectly!! For everyone else... mx:MenuBar menuShow=showMe(event) / function showMe(event) { trace(event.menuItem.attributes.label); } Thanks, Michael --- In flexcoders@yahoogroups.com, Deepa Subramaniam [EMAIL PROTECTED] wrote: You can use the 'menuShow' event to find

[flexcoders] MenuBar : How do I snag the Root Field of the Menu?

2005-04-15 Thread heybluez
Hello. I have a menubar that has a number of items in it. These work nicely and I can successfully get the child nodes values (i.e. event.menuItem.attributes.label). In the root node I have one menuitem that is Logout. It has no children. How do I get to this? I tried mouseDown with the

[flexcoders] Associative Arrays / Hashes

2005-04-07 Thread heybluez
I am trying to see if I can get an array to be more like a hash... what i mean is say I have the following: node events month04/month day14/day shorthockey/short descriptionblah/description /events events month04/month day14/day shortreading/short descriptionblah/description

[flexcoders] Re: Associative Arrays / Hashes

2005-04-07 Thread heybluez
(); }; day_array.push({short: currentEvent_obj.short, description: currentEvent_obj.description}); }; return obj; }; Greetz Erik -Original Message- From: heybluez [mailto:[EMAIL PROTECTED] Sent: donderdag 7 april 2005 14:52