Re: [flexcoders] Re: Compile css file to swf with ClassReference in the css file

2008-05-30 Thread Douglas Knudsen
agreed, a PITA of a bug. DK On Sat, May 31, 2008 at 12:51 AM, ben.clinkinbeard < [EMAIL PROTECTED]> wrote: > Maybe we can get this reopened with some vote support (but I doubt > it): http://bugs.adobe.com/jira/browse/FB-11925 > > Ben > > > --- In flexcoders@yahoogroups.com , > "ealexdesign" <[

[flexcoders] Re: adding a label to a Panel header?

2008-05-30 Thread ben.clinkinbeard
> Is the size of the label actually being set? My guess would be no. Raw children are not automatically sized like normal children are so if its not being explicitly sized its probably got a width and height of 0. HTH, Ben --- In flexcoders@yahoogroups.com, "Daniel Freiman" <[EMAIL PROTECTED]>

[flexcoders] Re: Compile css file to swf with ClassReference in the css file

2008-05-30 Thread ben.clinkinbeard
Maybe we can get this reopened with some vote support (but I doubt it): http://bugs.adobe.com/jira/browse/FB-11925 Ben --- In flexcoders@yahoogroups.com, "ealexdesign" <[EMAIL PROTECTED]> wrote: > > Hello! I want compile my css theme in swf file. > So I try to use mxmlc command but it failed si

RE: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

2008-05-30 Thread Rick Winscot
And the light just came on. never mind. (blushes) Rick Winscot From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Smith Sent: Friday, May 30, 2008 9:57 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

RE: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-30 Thread Alex Harui
Looks like you can buy FlashPaper for $79 http://www.adobe.com/products/flashpaper/ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Andrews Sent: Friday, May 30, 2008 2:27 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcode

RE: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread Alex Harui
Nothing really. All components are created with $visible=false until creationComplete. This actually implies that the components haven't been addChild'd to the parent or some parent higher up the tree is not on the display list. If nestLevel isn't greater than 2 or so, then that tree of obje

Re: [flexcoders] Repeater Question

2008-05-30 Thread Sherif Abdou
- Original Message From: Gordon Smith <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 9:00:37 PM Subject: RE: [flexcoders] Repeater Question No. You can use startingIndex and count to specify just a range within a dataProvider, but you have

[flexcoders] Flex + WebORB for PHP

2008-05-30 Thread Manu Dhanda
Hii.. I just started with WebORB for PHP, put all the things in place. Now when I access my application, It takes me to faultHandler() in my responder. I am displaying Alert.show("In Fault: "+info.fault.faultString); And the Alert fault string returned to me is something like this: In Fault: C

RE: [flexcoders] Repeater Question

2008-05-30 Thread Gordon Smith
No. You can use startingIndex and count to specify just a range within a dataProvider, but you have to have a dataProvider. Try Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abu Hamdan Se

[flexcoders] Re: Repeater Question

2008-05-30 Thread dbronk
Well, this isn't pretty but you could do... private function onCreationComplete() : void { var obj : Object = {}; var dp : Array = [obj, obj, obj, obj, obj, obj, obj, obj, obj, obj]; myRepeater.dataProvider = dp; } This will display "Hello" ten times. Dale --- In flexcoders@yahoogroups.com,

RE: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

2008-05-30 Thread Gordon Smith
Huh? Why does it need to get set within the task? If an Ant script does isn't compc going to run with FLEX_HOME set by the property tag? Isn't each spawned build running in its own process with its own FLEX_HOME property? Gordon Smith Adobe Flex SDK Team

Re: [flexcoders] Repeater Question

2008-05-30 Thread Sherif Abdou
why not just a for loop? for(var i:int=0;i To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 7:43:15 PM Subject: [flexcoders] Repeater Question can a repeater be used without a dataprovider, i want to repeat some panels based on a number and i was thinking ofu sing the count property onl

Re: [flexcoders] Re: Repeater Question

2008-05-30 Thread Abu Hamdan
hi there it doesnt work, any other suggestions ?? rubeel On Fri, May 30, 2008 at 9:20 PM, dbronk <[EMAIL PROTECTED]> wrote: > I think the following will get you what you want... > > > > > > > Dale > > --- In flexcoders@yahoogroups.com, "Abu Hamdan" <[EMAIL PROTECTED]> wrote: > > > > can a repe

[flexcoders] Re: Repeater Question

2008-05-30 Thread dbronk
I think the following will get you what you want... Dale --- In flexcoders@yahoogroups.com, "Abu Hamdan" <[EMAIL PROTECTED]> wrote: > > can a repeater be used without a dataprovider, i want to repeat some panels > based on a number and i was thinking ofu sing the count property only,

[flexcoders] Repeater Question

2008-05-30 Thread Abu Hamdan
can a repeater be used without a dataprovider, i want to repeat some panels based on a number and i was thinking ofu sing the count property only, but it seems to not work, any suggestions. rubeel -- Rubeel Muhammad Iqbal

RE: [flexcoders] Compile css file to swf with ClassReference in the css file

2008-05-30 Thread Rick Winscot
When compiling from the command line - you'll need to include the reference to your classes via an appropriate compile option. The compiler needs to be able to 'see' your classes to compile against them. http://www.quilix.com/node/9#mxmlc_3_opt Rick Winscot From: flexcoders@yahoog

RE: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

2008-05-30 Thread Rick Winscot
Yes. which is the problem we stumbled upon. So - one of the changes I made to Flex Ant Tasks was to be able to set this value within the task. We can now define any environment variable (i.e. FLEX2_HOME, FLEX3_HOME), point it at the appropriate sdk and build without issues. Given some of the earlie

Re: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread ivo
Thanks again for your reply Alex. Seems that in the instances that are not drawn neither the commitProperties() nor measure() functions are called. Reviewing the properties of the drawn and not-drawn instances on the creationComplete event of the parent shows them to be basically equivalent, but

Re: [flexcoders] adding a label to a Panel header?

2008-05-30 Thread Daniel Freiman
Is the size of the label actually being set? - Daniel Freiman On Fri, May 30, 2008 at 11:18 AM, fb6668 <[EMAIL PROTECTED]> wrote: > Hi, I've extended the Panel container, and would now like to add a > second text field to the header. > > I currently have code which has added am expand/contract

Re: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-30 Thread Paul Andrews
- Original Message - From: "rdebled" <[EMAIL PROTECTED]> To: Sent: Friday, May 30, 2008 9:55 PM Subject: [flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex? >I need to load a powerpoint file inside my Flex app. I planned to > just convert the ppt to a swf and load

[flexcoders] How to convert a powerpoint to AS3 swf for loading in Flex?

2008-05-30 Thread rdebled
I need to load a powerpoint file inside my Flex app. I planned to just convert the ppt to a swf and load that with a SWFLoader control, but every conversion app I've run in to creates a Flash 8 AS2 file. This seems to make it impossible to control the slides because the SWF has to load as an

RE: [flexcoders] select datagrid column cells based on checkbox click

2008-05-30 Thread Alex Harui
The renderers need a way to access a variable outside the DG that represents the checkbox state. You could put it in your data model. You'll have to call invalidateList() to refresh DG. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf O

RE: [flexcoders] Infinite Scrolling component?

2008-05-30 Thread Alex Harui
You'll have to "virtualize". The List classes do that, and only display components in the virtual viewport. One of the reasons you have to do this is that the maximum pixel space is +/- 8192 pixels. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] O

RE: [flexcoders] Re: ClassReference and resourceBundles

2008-05-30 Thread Gordon Smith
OK, fair enough. You should be able to use resourceManager.getClass() and the 'new' operator to dynamically create instances of locale-specific components. But there's no way to make the class that an MXML tag like represents be locale-specific... an MXML tag maps to a specific class, regardless o

[flexcoders] Infinite Scrolling component?

2008-05-30 Thread Charlie Hubbard
Hi, I have a component that I'm working on right now, and I'm using the scrollRect to provide me a sliding window over a component. The only problem with this is that while I can make it scroll back and forth using this. I have to provide a fix width in order for it to work. What I'd really like

[flexcoders] Re: taking xml var and splitting into 2 xml lists - flex bug?

2008-05-30 Thread Amy
--- In flexcoders@yahoogroups.com, "djohnson29" <[EMAIL PROTECTED]> wrote: > > I have noticed some weird behaviour when working with XML vars and > XMLListCollections. > > I have an xml variable that I am looping through using a for each > loop. I want to separate the xml into 2 seperate lists b

[flexcoders] select datagrid column cells based on checkbox click

2008-05-30 Thread rviswanathan
Hi I have a datagrid and a checkbox outside of it. When I click the checkbox, I need a specific set of cells (not complete rows) on only one of the columns to be highlighted (with some background color). How can I go about doing this? This is what I attempted. a) I have an itemRenderer assoc

Re: [flexcoders] Flex Builder 2 to Flex Buiulder 3 IDE changes: some good, some bad

2008-05-30 Thread Joseph Balderson
Uncheck these two: Window > Preferences > Flex > Editors > ActionScript Code > Keep imports organized > Remove unused imports when organizing Problem solved. ___ Joseph Balderson | http://joeflash.ca Flex & Flash Platform Deve

[flexcoders] Documentation for FB Source Code for Eclipse

2008-05-30 Thread Brian Riley
I'm trying to reuse some of Adobe plugin objects for FB (to create my own plugins), so I downloaded the source for FB (http://kb.adobe.com/selfservice/viewContent.do?externalId=4b243413&sliceId=1), but it doesn't all seem to be there...when I look @ the plugins directory of my Eclipse install f

[flexcoders] My Web Service with soap headers code no longer work with Flex 3

2008-05-30 Thread Mark
In Flex 2 this works like a charm but not in 3, I can't seem to find any info on the changes in the Help. Can someone lend a hand? http://www.adobe.com/2006/mxml"; layout="absolute" creationComplete="onCreationComplete()"> http://radar.net/RadarXML.asmx?WSDL"; showBusyCursor="true

Re: [flexcoders] Performance issues while creating several instances of DisplayObject at the same

2008-05-30 Thread Doug McCune
A few suggestions: - don't set explicitWidth in updateDisplayList, use setActualSize() - like Alex said, Container does extra processing, so use UIComponent as the base of both ParentView and ChildView. SInce you are managing the layout of the children manually and you don't require sc

[flexcoders] Re: What is a classfactory and why would I use one?

2008-05-30 Thread Amy
--- In flexcoders@yahoogroups.com, "Jonathon Stierman" <[EMAIL PROTECTED]> wrote: > > I would say it's more flexible to use the ClassFactory because you can > dynamically set the properties in the ClassFactory. Simple example: > > > > Say you had an application that creates Squares - just si

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Scott Barnes
heh, that would be an assumption. I use this forum to see what the average joe is having trouble with so that I can ensure we don't repeat the same mistakes, think of this as a great ear to the grown forum. I gave up my Flex days in 2007 ... Anyway.. just setting the record straght around some mis

[flexcoders] Flex Builder 2 to Flex Buiulder 3 IDE changes: some good, some bad

2008-05-30 Thread mr_j_harris
I upgraded from Flex Builder 2 to Flex Builder 3- to be able to use the AdvancedDataGrid was the driver behind the decision. The first thing I noticed was in the debugger, variables window, yellow highlighting on the modified variables. Nice! The second thing I noticed was the source-code mode e

[flexcoders] question using cairngorm with SequenceCommand?

2008-05-30 Thread markflex2007
Hi, I am using cairngorm with SequenceCommand.I attach my command code here. My question is how to pass variable from execute function to next event in constructor. Here I want to pass "sID" in execute function to "this.nexsqment = new EventLissqment(sID);" in function CloseEventCommand. But I

Re: [flexcoders] Re: ClassReference and resourceBundles

2008-05-30 Thread Dhimiter Bozo
Because not all the features are available to all the regions. Besides, different region may have different features all together. On 5/30/08 2:26 PM, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > > > Why would you want users in the U.S. to see more information (i.e., an > extended view) th

[flexcoders] Re: converting xml string containing special characters back to regular xml

2008-05-30 Thread djohnson29
Thanks - actually I was able to convert those back like this. The .toXMLString method didn't work - but the basic .toString() did. var x:XML = event.result as XML; var s:String = x.XmlData.toString(); var formattedXML = new XML(s); --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTE

[flexcoders] taking xml var and splitting into 2 xml lists - flex bug?

2008-05-30 Thread djohnson29
I have noticed some weird behaviour when working with XML vars and XMLListCollections. I have an xml variable that I am looping through using a for each loop. I want to separate the xml into 2 seperate lists based on a value so as I loop through, I am adding each xml node to 2 different XmlListCo

Re: [flexcoders] REPORTING in FLEX 3

2008-05-30 Thread jeff
On Thu, May 29, 2008 at 03:49:45PM -, gf_baggio wrote: > I am very new in flex and I am trying to figure out how to print nice > reports. We use BIRT, it's now part of the Eclipse project. -Jeff

[flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread valdhor
OK, why did that last post get posted twice (I use the Yahoo web based reader and I clicked the Send button once only)?

[flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread valdhor
I modified the example from the help slightly by adding a couple of simple buttons: http://www.adobe.com/2006/mxml"; layout="vertical" applicationComplete="init()" backgroundColor="0x003030" focusRect="false"> This works fo

[flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread valdhor
I modified the example from the help slightly by adding a couple of simple buttons: http://www.adobe.com/2006/mxml"; layout="vertical" applicationComplete="init()" backgroundColor="0x003030" focusRect="false"> This works fo

RES: [flexcoders] Re: The "High Score" Problem

2008-05-30 Thread kaleb_pederson
Using Merkle's Puzzles, the key wouldn't need to ever be transmitted across the network. It, or a seed from which the key could be formulated, would be contained within one of the puzzles which would be randomly solved by the client, after which some sort of a sentinel/signature message could

[flexcoders] Re: BlazeDS Long Polling Question

2008-05-30 Thread Satish
Thanks Seth, That did the trick. --- In flexcoders@yahoogroups.com, "Seth Hodgson" <[EMAIL PROTECTED]> wrote: > > Hi Satish, > > The setting controls how long the server will park a poll request and wait for something to return. With a wait of just 100 ms, the server will return an empty poll re

RE: [flexcoders] Re: ClassReference and resourceBundles

2008-05-30 Thread Gordon Smith
Why would you want users in the U.S. to see more information (i.e., an extended view) than users in France (who see a quick view)? Why don't you want them to see the same information, either in English or in French? Gordon Smith Adobe Flex SDK Team Fro

RE: [flexcoders] Is String to Number conversion locale-specific?

2008-05-30 Thread Dave Glasser
Thanks, I was hoping that was the case! Gordon Smith <[EMAIL PROTECTED]> wrote: I asked the Flash Player team, and one of the engineers told me that a period is always interpreted as a decimal point, regardless of the OS locale. Gordon Smith Adobe Flex

[flexcoders] Re: ClassReference and resourceBundles

2008-05-30 Thread Durres76
the idea is that each locale will have it's own views that are linked to the same app. i want to switch to the correct view Clases for the selected locale. here's my logic: if US use the extededView which is declared in the properties file for that locale. if FR use the quickView which is decl

RE: [flexcoders] Is String to Number conversion locale-specific?

2008-05-30 Thread Gordon Smith
I asked the Flash Player team, and one of the engineers told me that a period is always interpreted as a decimal point, regardless of the OS locale. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Da

RE: [flexcoders] Tree duplicating items - desperate!!!

2008-05-30 Thread Alex Harui
What are the four lines? If you remove them what happens? Step through dragCompleteHandler. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Faria Sent: Thursday, May 29, 2008 11:14 PM To: flexcoders@yahoogroups.com Subject: [fle

RE: [flexcoders] data object in itemrenderer is null

2008-05-30 Thread Alex Harui
The datagridcolumn needs dataField="rating" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of max.bruchmann Sent: Friday, May 30, 2008 3:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] data object in itemrenderer is null Hi

RE: [flexcoders] Questions regarding updating dataProviders after a drag & drop

2008-05-30 Thread Alex Harui
Normally, you listen for dragDrop or dragComplete events and if you don't want default behavior, you call preventDefault on the event and do whatever you want. So, if I were handling dragging products to a shopping list, I would write something like this: public function dragDropHandler(eve

[flexcoders] Does anyone know a way to show percentages as LinearAxis label?

2008-05-30 Thread Body Works Studio
Hi all We have a dashboard chart with two series being displayed one is the number of docs, and the second series shows the percentage of relevance. I have the min and max set to 0 and 100 respectively and interval is set to 25. is there a way to make the scale show as 25% 50% 75% etc... Thanks

RE: [flexcoders] Performance issues while creating several instances of DisplayObject at the same

2008-05-30 Thread Alex Harui
Containers are heavy. They measure their children, think about clipping and scrollbars, compute the size and position of children, think about borders, background colors and more. If you aren't using 80% of those features, then you shouldn't be using a container. A UIComponent can be easily s

RE: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread Alex Harui
The order is commitProperties, measure, then updateDisplayList. If code in measure() ends up calling invalidateProperties, you go back to commitProperties and might never get over to updatedisplayList From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED

RE: [flexcoders] Sharing bindable data between mxml files in different project folders

2008-05-30 Thread Gordon Smith
You can also just declare public var testValue:String; and access it from other components as Application.application.testValue. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of yigit boya

RE: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

2008-05-30 Thread Gordon Smith
Yes, setting FLEX_HOME in Ant is the best approach. For example, if you look at the opensource code for the SDK, you'll see that our top-level Ant script declares Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PRO

Re: [flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread Sherif Abdou
maybe try this? var newClass:className = new className(); var _nav:String = className.getData() - Original Message From: Gordon Smith <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 11:58:04 AM Subject: RE: [flexcoders] Problems accessing a class method f

RE: [flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread Gordon Smith
What is your declaration of _nav? The compiler apparently thinks it has type Class, rather than the type of the class you've written. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of justSteve Sent: F

Re: [flexcoders] Re: Zoom / Pan Components on a Canvas

2008-05-30 Thread Sherif Abdou
http://www.adobe.com/devnet/flex/samples/fig_panzoom/ - Original Message From: Tim Hoff <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Friday, May 30, 2008 11:03:14 AM Subject: [flexcoders] Re: Zoom / Pan Components on a Canvas For zoom, check out scaleX and scaleY. You coul

RE: [flexcoders] Compile css file to swf with ClassReference in the css file

2008-05-30 Thread Gordon Smith
Assuming that the class you're specifying in ClassReference lives in a source file, make sure that the -source-path is such that it can be found by the compiler. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] Re: Fire itemRollOver

2008-05-30 Thread securenetfreedom
I figured it out using a combination of Key Event capture and selectedIndex. --- In flexcoders@yahoogroups.com, "securenetfreedom" <[EMAIL PROTECTED]> wrote: > > I have a combobox that opens onFocus. When using arrow keys I would > like to fire the itemRollOver for each item in the list as the ar

Re: [flexcoders] Air doesn't go full_screen_interactive

2008-05-30 Thread Ernesto Casasín
My mistake, I have made so many trials to get this working, the compiling error was produced when I tryed to use full_screen_interactive in a web application, not an air one, which is coherent with the documentation, but the problems still remains in that when set to full_screen_interactiv

Re: [flexcoders] what prevents a FlexEvent.CREATION_COMPLETE?

2008-05-30 Thread ivo
Thanks for the reply Alex. One additional question, what would prevent updateDisplayList from being called after a component is added to the display list? Further tracing shows that in the correctly drawn instance the updateDisplayList of the child components is called. In the one where the chi

[flexcoders] Re: Replaying an Embedding SWF

2008-05-30 Thread kenny14390
PROBLEM SOLVED: tileFront.source = new tile_Front(); I forgot that when Embedding the SWF, you store it as a Class. So to reinstatiate, you use the "new" keyword to get another instance of it. Thanks to all that helped. --- In flexcoders@yahoogroups.com, "kenny14390" <[EMAIL PROTECTED]> wrote: >

[flexcoders] canvas RollOver Mouse over

2008-05-30 Thread mjbcircus
OK structure canvas (container) -- canvas (item) -- stuff in canvas all the canvas objects are created in a loop. when you set your container to a preset height 318 and add object to the container to go over the height the mouse over/ roll over flickers? (I have used both) dose an

Re: [flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread Ernesto Casasín
Your example shows exactly what is happening with this small example. If I add a simple botton to your code, the application doesn't response to the event triggered by this botton, eventhough it is set to full_screen_interactive. In fact there is no difference between full_screen and full_sc

[flexcoders] Performance issues while creating several instances of DisplayObject at the same

2008-05-30 Thread christian.menzinger
Hi there, while experimenting with Containers and UIComponents I received very strange results. Is it possible that the instantiation and rendering of about 150 DisplayObjects can take up to 3 seconds of processing time? I have a very light weight application attached where 20 views (containing a

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Paul Andrews
I'm always nice and MS marketing never sleeps. It's good to see that even Microsoft management are coding in Flex these days.. ;-) Have a good weekend. Paul - Original Message - From: "Troy Gilbert" <[EMAIL PROTECTED]> To: Sent: Friday, May 30, 2008 4:36 PM Subject: Re: [flexcoders

[flexcoders] Re: Zoom / Pan Components on a Canvas

2008-05-30 Thread Tim Hoff
For zoom, check out scaleX and scaleY. You could always drag for a pan. -TH --- In flexcoders@yahoogroups.com, "ron_mori" <[EMAIL PROTECTED]> wrote: > > Could anyone suggest a technique to Zoom & Pan components on a Canvas > or some other appropriate container. The goal is a Google Map like > a

RE: [flexcoders] Re: What is a classfactory and why would I use one?

2008-05-30 Thread Jonathon Stierman
I would say it's more flexible to use the ClassFactory because you can dynamically set the properties in the ClassFactory. Simple example: Say you had an application that creates Squares - just simple rectangles on the screen. When the user presses a button, a new square pops up in a random l

[flexcoders] Re: upgrade question - from fb2 or fb3?

2008-05-30 Thread chris markiewicz
got the answer - go by license, so i'm upgrading from 2. --- In flexcoders@yahoogroups.com, "chris markiewicz" <[EMAIL PROTECTED]> wrote: > > hello. i originally downloaded and bought a license for fb2. since > then i have gone through all of the fb3 beta/trials. i have to > upgrade now, but my

[flexcoders] Questions regarding updating dataProviders after a drag & drop

2008-05-30 Thread bredwards358
Looking through the posts regarding my search criteria of drap and drop and Array collection, I couldn't find a post which cleared up the task of updating a data provider, in this case, an array collection, after an item is dragged to its datagrid from another. Purely using the default settings(no

Re: [flexcoders] The different between generial Flex 3 and Flex 3 Profesional?

2008-05-30 Thread Troy Gilbert
> Just for a moment I thought this was the flex coders forum rather than an > extension of the MS marketing effort.. Okay, be nice, it's on-topic... the thread had lead to a question of whether it was possible to develop in Silverlight for free (in the same way its possible to develop in Flex for

[flexcoders] adding a label to a Panel header?

2008-05-30 Thread fb6668
Hi, I've extended the Panel container, and would now like to add a second text field to the header. I currently have code which has added am expand/contract button to the header, using: rawChildren.addChild(btStateUp); rawChildren.addChild(btStateDown); but when I try to add a label, as follows,

[flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread valdhor
In the help there is an example under "Displaying full-screen windows": http://www.adobe.com/2006/mxml"; layout="vertical" applicationComplete="init()" backgroundColor="0x003030" focusRect="false"> Does this work? I just tried it here and it works for me.

[flexcoders] Re: Air doesn't go full_screen_interactive

2008-05-30 Thread valdhor
In the help there is an example under "Displaying full-screen windows": http://www.adobe.com/2006/mxml"; layout="vertical" applicationComplete="init()" backgroundColor="0x003030" focusRect="false"> Does this work? I just tried it here and it works for me.

[flexcoders] Re: Which is more expensive: binding or setting

2008-05-30 Thread Amy
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > It depends... > > > > ...on the data object. Is it bindable? If so, does it really need to > be? > > > > Let's say you have a person Object { firstName: "Alex", lastName: > "Harui"}. Not bindable. It becomes

Re: [flexcoders] Air doesn't go full_screen_interactive

2008-05-30 Thread Tom Chiverton
On Friday 30 May 2008, Ernesto Casasín wrote: > In fact, the offending line doesn't compile on the pc version > of flex (it passes on the mac version, which is my working platform) Why doesn't it compile ? Do you get an error ? -- Tom Chiverton **

[flexcoders] Re: What is a classfactory and why would I use one?

2008-05-30 Thread valdhor
Ok, that makes sense. What is the benefit of going the classfactory way instead of extending a class and setting all the properties in a class constructor? --- In flexcoders@yahoogroups.com, "Jonathon Stierman" <[EMAIL PROTECTED]> wrote: > > From the Livedocs: > > > > http://livedocs.adobe.c

[flexcoders] Re: Not sure what to do here...

2008-05-30 Thread valdhor
If you are using Firefox as your browser the message "Transfering data from..." will be there all the time even if all data has been returned (This is a firefox bug). If you click on another tab and then return to this tab the messgae will be removed. Now, if you still have the busy cursor, you pr

[flexcoders] Netstream.play() arguments and caching video

2008-05-30 Thread Charlie Hubbard
Hi, I'm trying to download a video up front and cache it in memory before playing it. I understand how to use the Netstream.play() and passing it a URL. However, I want to download a video stream up front before playing it and cache it either in memory or the filesystem (I know this is probably

[flexcoders] Air doesn't go full_screen_interactive

2008-05-30 Thread Ernesto Casasín
Hi, I apologize if I repeat this question, but it is very important for my project to go FULL_SCREEN_INTERACTIVE in an Air application, blogs and docs say it is possible, with this code executing on an applicationComplete event systemManager.stage.displayState = StageDisplayState.FULL_S

[flexcoders] Re: Replaying an Embedding SWF

2008-05-30 Thread kenny14390
Also, SWFLoader component cannot toggle "visible" correctly. I'm using visible=true and visible=false but nothing happens. --- In flexcoders@yahoogroups.com, "kenny14390" <[EMAIL PROTECTED]> wrote: > > I tried your first suggestion about reinstantiating the SWFLoader, but > that doesn't seem to wo

[flexcoders] Re: Flex Freelancers please apply

2008-05-30 Thread kenny14390
You should use flexjobs instead. This is more for technical help than job postings. --- In flexcoders@yahoogroups.com, "Jason B" <[EMAIL PROTECTED]> wrote: > > We are developing a product and need help on some of the items we have > not been able to solve while we could post here we prefer to work

Re: [flexcoders] Compile css file to swf with ClassReference in the css file

2008-05-30 Thread Tom Chiverton
On Friday 30 May 2008, ealexdesign wrote: > So I try to use mxmlc command but it failed since I have > ClassReference in my css file. Was there any particular error ? Did you look it up ? -- Tom Chiverton This email is sent for and on behalf

Re: [flexcoders] Scaling via Streaming???

2008-05-30 Thread Charlie Hubbard
Streaming is the ability to jump around a video stream without having to download the prior content. The user clicks play and then jumps 1 hour into the video. Streaming will allow you to jump to the hour mark without downloading the first hour. You have to use a special server to do this though

[flexcoders] Flex Freelancers please apply

2008-05-30 Thread Jason B
We are developing a product and need help on some of the items we have not been able to solve while we could post here we prefer to work one on one with someone to get the answers we need. if your interested in applying please contact us including hourly rate location email phone if possible

[flexcoders] Compile css file to swf with ClassReference in the css file

2008-05-30 Thread ealexdesign
Hello! I want compile my css theme in swf file. So I try to use mxmlc command but it failed since I have ClassReference in my css file. Could you help me please to compile my css file to swf file.

[flexcoders] Re: Replaying an Embedding SWF

2008-05-30 Thread kenny14390
I tried your first suggestion about reinstantiating the SWFLoader, but that doesn't seem to work. Here is my code in the init() function that gets called every time I want the SWF to replay: tileFront = new SWFLoader(); tileFront.source = tile_Front; //(tileFront.content as MovieClip).gotoAndPlay(

[flexcoders] Zoom / Pan Components on a Canvas

2008-05-30 Thread ron_mori
Could anyone suggest a technique to Zoom & Pan components on a Canvas or some other appropriate container. The goal is a Google Map like ability for a large canvas. thx

RE: [flexcoders] What is a classfactory and why would I use one?

2008-05-30 Thread Jonathon Stierman
>From the Livedocs: http://livedocs.adobe.com/flex/2/langref/mx/core/ClassFactory.html It lets your application automatically create instances (with properties configured too!) without much input needed from you. Essentially, you configure the factory with your class, and then set up some

Re: [flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread Dan Vega
Can you share your code? I am sure I could tell you whats wrong if I can see what your doing but I am just not sure from the little bit of info I have. Dan On Fri, May 30, 2008 at 10:28 AM, justSteve <[EMAIL PROTECTED]> wrote: > Thankx...if i set code as you suggest I eliminate the compiler er

Re: [flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread justSteve
Thankx...if i set code as you suggest I eliminate the compiler error but it causes this problem: The class I'm trying to hit has already instantiated by the time the MXML file calls getData (it's called from the creationComplete handler). Creating a new one from my MXML file won't work cuz the con

[flexcoders] Is String to Number conversion locale-specific?

2008-05-30 Thread Dave Glasser
I'd like to know what effect a computer's locale might have on String to Number conversion in AS3. Specifically, in locales that use a comma as a decimal separator rather than a period, do the various conversion methods (Number() function, parseNumber(), Number() class constructor) treat the com

Re: [flexcoders] Help FLEX 3 and jasperReports

2008-05-30 Thread Yohanes Iwan Sugiarto
hi. I once was required to do the same and end up using Jasperserver, reports are called from the repository using web services, output format can be defined in part of the parameter as either PDF,CSV,HTML,XLS or RTF. This guide might help you to get to it http://www.jasperforge.org/sf/docman/do/do

Re: [flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread Dan Vega
The static error leads me to believe you have not instantiated your object yet. Have you created the object or are you directly trying to call the method? var obj:myObject = new myObject(); obj.getData(); On Fri, May 30, 2008 at 9:42 AM, justSteve <[EMAIL PROTECTED]> wrote: > I have a public

[flexcoders] What is a classfactory and why would I use one?

2008-05-30 Thread valdhor
This may be a dumb question but I can't seem to find this in any documentation. What is a classfactory and why would I want to use one? What can I do with a classfactory? Any links to documentation/tutorials?

[flexcoders] Problems accessing a class method from an mxml file

2008-05-30 Thread justSteve
I have a public class that defines a method as: public function getData( ):String { return "mData"; } In an mxml file, I've imported that package and attempt to call ( _nav = getData(); ) but get '1061: Call to a possi

[flexcoders] Re: Not sure what to do here...

2008-05-30 Thread mr_delphi_developer
Anyone able to help out here?

Re: [flexcoders] Flex Ant Tasks - can someone cut the umbilical?

2008-05-30 Thread Douglas Knudsen
FLEX_HOME is set in ANT, no? So if two independent ANT scripts are running this FLEX_HOME setting would not collide, right? DK On Fri, May 30, 2008 at 9:21 AM, Rick Winscot <[EMAIL PROTECTED]> wrote: > Tom - Flex Ant Tasks is looking for FLEX_HOME... so - if you have a CI > machine doing all

  1   2   >