Re: [flexcoders] TextField.embedFont strange behavior

2007-01-23 Thread Daniel Freiman
I hate to ask a stupid question, but are you sure the entire font (or at least the Latin characters) is embedded? How are you embedding the font? - Dan On 1/23/07, polestar11 <[EMAIL PROTECTED]> wrote: Hi there I'm getting a strange error when dynamically adding a TF and turning on the emb

RE: [flexcoders] extra line coming from an external text file

2007-01-23 Thread Robert Chyko
http://www.adobe.com/support/documentation/en/flex/2/releasenotes_flex2_ fds.html 85034 - TextArea uses UNIX-style line endings, which means that text data containing Windows-style carriage-return line-feed (that is, \r\n) formatting for new lines contain extra line breaks. You can use String.re

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Abdul Qabiz
Depends, if you are streaming FLVs using Flash Media Server or Red5, you can do the seek thingy...It's quite cool... But if it's progressive, it all depends on how much video is downloaded, how much it is buffered, how big the video is.. Generally seek algorithms are kindda complex.. Also depends

[flexcoders] Re: Silent Download

2007-01-23 Thread mvbaffa
Hi Tom, How can I do that Thanks --- In flexcoders@yahoogroups.com, Tom Chiverton <[EMAIL PROTECTED]> wrote: > > On Monday 22 January 2007 19:16, mvbaffa wrote: > > In fact Server 2 is a web server located in a Kiosk. The Flex 2 App > > running at the Kiosk will have to show the movies on

[flexcoders] Re: Any ideas on customizing labels an gridlines in LinearAxis of LineChart ?

2007-01-23 Thread mgrayfmr
Oh, I should mention that I also figured out how to evenly space the labels and also evenly space the gridlines. I used the intervals from the AxisLabelCache. Unfortunately, the series data is no longer accurate to the tick marks when I do this. It looks good though !!! Thanks, Mike --- In fle

[flexcoders] titleBar event listeners

2007-01-23 Thread Bruce Denham
Trying to add a doubleClick listener to the TitleWindow's title bar without luck: public class AgendaItemViewerBase extends TitleWindow { public function AgendaItemViewerBase() { addEventListener(FlexEve

[flexcoders] Re: Line Chart and Line shadows

2007-01-23 Thread g_odds
Set the chart's series filters to an empty array. ... wrote: > > Hello, flexcoders! > > Is there any way to disable the shadow line effect in Line Chart component? > > -- > A vivid and creative mind characterizes you. >

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Benjamin Schwehn
Tom Chiverton wrote: > On Monday 22 January 2007 17:43, Benjamin Schwehn wrote: >> The two FLV typically have sizes between 20 and 200MB each. One is >> encoded with an Flash 7 Codec, the other with the newer Flash 8 On2 VP6 >> Codec. (seeking is slow with both codecs) > > Would it be possible to

[flexcoders] Any ideas on customizing labels an gridlines in LinearAxis of LineChart ?

2007-01-23 Thread mgrayfmr
Hey Guys- I have a line chart with a numeric Y axis that I want to control the number of gridlines. Usually, this isn't a problem but sometimes lines are not drawn in even intervals. My axis data ranges are dynamic. For example, I might have a range of percentages from 88% to 100%. With an int

Re: [flexcoders] Re: Rotate Datagrid Headers

2007-01-23 Thread Dana Gutride
Tim: Thanks for the response. I neglected to mention that I have been attempting to use a headerrenderer. I've created it both inline and in a separate component and still nothing. This code below illustrates what I've been attempting to do, am I missing something? Thanks, Dana http://www.a

Re: [flexcoders] Is Flash a single thread application?

2007-01-23 Thread Cameron Bahan
Flash does seems to be single-threaded. However, one should be careful as events are fired concurrently. I have run into a few issues regarding concurrency and shared data. So far the only solutions that I have heard is to write a custom "locker" class using a boolean lock. Has anyone e

[flexcoders] non visible fields in data grid are displaying

2007-01-23 Thread Shelley Browning
Hello, I've been building an application that utilizes data grids. For some reason the fields that are set visible="false" are displaying when the data is populated using a data collection and data is updated. This just started occurring when I did the updated with Flex Builder. Anyone else see

[flexcoders] HTTPServlet response formatting -- unwanted type detection/conversion

2007-01-23 Thread mjharris73
The HTTPServlet has a property called resultFormat to allow the programmer to control how the data is formatted in the response. The default, "object", causes the response XMLNode to be parsed into a flex object tree. GREAT. But it also converts the strings in the XML into known types. Thus the

[flexcoders] Re: need help on showing line series based on list box selection (Flex Charts)

2007-01-23 Thread arthurcoutinhoonline
Ely, Thanks for ur prompt response, Please help me with an example? u can try it on my exisiting files if required thanks Arthur

[flexcoders] Re: DateField - is there a way to limit the amount of input allowed?

2007-01-23 Thread Libby
Anybody? As far as I can tell, DateField doesn't take a maxChars property, which would be the logical solution. --- In flexcoders@yahoogroups.com, "Libby" <[EMAIL PROTECTED]> wrote: > > I used a keyboard listener to keep track of the length of the text > entered, but Flex ignores my demands to pre

[flexcoders] Flex - ColdFusion data types

2007-01-23 Thread Steve Milburn
Hello all. I am very new to Flex so forgive me for the newby questions. I have been reading about Flex Data Services, Web Services, etc and working through some examples from Adobe. My question is when is it necessary to return the data in XML and when is it ok to return other datatypes? If yo

[flexcoders] Line Chart and Line shadows

2007-01-23 Thread Mikhail Shevchuk
Hello, flexcoders! Is there any way to disable the shadow line effect in Line Chart component? -- A vivid and creative mind characterizes you.

RE: [flexcoders] Newbie: Dataprovider sintax for column series with xml dataprovider

2007-01-23 Thread Ely Greenfield
Hi Guille. See my previous post. You're going to write some actionscript to pre-process your dataprovider into individual XMLLists, one for each series. ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of g_vaccarezza Sent: Monday,

[flexcoders] Re: Is Flash a single thread application?

2007-01-23 Thread ben.clinkinbeard
I don't know of any specific documents, but just to clarify, in addition to Abdul's comment: Flash Player is single threaded except in the case of remote calls. Remote calls are always asynchronous by way of spinning off a separate thread. Not sure about any limits on the number of threads that can

RE: [flexcoders] Re: Please Help - Components, States, & Transitions

2007-01-23 Thread Stephen Gilson
It is covered in the doc in the chapter on the Application container: http://livedocs.macromedia.com/flex/201/html/app_container_064_09.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Monday, January 22,

[flexcoders] TextField.embedFont strange behavior

2007-01-23 Thread polestar11
Hi there I'm getting a strange error when dynamically adding a TF and turning on the embedFonts property. Without the property turned on, all the text is displayed, but with embedFonts set to true I only see the text up to 'ABCDEFGH'. This is very odd behavior, am I missing something blatantly obv

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Abdul Qabiz
Hi, 1. Is it possible to force the flash player to just load both videos into main memory (or PageFile) at start up? You can set the buffer-time to a large number, I suggest don't keep it too large. Should work fine on the cost of more memory consumption... Read more about bufferTime in Flex

Re: [flexcoders] Is Flash a single thread application?

2007-01-23 Thread Abdul Qabiz
Yes it is Single threaded -abdul On 1/23/07, saha.prasanta <[EMAIL PROTECTED]> wrote: Hi, I've read in some forum that "Flash is a single thread application". I tried to find some document supporting that statement, But I couldn't find any document by Adobe or Macromedia regarding that.

Re: [flexcoders] Re: creating swf online

2007-01-23 Thread Abdul Qabiz
4/...and return the builded swf. Here, We need to synchronize the output of a shell command to the script return. I don't know if MXMLC returns some code (which you can figure out success/failure situation).. But it does return standard message... MXMLC would generate SWF on your file system..

[flexcoders] extra line coming from an external text file

2007-01-23 Thread shemeshkale
hello, i have made this log watcher for my testing. it is very basic - loading an external file and putting its content to a TextArea. BUT.. for some reason it adds an extra redundant enpty line after every line - as if the text have two RETURNs (\n) on every line. what m i doing wrong? the conde

Re: [flexcoders] Drag-Resize MDI Example

2007-01-23 Thread Michael Schmalle
Also, I have a high octane tab navigator being released commercially in a month or two. http://www.flex2components.com/f2cblog/2007/01/18/flex-2-mdipanefx-not-a-pain/ Peace, Mike On 1/23/07, Dave Carabetta <[EMAIL PROTECTED]> wrote: Do you mean something like this? http://www.cynergysyste

Re: [flexcoders] Re: Localizing "Press Esc to exit full screen mode"?

2007-01-23 Thread Tom Chiverton
On Tuesday 23 January 2007 09:02, Oleg Filipchuk wrote: > same "Press Esc to exit full screen"... Is it so hard for such a big > company to make translation of one simple sentence to at least 50-70 > languages? No... > There is the same issue with settings panel, express install > etc. ..but

Re: [flexcoders] playing two video simultaneously, seeking too slow especially when playing from dvd

2007-01-23 Thread Tom Chiverton
On Monday 22 January 2007 17:43, Benjamin Schwehn wrote: > The two FLV typically have sizes between 20 and 200MB each. One is > encoded with an Flash 7 Codec, the other with the newer Flash 8 On2 VP6 > Codec. (seeking is slow with both codecs) Would it be possible to just join the two video files

Re: [flexcoders] Re: Silent Download

2007-01-23 Thread Tom Chiverton
On Monday 22 January 2007 19:16, mvbaffa wrote: > In fact Server 2 is a web server located in a Kiosk. The Flex 2 App > running at the Kiosk will have to show the movies on demand. So the > movies will be downloaded from server 1 and stored on server 2. Your best having the Flex app ask the local

[flexcoders] Is Flash a single thread application?

2007-01-23 Thread saha.prasanta
Hi, I've read in some forum that "Flash is a single thread application". I tried to find some document supporting that statement, But I couldn't find any document by Adobe or Macromedia regarding that. Could you plase help me by forwarding the of such article. I need that as a proof for one of

Re: [flexcoders] "What's in a name? That which we call Apollo by any other name would smell as sweet....

2007-01-23 Thread Tom Chiverton
On Monday 22 January 2007 23:37, Brendan Meutzner wrote: > disappointed to hear that it will be called something entirely different by > June? Can anyone at Adobe comment? I can see another 'Revolution' episode coming, with everyone expecting one name and getting another. It'll probably end up a

Re: [flexcoders] Re: Localizing "Press Esc to exit full screen mode"?

2007-01-23 Thread Oleg Filipchuk
Hi Matt, any of supported languages - you mean English, French, German and Chinese? The are a plenty of other languages. I've been testing it on machines, with Russian, Czech, Polish, Slovakian, Ukrainian etc and everywhere it is the same "Press Esc to exit full screen"... Is it so hard for such a

[flexcoders] Draggable Slider Component

2007-01-23 Thread Doug McCune
Here's a component similar to "Dual Slider" component on Flex Exchange that Brendan Meutzner made. It allows you to drag the region between two thumbs of a VSlider or HSlider. I made it a while ago and never got around to posting it anywhere. I submitted it to the exchange, but until it shows u

Re: [flexcoders] Help Extending TabNavigator/ButtonBar

2007-01-23 Thread Doug McCune
I know Jason said he's going to be releasing a new TabNavigator component, but I couldn't resist trying my hand at it. Here's my enhanced TabNavigator: http://dougmccune.com/blog/2007/01/23/the-quest-for-the-perfect-tabnavigator/ It uses existing code for closeable and draggable tabs, and add

[flexcoders] Re: Rotate Datagrid Headers

2007-01-23 Thread Tim Hoff
Hi Dana, A real easy way to do this would be to use a headerRenderer for the DataGrid columns. Inline:

[flexcoders] Flex Builder 2.0.1 vs Eclipse 3.2 & Flex 2 Plug-in

2007-01-23 Thread Robert
Hi folks, Since the 2.0.1 update for Flex 2, just what features that can only be found on Eclipse 3.2 are you using that make life easier for you? Or is the Flex Builder 2 updated good enough? I haven't migrated my machine just yet so any thoughts as to which side is better to take are appreciated

[flexcoders] States & Transitions Example

2007-01-23 Thread JesterXL
An example of using states and transitions in Flex 2 components. http://www.jessewarden.com/archives/2007/01/flex_2_states_t.html

<    1   2