Re: [flexcoders] - FLVPlayback FullScreen Mode

2009-07-16 Thread p...@vin Uttarwar
Hi, I think , *scaleMode=maintainAspectRatio* is affecting the video to get scaled. 2009/7/16 Eduardo Dias eduardod...@gmail.com Hi Everyone, I'm using the FLVPlayback in one of my projects and i'm having problems when it enter in fullscreen mode. The problem is the video player don't

Re: [flexcoders] - FLVPlayback FullScreen Mode

2009-07-16 Thread Eduardo Dias
Hi, This parameter just accept three possible values: maintainAspectRatio, noScale, exactFit. Neither of them fix the problem On Thu, Jul 16, 2009 at 4:09 PM, p...@vin Uttarwar pravinuttar...@gmail.comwrote: Hi, I think , *scaleMode=maintainAspectRatio* is affecting the video to get

Re: [flexcoders] Re: Eclipse WTP and FlexBuilder 3

2009-07-16 Thread Julien Nicoulaud
Hi. Eclipse 3.4+ (even Eclipse 3.5) can work with Flex Builder 3. You just have to patch some jars in the plugins directory of Eclipse: http://www.tekool.net/blog/2008/06/28/flex-builder-3-plugin-dont-work-with-eclipse-34/ I use Eclipse 3.4.1 + WST 3.0.2 + Flex builder 3 on Linux/Windows.

[flexcoders] Re: Flex logging

2009-07-16 Thread vladakg85
Hi, I setup something by the manual but practical problem occured :( 1) this is in my mm.cfg file: ErrorReportingEnable=1 TraceOutputFileEnable=1 MaxWarnings =0 TraceOutputFileName=c:/flashlog.txt Problem here is, Each log is still writing in c:/documents/user/appdata/macromedia/flashlog.txt,

[flexcoders] Re: Drag n Drop from one Flex application to another Flex application.

2009-07-16 Thread avibhujade
Hi Julien, Thanks for the reply. --- In flexcoders@yahoogroups.com, Julien Nicoulaud primo...@... wrote: I guess it is not possible, because between the two applications you should have access to the system drag and drop manager. By the way, you can do it in an air application. (by the

[flexcoders] Drag n Drop from desktop to Flex application

2009-07-16 Thread avibhujade
Hi Flex Coders, I have a file placed on the desktop. I have to drag n drop it on the flex application and recognize the file name path in the flex application. I also have to upload a file to the server by dragging it form the desktop and dropping it on the flex application. Is this

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

2009-07-16 Thread Tom Chiverton
On Friday 10 Jul 2009, Wally Kolcz wrote: research, it doesn't seem that is the way it works. Is there a way for a Flex/LCDS application to 'see' who all is on or logged in to be able to create a list of people. Similar to a traditional chat room setting? Just have your server code keep track

Re: [flexcoders] AMF, IE, and a non-trusted certificate

2009-07-16 Thread Tom Chiverton
On Friday 10 Jul 2009, jer_ela wrote: calls still fail, and when you come back in an new session, IE still complains about the certificate. This suggests the cert. is not being correctly installed, or something in Group Policy (etc) is nuking it. -- Helping to competently grow schemas as

[flexcoders] Timeline actionscript in embedded MovieClips

2009-07-16 Thread Max Pimm
An easy one i hope I am embedding a movie clip within a flex Image component. mx:Image source=@Embed(source='/swf/assets.swf', symbol='symbolWithTimeline')/ My symbolWithTimeline is a movie clip that has a stop(); in the actions of its first frame. However when loaded into my flex app

[flexcoders] Re: Yet Another ItemRenderer Question

2009-07-16 Thread valdhor
This problem is generally to do with the fact that item renderers are re-used. Have you checked out the item renderer stuff on Alex Harui's blog? (http://blogs.adobe.com/aharui/2007/03/thinking_about_item_renderers_1.html) If you post your item renderer code, perhaps we can point you in the

[flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread valdhor
I don't use Java or BlazeDS but when I get data from PHP via AMF, I usually send back an array of objects. On the Flex side I do this: datagridArrColl = new ArrayCollection(ArrayUtil.toArray(event.result)); myDatagrid.dataProvider = datagridArrColl; --- In flexcoders@yahoogroups.com,

[flexcoders] Updating a CartesianDataCanvas whenever axis' range changes

2009-07-16 Thread eugenemed
I'm working on a CartesianDataCanvas for a timeline graph component. The canvas draws various annotations, such as month boundaries and weekend regions. Because my application loads data dynamically, I need the canvas to redraw itself whenever Flex re-calculates the range of the DateTimeAxis

[flexcoders] ComboBox cell renderer is not working in a hierarchical datagrid [1 Attachment]

2009-07-16 Thread Patricia Han
Hi Friends, I am trying to create a hierarchical AdvancedDataGrid with a column which is a ComboBox renderer. I used this renderer in other table which is not a hierarchical one and it works perfect. But in the hierarchical data grid, for some reason the combobox is not working. Attached is a

[flexcoders] error message

2009-07-16 Thread Michael Sumner
Is anyone familiar with this error message. I think I have a problem in my services-config file. Channel definition, mx.messaging.channels.RTMPChannel, cannot be found. I am using the default WEB-INF folder, and have a mapping to it as I have it at c:\InetPub\wwwroot\ I would

[flexcoders] Flex, LCDS and terracotta

2009-07-16 Thread hannesstockner
Hi, We use Terracotta to share the data across multiple server application instances. We use flex frontend thereby use Adobe LCDS. When we start our application server in JBoss (which includes LCDS) as a Terracotta client,when the flex frontend connects to the data services (configured through

[flexcoders] Re: Charts - multiple data series (column/line) bar width issue

2009-07-16 Thread Shurup
Thank you, you made my day! :) --- In flexcoders@yahoogroups.com, EddieBerman eddieberman2...@... wrote: This is due to a Flex bug (https://bugs.adobe.com/jira/browse/FLEXDMV-1957 https://bugs.adobe.com/jira/browse/FLEXDMV-1957 ) which I'd love to see fixed. Until then, here's one

Re: [flexcoders] Gumbo Graphs

2009-07-16 Thread Peter Cowling
I have not used fx:Application before; is it not s:Application? You can use anything to the left of the colon you like, as long as you declare the XMLNS at the top. Sure but I would not ;) 1. I can compile in Flash Builder 4, using the old (2006) mxml namespace (at the application

[flexcoders] look for a actionscript function?

2009-07-16 Thread markflex2007
I have a number 0.3563567,I want to convert it to 0.36,which function can do this?I check Math class at http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Math.html but I can not get right one. Thanks for your help Mark

Re: [flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread Tim Finlayson
thx for the response...I've actaully tried this approach with no success... Also, it seems that Blaze passes back an ObjectProxy and from what I gathered online you should be able to use the ArrayUtil.toArray against this as well, which I also tried unsuccessfully... For now, I'm passing a List

Re: [flexcoders] Timeline actionscript in embedded MovieClips

2009-07-16 Thread Rohit Sharma
Hi Max, When a flash symbol gets embedded in flex, all the associated action code gets removed. You can define an external class for this symbol,which extends movieclip and then use that class in flex. Regards, Rohit On Thu, Jul 16, 2009 at 2:40 PM, Max Pimm

[flexcoders] HELP problems embedding a font

2009-07-16 Thread grimmwerks
I've got a font - Interstate-RegularCondensed -- which I've tried embedding in a Flex app. I've pointed to it, I've embedded in a swf, etc. It seems to be ok - but when I look at from a computer that doesn't have this font, it's no go. The thing is It's part of the Interstate family but

[flexcoders] Re: error message

2009-07-16 Thread valdhor
What code generates the error? Can you post your services-config file? --- In flexcoders@yahoogroups.com, Michael Sumner msum...@... wrote: Is anyone familiar with this error message. I think I have a problem in my services-config file. Channel definition,

[flexcoders] Re: look for a actionscript function?

2009-07-16 Thread postwick
Assuming you're doing this in Flex, use a formatter: http://livedocs.adobe.com/flex/3/html/help.html?content=formatters_4.html --- In flexcoders@yahoogroups.com, markflex2007 markflex2...@... wrote: I have a number 0.3563567,I want to convert it to 0.36,which function can do this?I check

[flexcoders] Re: Having problems iterating ResultSet returned to Flex via Blaze

2009-07-16 Thread valdhor
So, if you put a breakpoint in your resultEvent function, what does the event.result data look like? What does Charles (http://www.charlesproxy.com) show as the data? Perhaps you could post some screen shots of both? --- In flexcoders@yahoogroups.com, Tim Finlayson tim...@... wrote: thx

RE: [flexcoders] Re: error message

2009-07-16 Thread Michael Sumner
The error showed up after recompiling the project. There may be an issue with that it was an old flex 2 project originally. The current project I am working on is communicating, I started from scratch with it, but I had tried to get a jumpstart by using the CF/Flex wizard and I had the same

[flexcoders] Hi, how to highlight some lines in a document

2009-07-16 Thread Satish Chowdary
Hi All, i want to know that how to highlight somes lines in a document when a event(button click) is fired if u any one have idea about this... please help me out... am working on some citation map concept Thannks inAdvacne Satish సతీష్ Yahoo! recommends that you upgrade to the

Re: [flexcoders] Hi, how to highlight some lines in a document

2009-07-16 Thread Julien Nicoulaud
WHat do you mean by document ? In which component do you want to highlight ? 2009/7/16 Satish Chowdary chinnu_...@yahoo.co.in Hi All, i want to know that how to highlight somes lines in a document when a event(button click) is fired if u any one have idea about this... please help me

[flexcoders] Printing in IE Crashes IE But Firefox Ok

2009-07-16 Thread wwwpl
I am adding a very simple component. It crashes IE, but it prints fine in Firefox. Here is the component: ?xml version=1.0 encoding=utf-8? mx:VBox xmlns:mx=http://www.adobe.com/2006/mxml; mx:Label text=Patrick is testing here/ /mx:VBox HERE IS THE PRINT CODE: printJob.start();

[flexcoders] Re: look for a actionscript function?

2009-07-16 Thread jer_ela
I assume that what you want to do is round to to decimal places. If all you want to do is display the rounded number, you can use the NumberFormatter class. This can give you a string representation of the number rounded as you want it, which is fine for display. If you need to actually round

[flexcoders] Re: Hi, how to highlight some lines in a document

2009-07-16 Thread valdhor
Check out TextRange (http://livedocs.adobe.com/flex/3/langref/mx/controls/textClasses/TextRange.html) --- In flexcoders@yahoogroups.com, Satish Chowdary chinnu_...@... wrote: Hi All, i want to know that how to highlight somes lines in a document when a event(button click) is fired if

[flexcoders] Re: error message

2009-07-16 Thread valdhor
You're probably missing fds.swc in your build path. That swc ships in LCDS. --- In flexcoders@yahoogroups.com, Michael Sumner msum...@... wrote: The error showed up after recompiling the project. There may be an issue with that it was an old flex 2 project originally. The current

[flexcoders] Re: Yet Another ItemRenderer Question

2009-07-16 Thread grenma
Yes, Alex's post is great. The code (omitting some Mate event listeners and click handlers for conciseness) for the ItemRenderer follws; again, nothing spectacular: ?xml version = 1.0 encoding = utf-8? mx:Canvas xmlns:mx = http://www.adobe.com/2006/mxml; xmlns:mate =

[flexcoders] AIR architectural pointers for a Flex developer

2009-07-16 Thread simonjpalmer
I have built quite a few apps with Flex 2 over the last few years and have been using using a Java (JBoss) back end. I have a new requirement for an app which needs to be able to run on- and off-line and deliver an identical user experience. My limited understanding of AIR is that this is

Re: [flexcoders]using sdk 4 on flex 3

2009-07-16 Thread Gustavo Duenas
I did as you said and nothing happens, and odd error that he cannot load textlayout.swc or something, I guess I will use the fb3 with the sdk3 gustavo On Jul 15, 2009, at 4:45 PM, Gustavo Duenas wrote: Thanks man, but I did something wrong ? Gustavo On Jul 15, 2009, at 8:48 AM, Tom

[flexcoders] Re: AIR architectural pointers for a Flex developer

2009-07-16 Thread grenma
Beside Adobe, you could probably start here: http://www.smashingapps.com/2009/03/06/25-excellent-and-useful-adobe-air-tutorials-resources.html RG --- In flexcoders@yahoogroups.com, simonjpalmer simonjpal...@... wrote: I have built quite a few apps with Flex 2 over the last few years and have

[flexcoders] Can I call a javascript function directly??

2009-07-16 Thread luvfotography
If I can talk to a swf file via actionscript, can I assume that the same funtion call is public and I can call it directly if I load the swf file via swfloader? example: I load a swf file in my html page in a div= myswf , the swf file uses ExternalInterface to interact with my javascript. I

[flexcoders] Re: AIR architectural pointers for a Flex developer

2009-07-16 Thread simonjpalmer
Thanks for the link. I have been through most of them - quite a few are duplicates of links on other aggregated lists - and spent a considerable amount of time on the Adobe web site prior to posting here. The trouble is that none of these examples actually cover the single thing that I don't

[flexcoders] bind one arraycollection to another

2009-07-16 Thread postwick
I have an arraycollection that has two columns. the second column actually stores an object that has properties on it. I want to put those values into a second datagrid. Can I do this using binding? I was able to use a loop to fill the second arraycollection, to which a datagrid is bound,

RE: [flexcoders] bind one arraycollection to another

2009-07-16 Thread Tracy Spratt
You can't use an Object as a dataProvider. So you either need to loop using for-each, or use a different data type for the second column. An ArrayCollection might be best, then you could bind the second DG: dataProvider={dg1.selectedItem.acCol2} Tracy Spratt, Lariat Services,

[flexcoders] multiple axis question.

2009-07-16 Thread shaded
I'm have a chart with 3 sets of line graph data, id like to have 2 of those set to have the same y axis, and the third to have its own. The docs don't really do a good job of explaining this. Can anyone help sample code mx:Panel title=Multiple Data Series width=100% height=100%

[flexcoders] Re: bind one arraycollection to another

2009-07-16 Thread postwick
The object is being passed to the first arraycollection through LCDS, and in the CFC I am creating a struct. I have no problem with the idea of converting it to another data type such as an XML string. The problem is I can't bind it to one ROW and column, I need to bind it to the second

[flexcoders] Re: multiple axis question.

2009-07-16 Thread Tim Hoff
Use a secondVerticalAxis and secondVerticalAxisRenderer (placement=right). -TH --- In flexcoders@yahoogroups.com, shaded shad...@... wrote: I'm have a chart with 3 sets of line graph data, id like to have 2 of those set to have the same y axis, and the third to have its own. The docs don't

RE: [flexcoders] Re: look for a actionscript function?

2009-07-16 Thread Alex Harui
toFixed() and/or toPrecision() Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of jer_ela Sent: Thursday, July 16, 2009 9:41 AM To: flexcoders@yahoogroups.com