Re: [flexcoders] Flying text or passing text??

2009-06-17 Thread Vivian Richard
Where can I view those examples? I have used move effect for canvas and panel. The way I used it was - I made the x or y coordinate of the moving element to some thing so that it is not visible at all and once some event is triggered I just move it in using move effect. Are you

RE: [flexcoders] Flying text or passing text??

2009-06-17 Thread Ashish Verma
The very simple trick to do that. Place the label at the bottom of the Canvas and take the label text in string. Here is the source code: ?xml version=1.0 encoding=utf-8? mx:WindowedApplication xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute

[flexcoders] Re: Flex and Reporting

2009-06-17 Thread Martin Moschitz
Hi Angelo, thanks for your insights. Finally I ended up doing a similar thing. Since I get my data from PHP Services, I now just send back a print request, which generates the PDF and sends back a link to it, and the Flex Client can navigate to it. I find that this is probably the best

[flexcoders] LCDS Useage Issues

2009-06-17 Thread Kevin Bowers
Good Morning, I wonder if anybody could possibly help me out with some issues that we are having with an installation of LCDS. We are evaluating the software for a large project that we are planning, but cannot seem to get LCDS to run under JBoss. We have successfully connected to our

[flexcoders] Re: Piechart in ItemRenderer

2009-06-17 Thread Amy
--- In flexcoders@yahoogroups.com, Jimmy Neutron jimmy_neutr0n2...@... wrote: I'm trying to pass data to a piechart inside an itemrenderer without success.The structure is a List item and the Itemrenderer is based on a Panel.Data is retrieved from php to xml (Arraycollection).Eventually i

[flexcoders] Re: Binding between components

2009-06-17 Thread valdhor
I looked at your forum thread but can't figure out what you are trying to do. Can you post another explanation here. --- In flexcoders@yahoogroups.com, mikeashields mikeashie...@... wrote: The full story is here: http://forums.adobe.com/message/2043864#2043864

[flexcoders] Re: Binding two elements in a single datagrid column

2009-06-17 Thread valdhor
I thought that was the idea. In the example, I wanted a new NumericStepper for each data item (Actually two new NumericSteppers). If createChildren only runs once, how would you get the required output? In other words, can you post your version of the example using createChildren ? --- In

[flexcoders] Re: Flying text or passing text??

2009-06-17 Thread valdhor
AFAIK it is called a ticker. There are many examples available. Try a Google search. Here are a couple to start you off... http://dreamwagon.com/blog/?p=7 http://dave.needlz.nl/index.php/2009/ticker/ --- In flexcoders@yahoogroups.com, hworke kanps...@... wrote: Hi, I am trying to

[flexcoders] URLStream, RMTP, ByteArray?

2009-06-17 Thread Berkay Unal
Hi Coders, I am able to record,capture a video or an audio to desktop with AIR using URLStream, and byteArray. It works np. In the project client ask me to record the streaming video to desktop while the video is streaming. Been trying to use URLStream over RMTP but as can be thought it does not

[flexcoders] Trying Smooth slide transitions with List control item renders or a Repeater...

2009-06-17 Thread Todd
Hello All, I have a HorizontalList that has an ItemRenderer that displays an Image. The HorizontalList only displays one of my images at a time. I'm trying to make a transition where the next image slides into the screen. Now, since itemRenderers are recycled, I probably can't use a List

[flexcoders] Re: Trying Smooth slide transitions with List control item renders or a Repeater...

2009-06-17 Thread Todd
You know, I think I'll just use a ViewStack with a child Repeater and call it good. (Still post some links if you've got them though.) --- In flexcoders@yahoogroups.com, Todd tpreka...@... wrote: Hello All, I have a HorizontalList that has an ItemRenderer that displays an Image. The

Re: [flexcoders] Sample of carousel menu navigation with button.

2009-06-17 Thread Harish Sivaramakrishnan
Hi Krunal: This is a simple engineering problem. Solve it just the way you would in any of your other languages. Put your buttons in a canvas and increment / decrement the horizontalScrollPosition on click of next_btn and prev_btn (that could be one of the ways, there are gazillion others!)

RE: [flexcoders] Trying Smooth slide transitions with List control item renders or a Repeater...

2009-06-17 Thread Jake Churchill
Here's an example of how to do it: http://www.axelscript.com/2008/09/25/building-a-simple-slider-component/ Axel and I used this on http://www.clickstatssports.com/index.cfm Click the close button in the top right of the flex app to see it slide. Then click on something else.

Re: [flexcoders] URLStream, RMTP, ByteArray?

2009-06-17 Thread Harish Sivaramakrishnan
The whole purpose of keeping it streaming is that you SHOULD NOT be able to rip it using your client. I cannot think of a legal, straightforward way. Cheers Harish On Wed, Jun 17, 2009 at 7:56 PM, Berkay Unal berkayu...@gmail.com wrote: Hi Coders, I am able to record,capture a video or an

[flexcoders] How to pull youtube into a custom Flash/Flex Video Player

2009-06-17 Thread Wally Kolcz
I found the docs from Google on how to query the user's information, but what element do you use as the source for the video player?

Re: [flexcoders] How to pull youtube into a custom Flash/Flex Video Player [1 Attachment]

2009-06-17 Thread Harish Sivaramakrishnan
Google does not give you direct access to the video source through their APIs. You will need to scrap (steal) that Information from the youtube page. I had written a class which does it for some testing purposes. I have attached the source in this mail. But AFAIK, its illegal to scrap information

Re: [flexcoders] Re: Flying text or passing text??

2009-06-17 Thread Harish Sivaramakrishnan
Joan Lafferty has a nice implementation of a marquee in her blog - http://butterfliesandbugs.wordpress.com/2007/09/06/marquee-component/ On Wed, Jun 17, 2009 at 6:56 PM, valdhor valdhorli...@embarqmail.comwrote: AFAIK it is called a ticker. There are many examples available. Try a Google

Re: [flexcoders] Re: Binding two elements in a single datagrid column

2009-06-17 Thread Harish Sivaramakrishnan
Listen to the change event / enter event on the NumericSteppers and dispatch an event to update the DataProvider with the new values. Once you override the itemRenderer with a custom Renderer, you need to handle the commit of values back to the DataProvider. You can do something similar to this.

[flexcoders] why does my MXML act differently than my AS?

2009-06-17 Thread Pan Troglodytes
I have a test program that, as far as I can tell, does the same thing using an MXML component and the equivalent actionscript. When I click on the button to execute the AS version, everything is fine. But when I click on the button to execute the MXML version, I get a layout flicker. It's bad

Re: [flexcoders] Binding between components

2009-06-17 Thread mikeashields
I have the following simplified mxml application but want to know how to move the label to a new component and the Button to a different component (both components then being in the application). More specifically I cannot determine how to address the variable names and/or event listeners

Re: [flexcoders] dmv with flex4 and flexbuilder3 causes direction style problem

2009-06-17 Thread Pete Siviter
Hi there, I think you'd need to take the datavisualization.swc from flashbuilder 4.0.0 sdk (presumably installed under your drive_c in wine) and use it in your sdk folder under flexbulder linux. I spent quite a bit of time looking at the same problem and re- compiled datavisualization

[flexcoders] Problems using ItemRenderers in DataGrid

2009-06-17 Thread vin.flex
I have created a check box item renderer for my datgrid. I will update the arraycollection by checking or unchecking the checkbox. I will submit the data to backend and I will assign the dataprovider with updated dataprovider. My data is getting updated but the some checkboxes are appearing as

[flexcoders] MXML draw dashed line between two text box

2009-06-17 Thread ram_yohi
Hi, I need some information. I have to draw on dashed separator line in FLEX. What code can help to put it in to MXML file. In the Picture you can see the dashed line in-between Radio Button and Search Button. I have to design like. I do not know what Code is for that to draw dashed

Re: [flexcoders] dmv with flex4 and flexbuilder3 causes direction style problem

2009-06-17 Thread Pete Siviter
Hi there, I think you'd need to take the datavisualization.swc from flashbuilder 4.0.0 sdk (presumably installed under your drive_c in wine) and use it in your sdk folder under flexbulder linux. I spent quite a bit of time looking at the same problem and re- compiled datavisualization

[flexcoders] Shift-drag on HSlider in FB4

2009-06-17 Thread Daniel McQuillen
Does anybody have any tips for capturing a slider drag with SHIFT keyboard event? MouseEvents have the handy shiftkey property for capturing events with SHIFT key depressed. However, s:HSlider/ doesn't seem to launch any helpful mouse events (e.g. mouseUp) and the events it does launch (e.g.

[flexcoders] Re: Looking for AS3 developer.

2009-06-17 Thread tgi_3
Can you specify a little more on what the job? --- In flexcoders@yahoogroups.com, tom93438 tcs2...@... wrote: HeyZap is looking for an AS3 developer to build a AS/flash wrapper that rotates through 3rd party external SWF files, solving issues with sizing, sound, keyboard/mouse controls.

[flexcoders] Re: Binding two elements in a single datagrid column

2009-06-17 Thread Tim Hoff
Ok, here's how I would do it; with efficiency and best-practice in mind: http://www.timothyhoff.com/projects/AgeItemRendererSample/AgeItemRendere\ rSample.html http://www.timothyhoff.com/projects/AgeItemRendererSample/AgeItemRender\ erSample.html ( right click to view source ) Two main

[flexcoders] Re: Problems using ItemRenderers in DataGrid

2009-06-17 Thread Adrian Resa Jones
A couple of possibilities: Are you using binding for the checked value? The other possibility is that after clearing values in your data array you may need to refresh() your data array in order to have the changes reflected in your datagrid. Hope that helps. --- In flexcoders@yahoogroups.com,

[flexcoders] Adobe Bug System - Please explain the internal Found in Version numbers

2009-06-17 Thread EddieBerman
When adding new bugs to the Adobe Bug System (chart bugs in my case), I'm never entirely clear as to what version to use from those offered in the drop-down. I'd like to use, for example, SDK 3.3.0, but that's not one of the choices. I have no idea what I12, I12, DMV 3.0.2, DMV 3.4.0, etc, are

[flexcoders] Re: using arrow keys to move around editable datagrid

2009-06-17 Thread philcruz
Yeah, something was off so I backed things out so tabbing worked then moved forward again. I couldn't get things to work by faking tab events though. The resolution for me was dispatching the ITEM_EDIT_END event first and then move the cell (with callLater()). Here's the key down handler on

Re: [flexcoders] URLStream, RMTP, ByteArray?

2009-06-17 Thread Berkay Unal
Scenario is like this:It is an IPTV app where users can watch videos online when they purchase and also while they are watching the video should be downloaded to client machine for later use. Best, Berkay UNAL berkayu...@gmail.com On Wed, Jun 17, 2009 at 18:11, Harish Sivaramakrishnan

[flexcoders] using ant as the builder in eclipse

2009-06-17 Thread arieljake
If i have one application and one library, in my ant file that i have specified as the builder in the project settings for the application, am I supposed to set depends=library-build or not? I have the library specified as a dependency in the project properties, and it seems as if the

[flexcoders] Re: Binding between components

2009-06-17 Thread valdhor
First off, events will always bubble UP. To pass an event into a component just inject it. Here is a simple application that should get you started: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical xmlns:Components=components.*

Re: [flexcoders] Binding between components

2009-06-17 Thread mikeashields
Steve, Thanks, your code illuminated some valuable concepts (tangent question, what does super() do? I think it introduces all the properties of the class being extended but if you could confirm it would be great) but what I am attempting to determine is how to bind/send events from component

[flexcoders] Changing background image in datagrid - does not clear out

2009-06-17 Thread luvfotography
Hi, I've got a datagrid in AIR, alpha=.5 backgroundSize=100% and I'm dynamically setting it with: var picurl:String = 'http://mysite.com/mypic.jpg'; setStyle(backgroundImage, picurl); and this works, however after 2 or 3 background changes, the pictures don't clear and they keep layering each

Re: [flexcoders] Adobe Bug System - Please explain the internal Found in Version numbers

2009-06-17 Thread Matt Chotin
Yeah, this is a problem, we're sorry :-) DMV generally stands for the release, you should use 3.0.2 in this case I think. We'll be working on cleaning this up and maybe we can do a better job with versions moving forward. I12 is the iterations for current development, so stuff going into Flex

[flexcoders] IE8 Vista Player 10 getting glitchy when reading progress of downloading mp3?

2009-06-17 Thread joshuajnoble
Has anyone heard anything like this before? I don't have Vista, so I can't check, but it's fine on all OSX browsers. We have the same player version. I remove this line: loadPos = mp3.bytesLoaded / mp3.bytesTotal; // after divide by 0 check and all goes well on IE8. With it in, apparently

[flexcoders] Re: IE8 Vista Player 10 getting glitchy when reading progress of downloading mp3?

2009-06-17 Thread joshuajnoble
--- In flexcoders@yahoogroups.com, joshuajnoble joshuajno...@... wrote: Has anyone heard anything like this before? I don't have Vista, so I can't check, but it's fine on all OSX browsers. We have the same player version. I remove this line: loadPos = mp3.bytesLoaded / mp3.bytesTotal;

[flexcoders] multiple filters on XMLListCollection how?

2009-06-17 Thread munene_uk
does anyone have any examples of how i can create multiple filters for use in two comboboxes for one datagrid? seems my implementation only filters on one but not both e.g if i select items that are size 12 i cant further select size 12 items that are black... AS3 code below private function

Re[flexcoders] moteObject endpoint= vs. Flex settings

2009-06-17 Thread mikeashields
Primarily because I cannot seem to understand the CF Root Folder / Webroot / Root URL for a non-localhost setup (ie //DevServer/ColdFusion8/wwwroot along with http://testingIP:8500/projname???) I have taken to using the endpoint property in RemoteObject as follows:

[flexcoders] Re: Binding two elements in a single datagrid column

2009-06-17 Thread Tim Hoff
No response huh? Ok, you're welcome valdhor (Steve). One thing to point out is that all flex controls, containers and components extend UIComponent. Therefore, they all use the createChildren(), commitProperties(), measure(), layoutChrome() and updateDisplayList() methods. This applies to

RE: Re[flexcoders] moteObject endpoint= vs. Flex settings

2009-06-17 Thread Jake Churchill
To my knowledge, there is now benefit or detriment to doing it either way. I do the same thing and I know other people who do also. I actually find it easier to deploy this way because I always have some kind of config xml file that loads at startup which contains things like the domain and

[flexcoders] test (just ignore folks, thanks.)

2009-06-17 Thread xelf...@rocketmail.com
hello world.

Re: [flexcoders] MXML draw dashed line between two text box

2009-06-17 Thread Harish Sivaramakrishnan
You can style the HRule Component to draw a dashed / dotted line or even change the skin of the HRule component by overriding the programmatic skin that is drawn by default. Cheers Harish On Wed, Jun 17, 2009 at 5:56 AM, ram_yohi ram_y...@yahoo.co.in wrote: Hi, I need some information. I

Re: [flexcoders] Re: Flying text or passing text??

2009-06-17 Thread Allan Pichler
I have a more outrageous hippie version of a marquee on my experimental site. And as a sidenote the term marquee is probably the right one, but the fact that my coding career started back in 1982 and I used to be part of the C64/Amiga demo scene I will insist that it's a 'scroller'... In