Re: [flexcoders]Where does my SWF gain it's weight?

2009-05-05 Thread Anirudh Sasikumar
You could also restrict the character glyphs in your embedded font to reduce the size taken up by the font. This can be done by specifying the unicodeRange property in CSS: @font-face {   src:url(/embed_assets/fonts/Inconsolata-ani.otf);   font-family: mycodefont;   unicodeRange: U+0041-U+005A,  

Re: [flexcoders] Create new Canvas with Papervision3D

2009-05-05 Thread thomas parquier
looks like rendering occurs only once : at _view initialization, because render3D() is in the if(!_view) {...}... thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056

Re: [flexcoders] Question regarding FLV protection

2009-05-05 Thread thomas parquier
I don't use fms, but couldnt streaming flv through https or rtmps do the work ? Or maybe a session based authorization ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822

Re: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-05-05 Thread Tom Chiverton
On Friday 01 May 2009, daxdr9 wrote: This is hardly a surprise given the current economic conditions, assuming the ROI isn't there for the FB Linux product at this time. Your kidding, right ? 200 votes. Assume each of those averages out at 5 real people (not everyone is on line, not everyone

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-05-05 Thread Tom Chiverton
On Friday 01 May 2009, Sam Lai wrote: It's probably not the editor bits that are hard, but the debugging bits which have to reach outside of the Java world to work. Well, that's solved, because the Labs build has a debugger. As for the design view, they might be reaching out and using a

Re: [flexcoders] Flex Builder on Linux been scrapped ?

2009-05-05 Thread Tom Chiverton
On Friday 01 May 2009, john fisher wrote: FB != Flex - there's always the SDK - most people don't use the design view that much - do they? won't I lose the debugger too? as noted I have to try it... Linux doesn't have the Design View. The SDK comes with a command line debugger - 'fdb'. --

Re: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-05-05 Thread Tom Chiverton
On Tuesday 05 May 2009, Tom Chiverton wrote: FB Pro is 500 quid, so that's a hundred thousand pounds, right there. That's around about 5 man years. That's with out the multiple of 5, by the way... -- Helping to dynamically maximize meta-services as part of the IT team of the year, '09 and

RE: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-05-05 Thread Gregor Kiddie
so that's a hundred thousand pounds, right there. That's around about 5 man years. You have cheap developers ;) Plus, the team isn't going to be 1 person for 5 years, say they have a team of 20 on it (developers, testers, Project managers, user experience experts, marketing, etc) averaging

[flexcoders] XML performance and getting sensible / useable Profiler information

2009-05-05 Thread Nigel Magnay
Hello I have a flex project that is consuming XML data from a web service; (the detail of which is that it's coming across in an XStream serialised form). In flex, I can parse this, and convert it into native objects (with effectively an ActionScript implementation of XStream). Unfortunately,

Re: [flexcoders] Re: Flex Builder on Linux been scrapped ?

2009-05-05 Thread Tom Chiverton
On Tuesday 05 May 2009, Gregor Kiddie wrote: You have cheap developers ;) You know where most of Adobe's developers are, right ? Plus, it's just Java grunt work, I naively assume :-) Plus, the team isn't going to be 1 person for 5 years, say they have a team of 20 on it (developers, testers,

[flexcoders] 100,000 buttons

2009-05-05 Thread ew6014
hi guys.. any idea why the browser screws up if i were to create 100,000 buttons like the example below? ... up to 1000 it works fine. but more then that it goes crazy... any thoughts? ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml;

[flexcoders] AutoQuick Flex Automation question

2009-05-05 Thread ukarick
What I'm doing in my project is to use 2 instances of AQAdapter class , Here's some explaination step, 1. I've 2 instances of AQAdater call AQ1 AQ2 2. I record some interaction on AQ1. 3. I starts replay my interaction on AQ1 , Then I'm calling AQ2.beginRecord (Of course I need AQ2 to capture

[flexcoders] UK Flex User Group

2009-05-05 Thread londonbiker099
Can anyone tell me the status of the UK Flex User Group. There is a holding page at the URL and the email address bounces back to me. Does anyone have a contact? Best regards Jeremy

Re: [flexcoders] 100,000 buttons

2009-05-05 Thread Paul Andrews
- Original Message - From: ew6014 ew6...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, May 05, 2009 12:18 PM Subject: [flexcoders] 100,000 buttons hi guys.. any idea why the browser screws up if i were to create 100,000 buttons like the example below? ... up to 1000 it

Re: [flexcoders] 100,000 buttons

2009-05-05 Thread Vivian Richard
:- On Tue, May 5, 2009 at 7:18 AM, Paul Andrews p...@ipauland.com wrote: - Original Message - From: ew6014 ew6...@yahoo.com To: flexcoders@yahoogroups.com Sent: Tuesday, May 05, 2009 12:18 PM Subject: [flexcoders] 100,000 buttons hi guys.. any idea why the browser screws up

RE: [flexcoders] 100,000 buttons

2009-05-05 Thread Gregor Kiddie
Make each pixel it's own button? ;) Gregor Kiddie Senior Developer INPS Tel: 01382 564343 Registered address: The Bread Factory, 1a Broughton Street, London SW8 3QJ Registered Number: 1788577 Registered in the UK Visit our Internet Web site at www.inps.co.uk

Re: [flexcoders] Question regarding FLV protection

2009-05-05 Thread Alain Thibodeau
Hi there, What version of FMS are you using? I would recommend looking into: -rtmpe -verify your swf files -restrict to your domain (VHOST.ALLOW) A From: thomas parquier mailingli...@web-attitude.fr To: flexcoders@yahoogroups.com Sent: Tuesday, May 5,

[flexcoders] Re: Flex equivalent of PHPs format_date

2009-05-05 Thread valdhor
Use the Date object: var date:Date = new Date(1241259519 * 1000); var dateText:String = date.toUTCString(); Note that PHP uses seconds from unix epoch and Actionscript uses milliseconds from unix epoch. That is why I multiplied your number by 1000. HTH Steve --- In

[flexcoders] Re: EventListener not getting feedback from new server. Ideas?

2009-05-05 Thread valdhor
Have you tried looking at what is sent and received using Charles (http://www.charlesproxy.com) or Wireshark (http://www.wireshark.org/)? Also, on the two hosts, is PHP the same? How about the PHP.ini file(s)? And the crossdomain.xml file? Do non Flex file uploads work? --- In

Re: [flexcoders] Re: Mate and sharing data across files

2009-05-05 Thread Tom McNeer
Seona, On Mon, May 4, 2009 at 7:03 PM, Seona Bellamy se...@pretentia.com wrote: Aha! I had obviously missed the bit about the new User() when I was trying to adapt the example code. Well, it kinda depends on what you're trying to do. In your example, you're trying to set an attribute on

[flexcoders] Re: Flex Windows Not Loading Bug

2009-05-05 Thread valdhor
And, of course, when I get back on-line and read this, it has expired. Oh well, if you don't find someone, fire me off an email. --- In flexcoders@yahoogroups.com, edlueze edlu...@... wrote: Hi Steve - thanks for the tips! Sorry for not getting back to you sooner (just got back online).

[flexcoders] scale9grid and containers

2009-05-05 Thread thomas parquier
Hi, Embeded background with scaleGridTop,left,... doesnt resize. Is there a simple way to use an image as scale9grid background of a container (hbox) ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net

RE: [flexcoders] 100,000 buttons

2009-05-05 Thread Kenneth Sutherland
Apart from the obvious question which Paul puts nicely 'For goodness sake, why would you even try and do that?' you could think what do you need to do with that number of buttons. Perhaps try include just the functionality that you require and build your own button from the Sprite class or

[flexcoders] Re: scale9grid and containers

2009-05-05 Thread thomas parquier
Or a way to re-use css scale9grid syntax/object, to implement the feature ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056 2009/5/5 thomas parquier

RE: [flexcoders] 100,000 buttons

2009-05-05 Thread Tracy Spratt
The Flash Player has a pixel limit, perhaps this is bumping up against that. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Kenneth Sutherland Sent: Tuesday, May 05, 2009 9:25 AM To:

[flexcoders] Re: Check to see if component is visible

2009-05-05 Thread mmormando
Not quite what I did, but you are right, once I reset my loop to go all the way up to the application level I did find a level where visible was false. Thanks for you help. --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: If you did: mx:TabNavigator

[flexcoders] Re: Advanced Data Grid - A working Demo for LockedRowCount property needed

2009-05-05 Thread valdhor
Sure... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; mx:Script ![CDATA[ [Bindable] private var dp:Array = [ { symbol: ADBE, name: Adobe Systems Inc., price: 49.95 }, { symbol: BETA, name: Beta Inc.,

[flexcoders] FMS Recording Delay -Flex

2009-05-05 Thread vinayakvijay_v
Hi Friends. am Vinu. Please help me to find a solution. Am using Flex And FMS to record audio from my app using mic.But when i play back i has a delay at the beginning. ie. initial few sec is not recorded , and also the quality is low. can any one suggest a solution for this. Thanks in

RE: [flexcoders] UK Flex User Group

2009-05-05 Thread Jim Hayes
I couldn't say, I'm afraid! If you're in London as your handle implies, though, try here : http://www.meetup.com/flexlondon/ Monthly meetings normally in Shoreditch, I don't normally attend but I'm told it's more drinks and informal chat on most occasions. or there's the catchily named LFPUG

Re: [flexcoders] 100,000 buttons

2009-05-05 Thread Daniel Freiman
Are you trying to do something conceptually like this: Application Script list.dataprovider = new Array(1000); /Script List itemRenderer=mx.controls.Button / /Application - Daniel Freiman On Tue, May 5, 2009 at 8:18 AM, Paul Andrews p...@ipauland.com wrote: - Original

Re: [flexcoders] FMS Recording Delay -Flex

2009-05-05 Thread p...@vin Uttarwar
Hi Vinu, Can you explain how ur recording on FMS side? Regards, Pravin 2009/5/5 vinayakvijay_v vinayakvija...@yahoo.com Hi Friends. am Vinu. Please help me to find a solution. Am using Flex And FMS to record audio from my app using mic.But when i play back i has a delay at the

[flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread sailorsea21
Hi everyone, I'm having a problem with sorting columns in a datagrid when using itemRenderer. Without the itemRenderer, everything works fine but when I use an itemRenderer, the column with the itemRenderer doesn't sort, it simply rotates the rows of that column dgColumn.itemRenderer =

[flexcoders] Re: Question regarding FLV protection

2009-05-05 Thread Jon Oxtoby
We're using FMS 3.0, unfortunately the downloading software we're attempting to block (Jaksta) can handle an rtmpe stream no problem. We have the SWF verification enabled and that prevents the software from opening a new stream, but it's still able to record the stream as it plays in the video

[flexcoders] Re: SWF File Causing CPU Overload in Firefox on Windows

2009-05-05 Thread valdhor
I tried your site and Charles tells me... The requested URL /js/commerce.js was not found on this server. Also, I'm using Firefox 3.0.10 on Windows XP and it doesn't overload my CPU (Although I am still on Flash Player 9). --- In flexcoders@yahoogroups.com, Kyle ktya...@... wrote: For

[flexcoders] Profiler telling lies?

2009-05-05 Thread Gregor Kiddie
Hi all, I'm trying to work out where a memory leak is occurring in our application (putting me into Jeff's hell from last week). When profiling the app, it claims there is still a back reference to its parent on the display list (even though I remove it!) at [child0]. When I debug the

Re: [flexcoders] Profiler telling lies?

2009-05-05 Thread Mark Doberenz
Check your event listeners because if you're not using weak references then the garbage collector won't remove it. Disregard if you already knew that one :) On May 5, 2009, at 7:58 AM, Gregor Kiddie gkid...@inpses.co.uk wrote: Hi all, I’m trying to work out where a memory leak is

[flexcoders] Re: 100,000 buttons

2009-05-05 Thread Tim Hoff
I think that you're not trying to make enough of them. If you try 1,000,000, you'll have more choices. :) Seriously, this is like the client that asks, Why is the application slow? We're only getting 50,000 nested objects back from the server. -TH --- In flexcoders@yahoogroups.com, ew6014

[flexcoders] Re: Advanced Data Grid - A working Demo for LockedRowCount property needed

2009-05-05 Thread grg_blls
Hi, thanks for the working example. Your example displays a flat Data type, though I was trying to have LockedRowCount property work with Hierarchical Data type displayed, without success. Is it that AdvancedDataGrid doesn't support this property if displaying hierachical data (my prime

[flexcoders] Re: Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread Tim Hoff
Unless the itemRenderer displays just a string or a number, the default sort logic may have problems. Look at the DataGrid's sortCompareFunction. -TH --- In flexcoders@yahoogroups.com, sailorsea21 sailorse...@... wrote: Hi everyone, I'm having a problem with sorting columns in a datagrid

Re: [flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread Fotis Chatzinikos
you should not just do staff in creation complete set the smilies in the set data function even if sort works you will not get correct behaviour with just creation complete On Tue, May 5, 2009 at 5:21 PM, sailorsea21 sailorse...@yahoo.com wrote: Hi everyone, I'm having a problem with

[flexcoders] code hinting for FP 10 functions/classes in FB 3?

2009-05-05 Thread gwangdesign
Does Flex Builder 3 hint code for Flash Player 10 (new) classes such as Vector? If so (in case), how to get it work? Thanks.

Re: [flexcoders] code hinting for FP 10 functions/classes in FB 3?

2009-05-05 Thread Pedro Sena
Search for Flex compiler in your project properties. There you will see that you can change your sdk, but you will need to manually download and install it in you machine (not a big problem at all) HTH On Tue, May 5, 2009 at 1:12 PM, gwangdesign gwangdes...@yahoo.com wrote: Does Flex

RE: [flexcoders] Profiler telling lies?

2009-05-05 Thread Alex Harui
First, make sure you are using the right view. If you are looking at loitering objects but your scenario should not be using that view, you will get false positives. I’ve explained why on my blog. If you’re looking at a memory snapshot, I would dig further as I haven’t seen the profiler

[flexcoders] Building an ant script and starting/stopping server - how to automate

2009-05-05 Thread flexcoder2008
Does anybody know if there is a way to record a macro in FlexBuilder for a sequence of tasks? My Flex project has a Java backend and I use an Ant script to build everything and deploy it to Tomcat. I regularly have to stop my Tomcat server, right click on my Ant build file and build it, then

[flexcoders] Re: code hinting for FP 10 functions/classes in FB 3?

2009-05-05 Thread gwangdesign
Thanks for the lead. I got the new Vector class compiled. I just don't have code hint. I have to literally type in functions like Vector.forEach(), etc.. I tried it on both SDK3.3.0 and the nightly build of SDK4. --- In flexcoders@yahoogroups.com, Pedro Sena sena.pe...@... wrote: Search for

Re: [flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread - -
Hi Fotis, do I set that in the DataGridColumn Class ? From: Fotis Chatzinikos fotis.chatzini...@gmail.com To: flexcoders@yahoogroups.com Sent: Tuesday, May 5, 2009 12:04:34 PM Subject: Re: [flexcoders] Sorting columns in a Datagrid don't sort with

Re: [flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread - -
Thanks guys, got it working. overridepublicfunctionsetdata(value:Object):void{ if(data.amount 50) { smileImage= 'smile001.png'; } else if(data.amount = 50) { smileImage= 'smile002.png'; } }super.data = value; From: Fotis Chatzinikos

[flexcoders] Re: TabNavigator creationPolicy

2009-05-05 Thread Amy
--- In flexcoders@yahoogroups.com, Richard Rodseth rrods...@... wrote: I think I've tracked down what's going on in the actual application (I inherited this portion of the code). The TabNavigator is added in an AddChild tag, and in this case all the children and their children appear to get

RE: [flexcoders] Building an ant script and starting/stopping server - how to automate

2009-05-05 Thread Kevin F. Benz
Script recorder? Not that I am aware of Rather than control scripts from Ant, I run Ant from scripts. You can just do more with scripts. KFB From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of flexcoder2008 Sent: Tuesday, May 05, 2009 9:59 AM To:

Re: [flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread Fotis Chatzinikos
Hi, I do not have any experience with the DataGrid classes but doing your logic inside override public function set data(value:Object):void { } should do it... drop the creation complete and try : override public function set

Re: [flexcoders] Sorting columns in a Datagrid don't sort with itemRenderer...

2009-05-05 Thread Fotis Chatzinikos
you are right ;-) in my previous post i forgot : super.data = value On Tue, May 5, 2009 at 9:10 PM, - - sailorse...@yahoo.com wrote: Thanks guys, got it working. *override* *public* *function* *set* data(value:Object):*void* { *super*.data = value; if(data.amount 50) {

[flexcoders] Context menu is not working for Flash Player 10

2009-05-05 Thread Dharmendra Chauhan
Hi, My Application is working fine with Flash Player9 but with FP10,it's somewhat broken.I am calling some external method throw ExternalInterFace on Context Menu Select event.None of the method is getting called with FP 10 ie call is not being made. Everything is working fine in FP9 have

Re: [flexcoders] Re: TabNavigator creationPolicy

2009-05-05 Thread Richard Rodseth
The code that I replaced was adding the entire TabNavigator plus children and grandchildren in an AddChild tag. It appears that deferred instantiation of the grandchildren is non-functional in that case. On Tue, May 5, 2009 at 11:14 AM, Amy amyblankens...@bellsouth.net wrote: --- In

[flexcoders] Re: Advanced Data Grid - A working Demo for LockedRowCount property needed

2009-05-05 Thread valdhor
Basically, lockedRowCount does not do anything if the AdvancedDataGrid is displaying hierachical data. If you have a look at the AdvancedDataGrid code you will see this comment before the get lockedRowCount() function: // if dataProvider is hierarchical, return 0 // because lockedRowCount has

[flexcoders] fyi : FlashCamp San Francisco : Flex 4, Flash Catalyst, Flex Builder

2009-05-05 Thread Mike Chambers
Just a quick heads up... We just announced that we will be holding a free FlashCamp at the Adobe San Francisco office on Friday, May 29th. The camp will focus on the next generation of Flex, including Flex 4, Flex Builder and Flash Catalyst. You can find more information here:

[flexcoders] Enable/Disable Context Menu Based on selected row of DG

2009-05-05 Thread Dharmendra Chauhan
Hi Everybody, I need to enable/Disable Context Menu Item based the selected row of the DG.ie I would perform some logic based on current selected row to decide enabling/Disabling of context menu item. Classical example of this is Timesheet application. If a manager click on any of the

[flexcoders] MXML Component and binding with a setter

2009-05-05 Thread biosmonkey
I have a custom MXML component that has a setter function, dataInput, that takes an arraycollection and essentially performs a similar function as a dataProvider. The problem is that I can't get my setter to fire when the dataInput is bound to an external arraycollection. So, if I have

[flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread Tim Hoff
Probably going to have to show us your getter/setter code; as well as the corresponding private var. If it's an ArrayCollection, it should work. -TH --- In flexcoders@yahoogroups.com, biosmonkey biosmon...@... wrote: I have a custom MXML component that has a setter function, dataInput, that

[flexcoders] Re: Enable/Disable Context Menu Based on selected row of DG

2009-05-05 Thread valdhor
This example should help... ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical verticalAlign=middle creationComplete=onCreationComplete() mx:Script ![CDATA[ import mx.controls.Alert; [Bindable]

[flexcoders] Server PUSH in LCDS

2009-05-05 Thread Ravi Suda
Hi, I want to implement Server-Push in my project. We use Adobe Flex3 in UI. We use Spring with Hibernate on server side. We also have LCDS on server. Flex calls Spring beans (DAOs) on server. Spring DAO's access database using hibernate. In this way Flex-UI gets data from server. And

[flexcoders] How to access Parent Component

2009-05-05 Thread jovialrandor
I am writing a custom component. I need to access a function from a parent application. How can I go about implementing this? Here's what I've tried: mx:Script ![CDATA[ import mx.core.Application; private var ParentApp:* = Application.application; ]]

[flexcoders] Bug in Flex scrolling?

2009-05-05 Thread Denis
Hi everybody, Very often, when I use the container/list/datagrid with scrolling, scrolling when dragging scrolling pad causes incorrect rendering of the controls that are being scrolled. If I use the up/down button (the scroll speed is slow), the rendering comes out OK. Whenever I use the

[flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Charles Parcell
I have a VBox and I want it to scroll using the mouse wheel and some arrow buttons that I will build. The problem is, if I set the verticalScrollPolicy = off then the VBox does not scroll at all. How can I visually turn off the scrollbar and keep the ability to scroll? Thanks, Charles P.

[flexcoders] Flashcamp East Coast?

2009-05-05 Thread Rick Winscot
Just wondering if ppl at Adobe are planning on spreading some Flashcamp sweetness on the East Coast any time soon... are our only option(s) May 29th in San Francisco? Rick Winscot

[flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread biosmonkey
I don't know if I can post source, but let me see... Here is source for a sample app: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=vertical xmlns:ns1=* horizontalAlign=left mx:Script ![CDATA[ import mx.collections.ArrayCollection;

RE: [flexcoders] How to access Parent Component

2009-05-05 Thread Tracy Spratt
That should work. Is it not? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of jovialrandor Sent: Tuesday, May 05, 2009 3:36 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] How

[flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread Tim Hoff
Try rolling with this, to see if it makes a difference: private var _dataInput:ArrayCollection; [Bindable( event=dataInputChange )] public function get dataInput():ArrayCollection { return _dataInput; } public function set searchResults( data:ArrayCollection ):void { _dataInput =

RE: [flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread Alex Harui
I didn't run it, but I would not expect the dataProvider setter to fire when you call addItem. I would expect the DataGrid to update as it is listening for CollectionChangeEvent from the ArrayCollection. You might need to do the same in your component Alex Harui Flex SDK Developer Adobe

Re: [flexcoders] Flashcamp East Coast?

2009-05-05 Thread Matt Chotin
Keep an eye on your local user groups... On 5/5/09 1:54 PM, Rick Winscot rick.wins...@zyche.com wrote: Just wondering if ppl at Adobe are planning on spreading some Flashcamp sweetness on the East Coast any time soon... are our only option(s) May 29th in San Francisco? Rick Winscot

[flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread Tim Hoff
Oops, typo: private var _dataInput:ArrayCollection; [Bindable( event=dataInputChange )] public function get dataInput():ArrayCollection { return _dataInput; } public function set dataInput( data:ArrayCollection ):void { _dataInput = data; dispatchEvent( new Event(

RE: [flexcoders] How to access Parent Component

2009-05-05 Thread Alex Harui
Might be timing. Application.application probably isn't filled out at construction time which is when vars get initialized. He can try setting it on the initialize or creationComplete event Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog:

[flexcoders] Re: How to access Parent Component

2009-05-05 Thread markgoldin_2000
That works for me: import mx.core.*; private var mainApp:Object = new Object(); mainApp = mx.core.Application.application; --- In flexcoders@yahoogroups.com, jovialrandor jovialran...@... wrote: I am writing a custom component. I need to access a function from a parent application. How

RE: [flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Alex Harui
You'll probably have to write your own mouseWheel handling code. Attach listener for the event and update verticalScrollPosition as needed. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Bug in Flex scrolling?

2009-05-05 Thread Alex Harui
Make sure your renderers are handling recycling. See the item renderers section on my blog for more info 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

RE: [flexcoders] Bug in Flex scrolling?

2009-05-05 Thread Jake Churchill
My friend Axel Jensen wrote a blog about this including a fix for it. It has to do with the item renderers being re-used and re-populated by the list control. His example is a tileList with images pulled from a server. The blog is here:

[flexcoders] Re: MXML Component and binding with a setter

2009-05-05 Thread biosmonkey
Beautiful - this was the key. The solution is to assign the given arraycollection to a private var, then add an event listener for CollectionChangeEvent. Changes to the bound collection are detected properly now. Thank you Alex and Tim for your help. private var _myAc:ArrayCollection=new

Re: [flexcoders] Flashcamp East Coast?

2009-05-05 Thread Jeffry Houser
Most Flash/Flex Camps aren't run by Adobe, and they happen all the time all over the place. http://groups.adobe.com/groups/985763b1c6/summary Check out Orlando on May 29th. Two Flash camps on the same day? Do I smell conspiracy? Rick Winscot wrote: Just wondering if ppl at Adobe are

[flexcoders] two chart lineseries one mouse

2009-05-05 Thread flexaustin
So I have two lineseries in my chart and I have a custom cursor, tall vertical line, so that when the user mouses over the chart both lines series are touched by the tall cursor. What I would like to happen is that when mouse comes into contact with both lineseries I want both lines to show

[flexcoders] specify services-comfig.xml in either MXML or AS?

2009-05-05 Thread dnk
Hi there, I was wondering if it was possible to specify my services-comfig.xml in either MXML or AS? I just wanted to include that in my actual code (as opposed to a compiler arg) for portability. I have been searching google, and nothing yet... Thanks! / D

[flexcoders] Re: specify services-comfig.xml in either MXML or AS?

2009-05-05 Thread Ben Reynolds
It's actually really simple (at least for the most basic implementation) to get rid of services-config.xml and the need for the -services compiler argument. I've had no problems using it with amfphp or granite. In the Application's creationComplete() I have something along the lines of

[flexcoders] TileList dataprovider change bug?

2009-05-05 Thread Ritu Raj Tiwari
I am seeing some strange behaviour with TileList. I am hoping someone can shed some light on this: I have a TileList where I assign it an ArrayCollection for its dataProvider. As I add objects to this collection, the tile list updates faithfully. The problem happens when I switch the

re: [flexcoders] TileList dataprovider change bug?

2009-05-05 Thread j...@cfwebtools.com
Instead of switching arraycollections, leave the arraycollection alone and alter the arraycollection.source (Array). I've had weird things happen with binding to an arraycollection and just altering the source array fixed the issue. -- Jake Churchill CF Webtools 11204 Davenport, Ste. 100

Re: [flexcoders] VBox that scrolls without a scrollbar

2009-05-05 Thread Sam Lai
Or set the scrollbar skin to a null classreference? I think that works, otherwise using a 1x1 pixel transparent skin definitely will. On my phone, so don't have the exact style names with me, but it should be in the docs. On 5/6/09, Charles Parcell pokemonkil...@gmail.com wrote: I have a VBox

[flexcoders] Re: TileList dataprovider change bug?

2009-05-05 Thread Ritu Raj Tiwari
Jake, Thanks for your response, but this did not help. I am still seeing the exact same behaviour. It is as if changing the data provider somehow does not really clean things out in the tile list. -Raj --- In flexcoders@yahoogroups.com, j...@... j...@... wrote: Instead of switching

[flexcoders] Re: Run swf on server

2009-05-05 Thread lagos_tout
Awesome! That's a great solution. Thanks! LT --- In flexcoders@yahoogroups.com, Jamie S jsjph...@... wrote: I was in a similar boat, having to generate an image server-side to that matches what the user sees in a flash movie client-side. Unfortunately there is no command-line version of

[flexcoders] Re: Run swf on server

2009-05-05 Thread lagos_tout
J- In your application, was the image generated as part of a single call to the server? Or did you have some other way of notifying the client-side app that the image had been generated on the server? Also, what server-side language did you use? Thanks again! LT --- In

[flexcoders] Re: TileList dataprovider change bug?

2009-05-05 Thread Tim Hoff
Hmm, never had a problem like this with a TileList. You can try myOldArrayCollection.removeAll(), before setting to the new ArrayCollection. (Hack) Also, make sure that you reset any filterFunctions that you may be using. Perhaps there is something else that is not getting reset before you