[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(): http://livedocs.macromedia.com/flex/15/flex_docs_en/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flex_Documentation&file

[flexcoders] Re: Another Proxy? PHP?

2005-09-01 Thread heybluez
____ > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of heybluez > Sent: Thursday, August 11, 2005 5:04 PM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Another Proxy? PHP? > > Hey, > > I have a client th

[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 wa

[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 "pr

[flexcoders] Re: HTTPService useProxy question...

2005-07-09 Thread heybluez
It has gzipped XML files on > it's site, and dev.jessewarden.com wants 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.jessewa

[flexcoders] Re: HTTPService useProxy question...

2005-07-08 Thread heybluez
> > -----Original Message- > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > > Behalf Of heybluez > > Sent: Friday, July 08, 2005 3:15 PM > > To: flexcoders@yahoogroups.com > > Subject: [flexcoders] HTTPService useProxy question... > &

[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] 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, Mic

[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: http://groups.yahoo.com/gro

[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 PROT

[flexcoders] Re: iconFunction with List

2005-06-15 Thread heybluez
e embedding the image my only difference is i 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, "heyblue

[flexcoders] iconFunction with List

2005-06-13 Thread heybluez
Hello This should work..shouldn't? --- MXML --- AS // Embed icons. [Embed("images/groupFolderSmall.jpg")] var subGroupSymbol:String; function subGroupsIcon(item) { return subGroupSymbol; } --- It outputs the list but no icons! Any ideas? Thanks, Michael Yahoo! Groups L

[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: <%=request.getRemoteAddr()%> Then call that within Flex in an HTTPService and parse the return. HTTPService.result.clientip.valGet , etc Then you can store that in a

[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: flexco

[flexcoders] Re: Calendar

2005-06-10 Thread heybluez
Here is something I have been working on. I would like others to contribute to it. I think we could build a pretty neat custom component. I was thinking of modelling it a lot like Apple iCal. http://willowtreeinteractive.blogspot.com/2005/05/flex-incalendar-component.html Let me know what you

[flexcoders] Re: setFocus() on a TextInput

2005-05-09 Thread heybluez
uarantees a blinking caret in my focuses field without > fail every time. > > Rob > > 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- > Fro

[flexcoders] setFocus() on a TextInput

2005-05-09 Thread heybluez
So..i want a textinput to show focus..on other words it should selected for editing, etc. I try: feedURLText.setFocus(); with feedURLText as the ID of the TextInput component. This does not seem to work. Any ideas? Thanks, Michael Yahoo! Groups Links <*> To visit your group on the web,

[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 WEB-INF/

[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

[flexcoders] Re: Tree Drag and Drop help

2005-05-06 Thread heybluez
How do you snag this attached file?! --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > Attached is a complete example. I just tested it and it seems to work > fine. > Tracy > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[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 subj

[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... 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 out when someone has moused down o

[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 e

[flexcoders] Re: Associative Arrays / "Hashes"

2005-04-07 Thread heybluez
{ > day_array = month_obj[day_str] = new Array(); > }; > > day_array.push({short: currentEvent_obj.short, > description: > currentEvent_obj.description}); > }; >

[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: 04 14 hockey blah 04 14 reading blah 04 14 baseball blah I want to loop through that and produce something like this... myObject[][]=Array(of Objects for