[flexcoders] Re: Multiline TreeItemRenderer

2007-03-09 Thread sergiopernas
Hi again Well, this is the subclass. Compiles, runs and everything but the tree elements are not multiline... package { import mx.controls.treeClasses.*; public class TIRMultiline extends TreeItemRenderer { public function TIRMultiline() { super();

Re: [flexcoders] Modules at 360Flex conference

2007-03-09 Thread Tom Chiverton
On Thursday 08 Mar 2007, Alex Harui wrote: You can bind, I'm just not sure if the module will unload if you want to kick it out of memory later. Ok, not bothered about that as we'll mainly use Modules to bring the initial download size down by excluding areas most people wont use (admin

Re: [flexcoders] Re: Mike nimmer Debug component !!

2007-03-09 Thread Tom Chiverton
On Thursday 08 Mar 2007, bobrene07 wrote: Is it possible to debug when your flash is not the first the page of your website ? Sure. As soon as the the Flex SWF starts up, you get the 'where's the debugger' prompt. I mean your flash is inside a portal and you want to debug after a portal

[flexcoders] Re: Are other developers hesitant to extend existing classes in Flex?

2007-03-09 Thread Danko Kozar
Jason, this was an eye-opener! Till now I didn't realize that an event listener can cancel another listeners. But the preventDefault() method of the Event class does exactly that. This is the way I should go with a PagableGrid. Thanks! --- In flexcoders@yahoogroups.com, Jason Hawryluk

[flexcoders] FlexPrintJob problem

2007-03-09 Thread Giles Roadnight
Hi I am trying to print a list of ID's from a canvas. I have the following code: private function printMovies(e:Event):void { var printJob:FlexPrintJob = new FlexPrintJob(); if(printJob.start()){

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Eric Guesdon
Hi to all, I’m not sure we will need a database like you are talking about… I would prefer something like Apollo:LocalDataBase …/ something like SharedObject (I hope to delegate security aspect to Apollo sandbox). I have some difficulties to believe that I need standard database

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread João Fernandes
Darren, When you install fds (example c:\fds) you'll find a folder resources\config inside it. This is where you can find an example for each file you'll have to configure FDS. This is a FDS configuration and not a CF one. The only thing you'll need to do in the cf side, is to activate the

[flexcoders] Re: How to submit a bug to Adobe ? - 60 inch display is to wide

2007-03-09 Thread oneproofdk
OK so I went on to see what the limits are. Tracking mouseX I can see that the Panel background stop at 4079, also that's where Flash stop tracking the mouseX !!?? The weird thing is that the Tile DOES extend beyond this point as per my screencap. Wonder what the max height is - we are currently

[flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Sergey Kovalyov
Hi All! I have a DataGrid and its dataProvider property is binded to ArrayCollection. When I first hide one column via firstColumn.visible = false and then binding executes, that column appears again. How to prevent this unnecessary appearance? Click Hide Middle Name and then Populate in this

Re: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Carlos Rovira
If I'm not wrong that is a bug in 2.0.1 (it was not in 2.0)... 2007/3/9, Sergey Kovalyov [EMAIL PROTECTED]: Hi All! I have a DataGrid and its dataProvider property is binded to ArrayCollection. When I first hide one column via firstColumn.visible = false and then binding executes, that

RE: [flexcoders] FlexPrintJob problem

2007-03-09 Thread Giles Roadnight
I solved this by adding a cretionComplete event listener to the canvas object. This fired another function that did the printing. Giles Roadnight From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: 09 March 2007 10:04 To: flexcoders@yahoogroups.com

[flexcoders] Re: DataGrid paging?

2007-03-09 Thread Danko Kozar
Indeed, a VScrollBar has really a lot of flexibility! I succeeded in subscribing to it's events and using the event.preventDefault() method cancel it's other listeners and it's actions. Using the configureScrollBars() method, the scrollbar sizing can easily be configured: override protected

Re: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Sergey Kovalyov
Any known workarounds? :) On 09 Mar 2007 02:28:17 -0800, Carlos Rovira [EMAIL PROTECTED] wrote: If I'm not wrong that is a bug in 2.0.1 (it was not in 2.0)... .

Re: [flexcoders] PDF Files

2007-03-09 Thread Ben Marchbanks
We do quite a bit of PDF work for publishers and digital printing. The method we use for variable printing uses a Flex interface which gives the user authoring capability via an image rendering of the PDF page. Flex manages all the PDF annotations as data and then applies these annotations

[flexcoders] Panel height 100% don't scroll

2007-03-09 Thread Norbert Csík
Hi! I have a simple Flex application running in a browser directly referencing the swf file. The application has a Panel element with height 100%. It works fine, has the correct size, but when the window gets too small the scroll bar appears in the Application not in the Panel. Can you tell me

[flexcoders] Unable to access UserTransaction in DataService on Java Sun Appl Server

2007-03-09 Thread lruinelli
Hello! I'm using flex dataservice deployed in a Sun Java System Application Server Platform Edition 9.0_01 (build b14)...but when I try to modify some record of my dataservice application I give the Unable to access UserTransaction in DataService error!!! I think this error occours because my

[flexcoders] Creating a generic method for creating events from String

2007-03-09 Thread pmotzfeldt
Hi I need som advice. I am trying to create a generic method which will create an event of the arguments of the method. I am able to create the rigth type of event, but I am having trouble finding out how to be able to provide additional attributes as text to the TextEvent etc... private

[flexcoders] Dynamically sized array collection

2007-03-09 Thread RadicalByte
Hi All, I'm hitting my head against a brick wall trying to work this out, but to no avail. I would like to have an ArrayCollection which contains a variable number of ArrayCollections. My code looks like.. [CODE] var arrayCollection:ArrayCollection=new ArrayCollection(); var

AW: [flexcoders] PDF Files

2007-03-09 Thread Harald Dehn
PDF rendering (when Acrobat Reader is installed on the client system) is a fantastic idea! This would make things much easier. Harald _ Von: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Im Auftrag von Ben Marchbanks Gesendet: Freitag, 9. März 2007 12:43 An:

[flexcoders] Re: Dynamically sized array collection

2007-03-09 Thread ben.clinkinbeard
What problem are you having? --- In flexcoders@yahoogroups.com, RadicalByte [EMAIL PROTECTED] wrote: Hi All, I'm hitting my head against a brick wall trying to work this out, but to no avail. I would like to have an ArrayCollection which contains a variable number of ArrayCollections.

[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
Hey Gordon. Thanks for the answer. I tried your suggestion, but it still won't work. I show once again what the problem is. I'm a novice, please keep this in mind ;-) This one works but it's case-sensitive. (The function liveSearch is unnecessary in this case. I know.):

[flexcoders] Re: PDF Files

2007-03-09 Thread Nicolas Boulet-Lavoie
I use fpdf with php to create the PDF on the server side then push to the client. Works good. Good documentation at http://www.fpdf.org/. Best of all, it's free, plenty of examples and it offers good performance. We use it to create architectural house plans. Nicolas --- In

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
How much data could Apollo store locally when offline? I think this is where some of the concern lies around not having an integrated database availble in Apollo. Does anyone know? Shared objects at least in Flash player 9 are pretty limited in size. Does Apollo plan to store data locally in a

Re: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Mickael RUELLAN
Sergey Kovalyov a écrit : Any known workarounds? :) Hi, for me the workaround is to stay in 2.0.0 What are doing Adobe for this ? Is there a way to submit bug ? Mika

RE: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Dimitrios Gianninas
Instead of hidding/showing columns, give the DG only the columns u want to appear at any one time. Dimitrios Gianninas Developer Optimal Payments Inc. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sergey Kovalyov Sent: Friday,

[flexcoders] DateField selectable ranges

2007-03-09 Thread Mikhail Shevchuk
I have a DateField widget in my app and a bunch of random Date objects. How can I disable all dates in that DateField except these Dates? Is the only way is to sort all Date objects and then set disable ranges between that Dates? -- A vivid and creative mind characterizes you.

Re: [flexcoders] How to send an Email with attachment

2007-03-09 Thread Tom Chiverton
On Thursday 08 Mar 2007, raz_gilad wrote: 1) I would like to create an image of the current screen and save it to server side as file. is this - dsaving an image to a file - doable ? Yeah. There's a 'submit a screenshot of this app to flickr' example on FlexBox. 2) I would like to use the

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Tom Chiverton
On Friday 09 Mar 2007, Darren Houle wrote: You don't install FDS on Coldfusion 7.0.2, it includes built in support for FDS with CFCs It does ?!? You're not confusing FDS with plain Remoting are you ? -- Tom Chiverton Helping to augmentatively restore compelling markets On:

[flexcoders] Re: copy data to clipboard using action script

2007-03-09 Thread greenfishinwater
Robert, Thanks, that worked fine. Andrew --- In flexcoders@yahoogroups.com, Robert Chyko [EMAIL PROTECTED] wrote: System.setClipboard(stringerr) -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of greenfishinwater

Re: [flexcoders] Loading Remote SWF Assets in FireFox

2007-03-09 Thread Tom Chiverton
On Friday 09 Mar 2007, Bjorn Schultheiss wrote: Absolute.. I'm stumped. Have you stuck Wireshark on the client PC and looked at what requests are made ? -- Tom Chiverton Helping to ambassadorially engineer real-time portals On: http://thefalken.livejournal.com

[flexcoders] Re: Regular Expression Problem

2007-03-09 Thread alexander.marktl
Have found the error: Here's the working code: -- public function liveSearch(searchString:String):RegExp { var regExSearchString:RegExp = new RegExp(searchString, 'i'); return regExSearchString; } mx:TextInput

Re: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Tom Chiverton
On Friday 09 Mar 2007, Mickael RUELLAN wrote: What are doing Adobe for this ? Is there a way to submit bug ? adobe.com/go/wish -- Tom Chiverton Helping to continually grow frictionless paradigms On: http://thefalken.livejournal.com This

RE: [flexcoders] Anybody experience Child Objects, exceeding the bounds of it's Parent Container?

2007-03-09 Thread Mike Anderson
This hasn't happened to anybody else, ever??? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Anderson Sent: Thursday, March 08, 2007 11:22 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Anybody experience Child Objects, exceeding

[flexcoders] Re: Panel height 100% don't scroll

2007-03-09 Thread Norbert Csík
Fantastic! It works. Thanks. nOR --- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: On 3/9/07, Norbert Csík [EMAIL PROTECTED] wrote: Hi! I have a simple Flex application running in a browser directly referencing the swf file. The application has a Panel

[flexcoders] Re: DataGrid paging?

2007-03-09 Thread Paul DeCoursey
--- In flexcoders@yahoogroups.com, Danko Kozar [EMAIL PROTECTED] wrote: I I've taken a look at your grid - you are basically extending a Canvas and laying out a DataGrid and indipendant VScrollBar on that canvas. I didn't extend DataGrid because although I really am adding functionality to

[flexcoders] Re: Pagination using Flex Data Management Service

2007-03-09 Thread sid_flex
Jeff, Thanks for your reply. I assume that by paging from client to server you mean that the client gets results fragment by fragment, based on the visible data. For example, if my datagrid shows 8 rows and my paging is set to 5 rows, the datagrid will only get the first two packages of data. In

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Darren Houle
From: Tom Chiverton [EMAIL PROTECTED] Reply-To: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] FDS services-config for CFC's Date: Fri, 9 Mar 2007 14:34:19 + On Friday 09 Mar 2007, Darren Houle wrote: You don't install FDS on Coldfusion 7.0.2, it

[flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Giles Roadnight
Hi I am still trying to get this print job done. I have got all of the text working fine but I can't get the logo to appear at the top, I hope someone can help. I have this code: private function printMovies(e:Event):void { var mixiLogo:Image = new Image();

Re: [flexcoders] Cursor Lag

2007-03-09 Thread Daniel Freiman
First I'd check to make sure your problem isn't in how the the cursor is set. It's possible that you're calling functions you are not aware of: Look into mouseEvent.updateAfterEvent() if you have functions that receive a MouseEvent to speed things up in general. Also I would just continue to

RE: [flexcoders] Modules at 360Flex conference

2007-03-09 Thread Kyle Quevillon
I have a 3 part series on Changing embedded True Type fonts at Runtime in Flex Applications which you might find useful. It demonstrates loading swfs that contain embedded fonts and applying them to the app via: 1. Using loader:

[flexcoders] Re: httpservice; ie and 2032 error

2007-03-09 Thread dantmcgowan
So I made some coding changes on the backend and the error went away. Here is the coding change I made to the service that the httpservice was receiving the xml from: response.setDateHeader(Expires, System.currentTimeMillis()); response.setHeader(Pragma, cache); response.setHeader(Cache-control,

[flexcoders] Problem accessing properties of an ItemRenderer

2007-03-09 Thread xloaferx
I have a List Component with a custom itemRenderer that has a label and a progressBar Component. I can update the label just fine w/ the data property when I update the ArrayCollection that is set as the dataProvider... What I want to be able to do is access the progressBar directly so i can

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Tom Chiverton
On Friday 09 Mar 2007, Darren Houle wrote: Enable Flex Data Management support This enables Flex Data Services to connect to this ColdFusion server So if I don't have FDS installed, it does nothing. -- Tom Chiverton Helping to continually incentivize industry-wide markets On:

Re: [flexcoders] Anybody experience Child Objects, exceeding the bounds of it's Parent Container?

2007-03-09 Thread Daniel Freiman
When this happened to me the solution was a complicated and very integrated with what I was doing. As a general piece of advice I'd call validateNow() and then scrollChildren() and see if that helps or gets you closer to a solution. - Dan Freiman On 09 Mar 2007 06:47:17 -0800, Mike Anderson

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread . m a r c o s a u g u s t o
This should be on the TOP priority how I'm suppose to make my app offline without a DB? This is not a should have.. its a must have. sqlite_count+=1; xD -- . m a r c o sa u g u s t o ; .eu vim para confundir e não para explicar!. . . - Chacrinha

RE: [flexcoders] checkbox in datagrid with vertical slider bar

2007-03-09 Thread Tracy Spratt
Here is a full example: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectI D=559 Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Lisa Nelson Sent: Thursday, March 08, 2007 5:12 PM To:

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread João Fernandes
Data management option in the CF admin is just to allow CF to be contacted by a FDS server. No FDS is integrated with CF. Install FDS express and look at those resources/config folder that I mentioned before. There is everything you'll need. João Fernandes

RE: [flexcoders] Re: When to use Flex???

2007-03-09 Thread Jagos, Allan
Thanks, that makes sense. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of kasey.mccurdy Sent: Thursday, March 08, 2007 9:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: When to use Flex??? Hey there Allan -- i'll try to

RE: [flexcoders] Re: Dynamically sized array collection

2007-03-09 Thread Tracy Spratt
Like Ben said. I assume your posted code is not complete, since you are not building your item arrayCollection anywhere. Build that first, in a nested loop, then do addAItem on the outer AC, passing the nes item ac as the arg. Tracy From:

RE: [flexcoders] mx:Script error ?

2007-03-09 Thread Tracy Spratt
What happens in a new, empty application, with just the script tags? If that doesn't work, re-install. If it does, then paste in code from the broken app till it breaks. There is the problem. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Alex Harui
@Embed is a compiler directive so you can't put it in quotes. You have to declare a variable [Embed('../assets/mixipix.swf'); Var mixipix:Class And load that From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Tom Chiverton
On Friday 09 Mar 2007, . m a r c o s a u g u s t o wrote: This should be on the TOP priority how I'm suppose to make my app offline without a DB? SharedObject. -- Tom Chiverton Helping to administratively revolutionize compelling design-patterns On: http://thefalken.livejournal.com

RE: [flexcoders] SWFLoader: WHEN can I access SystemManager.application[myContent]?

2007-03-09 Thread Tracy Spratt
applicationComplete is the perfect solution for me. Here's my a code snippet for anyone reading this later: [Bindable]public var _smAppLoaded:SystemManager; mx:SWFLoader id=myLoader width=300 complete=onCompleteMyLoader();/ private function onCompleteMyLoader():void {

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
SharedObject. You mean those little tiny 128k or whatever Shared Objects like from the Flash player or do you mean Apollo will have a more robust larger Shared Object? Jason Merrill Bank of America Global Technology Operations Learning Leadership Development eTools Multimedia Team

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Matt Chotin
Apollo has filesystem access, you can store whatever you want. But a DB is under consideration, no guarantees but it hasn't been ruled out. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Friday, March 09, 2007 8:49

RE: [flexcoders] SWFLoader: WHEN can I access SystemManager.application[myContent]?

2007-03-09 Thread Brian Holmes
I've listened for the SystemManager.applicationComplete event before to get a valid reference to it. b.. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Thursday, March 08, 2007 7:02 PM To: flexcoders@yahoogroups.com

Re: [flexcoders] Re: When to use Flex???

2007-03-09 Thread Doug McCune
I'll throw in a quick opinion here and talk about how I like to think about using Flex. Basically if you've got data you need to visualize in any non-boring way then Flex is the way to go. What this means is that if you've got a bunch of data that you want to show somehow other than dropping it

RE: [flexcoders] DataGridColumn visibility problem. It appears again when dataProvider is replaced

2007-03-09 Thread Alex Harui
There's been a bug filed, and an update is expected to be available soon (hopefully a week or two). -Alex -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, March 09, 2007 6:37 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Eric Guesdon
I mean nothing, i just asked every one if something like SharedObject (of course more robust and larger) should answer to the database subject. What do you think about that… from my point of view a system like sharedobject should be enough I don’t know if you downloaded New York Times

RE: [flexcoders] Re: When to use Flex???

2007-03-09 Thread Jagos, Allan
Good points. I will use what you are saying. Thanks. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Doug McCune Sent: Friday, March 09, 2007 12:09 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: When to use Flex???

[flexcoders] ALT-GR + key not working in Firefox

2007-03-09 Thread João Fernandes
Hi there, we're having this issue under firefox where textInput fields don't accept combination of Alt-Gr + Key. We use Portuguese Keyboard Layout ( pt_PT) and we are unable to write @ ( Alt-Gr + 2 ) or € ( Alt-Gr + E ) inside Firefox as supposed. This works perfectly under IE. João Fernandes

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Mike Chambers
If you are storing data with the File API, then there is no limit. mike chambers [EMAIL PROTECTED] Merrill, Jason wrote: How much data could Apollo store locally when offline? I think this is where some of the concern lies around not having an integrated database availble in Apollo.

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Mike Chambers
Shared Objects. File API. mike chambers [EMAIL PROTECTED] . m a r c o s a u g u s t o wrote: This should be on the TOP priority how I'm suppose to make my app offline without a DB? This is not a should have.. its a must have. sqlite_count+=1; xD

RE: [flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Giles Roadnight
Many thanks for the reply but I am still having some problems. I have this code: [Embed(source=../assets/mixi.swf)] [Bindable] private var mixiLogo:Class; at the top of my class and this code: private function printMovies(e:Event):void { var mixiLogo:Image =

[flexcoders] Re: Mouse events in non-drawn areas?

2007-03-09 Thread Reid Priedhorsky
Gordon Smith wrote: To make your component receive mouse events even in its transparent parts, fill those areas using 'graphics' with an alpha of 0. The Flash Player's mouse-detection logic doesn't care whether the pixels are opaque or transparent, it only cares that they have been drawn. Hi

[flexcoders] Re: Drawing in a Scrollable Canvas

2007-03-09 Thread Reid Priedhorsky
mike.cantrell wrote: One small problem still.. Now the lines drawn in the canvas are bleeding into other container. For instance, if I scroll down too far, the lines in the canvas will show in the parent containers (the panel that the canvas belongs to and the application canvas). I am

RE: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Merrill, Jason
Yeah, I know about those, but you're talking about creating files and reading them back - just seems like more work - so perhaps writing something like an XML file out and reading it back would have to do. I was thinking of something more native that didn't require as much serialization. Jason

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread Troy Gilbert
I think that if Adobe really wants to bill Apollo as taking the best-of web technology and putting it on the desktop, then they need to seriously consider including a DB that speaks SQL. Personally, I think it would be *fantastic* if Apollo was essentially an embedded webserver, i.e. stripped

RE: [flexcoders] Loading Remote SWF Assets in FireFox

2007-03-09 Thread Alex Harui
Bjorn. Still stuck? Nobody here recognizes the symptoms. Can you send a mini-example? -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Thursday, March 08, 2007 6:33 PM To:

RE: [flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Alex Harui
Like @embed, {} is a binding directive to the MXML compiler and doesn't have the same meaning in Actionscript. Note that you are also using mixiLogo twice (class and local variable name). [Embed(source=../assets/mixi.swf)] [Bindable] private var mixiLogoAsset:Class; at the top of my

RE: [flexcoders] Re: Pagination using Flex Data Management Service

2007-03-09 Thread Jeff Vroom
Yes, when you have one large ArrayCollection the paging from client to server works the way you describe. When you are only storing one page on the client at a time (i.e. in a page sized ArrayCollection), remote object or FDMS work the same if your app is read-only. You'd probably only use

RE: [flexcoders] checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
I believe you are describing something different than what I am describing. The dataProvider starts off life with every element in a false state, or unchecked. You check one box. Slide the bar. And other boxes in other rows magically check themselves.

Re: [flexcoders] ALT-GR + key not working in Firefox

2007-03-09 Thread Paul J DeCoursey
There is a series of bugs related to Events in the Flash Plugin. I haven't seen any reports on them yet, but I have reported them to adobe and verifed them on multiple machines. João Fernandes wrote: Hi there, we're having this issue under firefox where textInput fields don't accept

[flexcoders] RE: Init Global Object Best Practice

2007-03-09 Thread Gordon Smith
Please keep the discussion on the flexcoders list. Flex engineers don't do individual tech support, there are plenty of people on flexcoders besides me who can help you, and any answers are valuable to other people on the list learning about Flex. I can't really tell from your description what

[flexcoders] Mac style drop-down sheet

2007-03-09 Thread ashifsayani
Hi, I'd seen a posting where someone created a mac style drop-down sheet in Flex. I can't seem to find the link anymore, does anyone remember who's blog it was on? thanks, Ashif

[flexcoders] Sub-folders in ContextMenu customitems?

2007-03-09 Thread scott_ruffing
I'm trying to add several folder items to the ContextMenu items, but Flex doesn't seem to recognize them. I thought I could do something like - mainMenu = new ContextMenu(); mainMenu.hideBuiltInItems(); var item:ContextMenuItem = new ContextMenuItem(Item);

RE: [flexcoders] Re: Are other developers hesitant to extend existing classes in Flex?

2007-03-09 Thread Gordon Smith
Actually, preventDefault() does NOT prevent other listeners from executing; this is what stopPropagation() and stopImmediatePropagation() do. preventDefault() simply sets the flag returned by isDefaultPrevented() to be true. However, some event-dispatching code in the Player or the framework

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread Darren Houle
Okay, but... install it how, where? Not using the integrated JRun server, right, because CF is already running on an app server, right? So where do you unpack the fds war file? Into which directory under the CF Enterprise install? Darren From: João Fernandes [EMAIL PROTECTED] Reply-To:

[flexcoders] VideoDisplay volume problem

2007-03-09 Thread David Gassner
Using the VideoDisplay component, it seems that setting the volume property doesn't have any effect. For instance: mx:VideoDisplay id=video volume=0/ results in playing the video, but the sound is still there. I've also tried setting the volume to 0 just before playing, and even calling

[flexcoders] Re: checkbox in datagrid with vertical slider bar

2007-03-09 Thread ben.clinkinbeard
http://www.returnundefined.com/2006/10/item-renderers-in-datagrids-a-primer-for-predictable-behavior/ http://www.returnundefined.com/2006/11/creating-truly-reusable-renderers-with-classfactory/ HTH, Ben --- In flexcoders@yahoogroups.com, Lisa Nelson [EMAIL PROTECTED] wrote: If I

[flexcoders] gotoAndStop from flex

2007-03-09 Thread Maikel Finck
Yo, I'm trying to load a SWF build by others and start it from my flex code. The files have to be started using gotoAndStop('flag'), but, how I do to call it? The SWF load fine, if don't need to be started by this way. Thank you.

[flexcoders] VBox, constraint based layout not clipping content

2007-03-09 Thread scott_flex
Any particualar reason why a Vbox won't correctly clip content and show scrollbars when the object is using constraint based layout positioning? I'm adding up to 50 child objects to the vbox and want the scrollbars to appear so the user can scroll to see them all. If i set the height, and

RE: [flexcoders] gotoAndStop from flex

2007-03-09 Thread Alex Harui
If you used SWFLoader, the .content is the root of the SWF. If the SWF was built for Player 9 using CS3, then you can talk to it, otherwise you can't. Player 8 and older swfs are essentially walled-off. Others have built wrapper SWFs for Player 8 that will listen for local connections to/from

Re: [flexcoders] Re: DB access in Apollo

2007-03-09 Thread dorkie dork from dorktown
It is a must have IMO. I thought it was already going to be built in. Lets say you have a client that says we don't have database support but you can use files, XML or shared objects. How would that limit your application? If you needed a database you would have to go online to get it defeating

[flexcoders] Re: VBox, constraint based layout not clipping content

2007-03-09 Thread Tim Hoff
Unless you explicitly set the height and width of a container, it will automatically measure to include all of it's children; with no scroll bars. This is a good thing in some situations. If you want the scroll bars to show up, set the dimensions. clipContent is an entirely different animal;

RE: [flexcoders] Using an embedded image at runtime, Please help.

2007-03-09 Thread Stephen Gilson
There is an entire chapter in the docs on this topic that might help: http://livedocs.adobe.com/flex/201/html/embed_082_1.html Stephen From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giles Roadnight Sent: Friday, March 09, 2007 12:39

Re: [flexcoders] gotoAndStop from flex

2007-03-09 Thread Igor Costa
Maikel I posted a solution about your problem into the Flex cookbook site. See it here how you could do that. http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailspostId=3041productId=2 Regards. Igor Costa www.igorcosta.org On 09 Mar 2007 11:26:42 -0800, Maikel Finck

Re: [flexcoders] FDS services-config for CFC's

2007-03-09 Thread João Fernandes
Darren, if you use CF Enterprise, create a new instance, stop the instance, delete the cfusion-ear. Install FDS as j2ee app, then uncompress the flex.war file into cfusion-install-dir/servers/createdInstance then start the instance. You also can install FDS express with integrated Jrun, there

[flexcoders] Re: VBox, constraint based layout not clipping content

2007-03-09 Thread scott_flex
Thanks, I do agree that the vbox automatically grows based on it's content is a good thing sometimes, i am making use of that default behavior for sure. However, the constraint based layout is designed so i don't have to manually code changes for the width and height when the parent object

[flexcoders] Re: VBox, constraint based layout not clipping content

2007-03-09 Thread Tim Hoff
Well, just one more point: constraints (similar to padding) have nothing to do with the dimensions of a container. They simply provide a mechanism for positioning. While using top, bottom, left and right can cause resizing, relative to the parent, they are more or less just a tool for

[flexcoders] .NET Webservices

2007-03-09 Thread Brian Holmes
Does anyone have any examples they'd be willing to share or point me to of connectin to .NET webservices with or without soap headers, preferably both. It'll be greatly appreciated. Thanks, b.. *** The information in this e-mail is confidential and intended solely for the individual or

Re: [flexcoders] Re: How to submit a bug to Adobe ? - 60 inch display is to wide

2007-03-09 Thread Clint Modien
An obvious solution would be to lower the resolution on the monitors and resize all your flex components accordingly. On 3/9/07, oneproofdk [EMAIL PROTECTED] wrote: OK so I went on to see what the limits are. Tracking mouseX I can see that the Panel background stop at 4079, also that's

[flexcoders] Re: .NET Webservices

2007-03-09 Thread scott_flex
Here's how i've been calling my web services right or wrong... private var ws:WebService = new WebService(); // handle any error for this web service instance ws.addEventListener(fault, faultHandler); ws.loadWSDL(http://mywebsite.com/service.asmx?WSDL); // MyFunction just takes one

RE: [flexcoders] Re: .NET Webservices

2007-03-09 Thread Brian Holmes
Thanks Scott, I guess the stuff I have to call is just a lot more complicated and I haven't quite gotten the format down. Your way was the way I've been calling other web services. I also need to attach soap headers to every request. -Original Message- From: flexcoders@yahoogroups.com

[flexcoders] Re: VBox, constraint based layout not clipping content

2007-03-09 Thread scott_flex
Yes! It took me a few seconds to figure that out after you explained it, my brain is fragile... When setting just one of the constraints, (left or right) or (top or bottom) it makes perfect sense... but setting both (top and bottom) or (left and right), i just figured it manually set the

RE: [flexcoders] Re: .NET Webservices

2007-03-09 Thread Andrew Trice
Attaching headers to web service requests is pretty easy. I have an write-up here that you can check out (second half of the blog post): http://www.cynergysystems.com/blogs/page/andrewtrice?entry=census_mashup s_using_strikeiron_web ...and source code here:

RE: [flexcoders] Re: checkbox in datagrid with vertical slider bar

2007-03-09 Thread Lisa Nelson
Definitely helpful. Thanks. I still haven't found my way out of the woods yet though. I've discovered that when I slide the bar, an itemClick event is fired. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ben.clinkinbeard Sent:

[flexcoders] Security error accessing url

2007-03-09 Thread rzilist
How to get around this error? I've written small Flex application to retrieve stock info in exchange for company symbol. I've used Eclipse with Flex plugin. Inside the app, I'm calling webservice on quote.yahoo.com website. I can load the html page which references the swf file (by either

[flexcoders] Re: VBox, constraint based layout not clipping content

2007-03-09 Thread Tim Hoff
Yep, it's a different mind set, but very cool and flexible. Cheers, -TH --- In flexcoders@yahoogroups.com, scott_flex [EMAIL PROTECTED] wrote: Yes! It took me a few seconds to figure that out after you explained it, my brain is fragile... When setting just one of the constraints, (left

[flexcoders] Re: Security error accessing url

2007-03-09 Thread Paul DeCoursey
Maybe I've been misinformed but doesn't the cross domain file need to be one the server that serves the swf file? --- In flexcoders@yahoogroups.com, rzilist [EMAIL PROTECTED] wrote: How to get around this error? I've written small Flex application to retrieve stock info in exchange for

  1   2   >