[flexcoders] Re: Capturing RollOver events in a loaded swf that has it own actionscript.

2007-10-18 Thread essuark
Actually I did figure it out. I dynamically created a box component the size of the swf and inserted at the beginning of the child list. That way the box component get the mouseout, mousedown, etc events --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: Can you post

Re: [flexcoders] Use a CSS file in Flex

2007-10-18 Thread Peter Connolly
Here's how you reference a CSS file: mx:Style source=http://www.somesite.com/mystyles.css; After that, there's a chapter on CSS in the Flex Developer's Guide. On 10/18/07, Venkat Perpati [EMAIL PROTECTED] wrote: Hi, Can anyone please tell me how to add a CSS file and use the styles

Re: [flexcoders] Weird WebService Problem

2007-10-18 Thread Peter Connolly
The full incantation for handling a webservice in ActionScript is shown in the Developer's Guide example: ?xml version=1.0? !-- fds\rpc\WebServiceInAS.mxml -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ import mx.rpc.soap.WebService; import

[flexcoders] Hyperlink in flex.

2007-10-18 Thread Venkat Perpati
Hi, Can anyone please tell me about how to add a hyperlink combined with a small image in flex refering to mxml file in the same folder or refer to a page in the same application. regards, Venkat Perpati - Save all your chat

[flexcoders] Announce: Flex UndoRedo Framework for Cairngorm

2007-10-18 Thread kaleb_pederson
Hello all, We (Soph-Ware Associates) have just released an Open Source Undo/Redo Framework for Flex. It integrates tightly with Cairngorm and allows for an unlimited number of Undo/Redo events (which in turn fire undoable Cairngorm Commands). The Flex UndoRedo Framework is lightweight and

[flexcoders] Moxie caching flash player mac os x?

2007-10-18 Thread aaron smith
I'm having some strange behavior with the flash player and browsers. I wrote this tool plugout. http://www.adakasoft.com/?page_id=3 to switch flash player versions.. The tool works on every mac I run it on. But for some reason the one machine I have moxie on, the browsers don't pickup a new

Re: [flexcoders] Re: How to hide browser address bar and tool bar with navigateToURL()?

2007-10-18 Thread Scott - FastLane
I have not used AIR, so not sure I will be much help there. But... I thought it included an HTML component that would allow you to open your destination URL within the flex app. If so, then it seems you would be in complete control of the browser. But, not at all sure about this... Scott

RE: [flexcoders] List Component: Working with Collapsed and Expanded ItemRenderer - Solution

2007-10-18 Thread Jurgen Beck
I'm documenting this here for others who may be struggling with this: It has been suggested to use a VBox and simply just add children to it based on items in the dataprovider. That's a great approach and would have been my workaround. However, Alex was giving enough pointers to implement

[flexcoders] Re: how do I know which object I need to expand?

2007-10-18 Thread TJ Downes
Sorry, that may have been a bit vague. I want to expand every node in the tree. So, as i am iterating recursively, how do i dynamically determine the node in the tree matching the node i am currently iterating over?

Re: [flexcoders] Re: Mock objects in AS3

2007-10-18 Thread Bjorn Schultheiss
Hey Dave and Adam, That way a quick reply i sent yesterday without much thought. Currently to convert a generic object to a typed instance i've been using a utility provided by Darron Schall. http://www.darronschall.com/weblog/archives/000247.cfm basically the method looks like this,

Re: [flexcoders] Use a CSS file in Flex

2007-10-18 Thread Peter Connolly
Here are two inline examples from Chapter 18 of the Flex Developer's Guide: ?xml version=1.0? !-- styles/ClassSelector.mxml -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Style .myFontStyle { fontSize: 15; color: #9933FF; } /mx:Style

[flexcoders] Re: httpservice url decode problem

2007-10-18 Thread Doug Lowder
Have a look at encodeURIComponent() http://livedocs.adobe.com/flex/2/langref/package.html#encodeURIComponen\ t() in the docs. I believe it would be something like the following: srv.url = http://www.mydomain.com/eTraffic.cgi?target=; +

[flexcoders] open source flex xml mp3 player

2007-10-18 Thread jensen.axel
Finally it's here...OPEN SOURCE FLEX XML MP3 PLAYER Flex xml mp3 player Basically you can specify an xml playlist from the url, and have it play whatever is in the playlistÂ… The links for the examples are on the right side. You can also specify the playlist in the url if you'd like:

[flexcoders] Re: Mock objects in AS3

2007-10-18 Thread aduston1976
Bjorn, I think this is a hack but it looks like a pretty awesome hack and I'm definitely going to use it. Thank you very much for posting it! I think this is part of the best path to creating a mock test framework for AS3. Adam --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL

[flexcoders] Re: Unable to Expand a Tree programatically..

2007-10-18 Thread sk_acura
Thanks a lot Tracy, That worked great.. Regards Kumar --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: No, since you have just assigned the dataProvider, you need to give the Tree a chance to render before calling visually oriented methods. Use callLater to

[flexcoders] Weird WebService Problem

2007-10-18 Thread Ben
In my Flex Application MXML file I call a function called init() on the creationComplete event. creationComplete=init(); In the init() function a WebService's wsdl property is set to the URL for my CFC. After the property is set I call a function on my service (service.getBlah();) but the

[flexcoders] Re: Drag Multiple items with the dragManager

2007-10-18 Thread joshuagatcke
ok, so as I understand it from your advise, I would dynamically re-create the items I want to look like the user is dragging in a canvas, and arrange the items the same way they are on the screen, pass them to the doDrag method as the dragProxy, then hide the dragInitiator (and other

[flexcoders] Use a CSS file in Flex

2007-10-18 Thread Venkat Perpati
Hi, Can anyone please tell me how to add a CSS file and use the styles defined in CSS file in the flex application. Thanks in Advance regards, Venkat Perpati. - Meet people who discuss and share your passions. Join them now.

Re: [flexcoders] scale 9, quick question

2007-10-18 Thread dorkie dork from dorktown
I don't think its possible. There are 9 different pieces. Only the corners don't scale. On 10/17/07, aaron smith [EMAIL PROTECTED] wrote: I've got an image I used scale9 on.. i used pretty much this example:

<    1   2