RE: [flexcoders] FDS and Paging

2007-08-29 Thread Alban Soupper
Thanks Jeff for this helpful information :-) I will now investigate the LC DS 2.5 Alban. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeff Vroom Sent: 29 August 2007 22:51 To: flexcoders@yahoogroups.com Subject: RE: [flexcoder

[flexcoders] Re: Accessing variables between components

2007-08-29 Thread hammer995
Thanks for the response. I'll look into your third suggestion on your blog since that seems to be the best implementation in the long run.

Re: [flexcoders] Re: Memory leaks

2007-08-29 Thread Xavi Beumala
Hi there, Sometime ago I developed a simple kind of memory monitor to track down the garbage collection activity and cycles. In short the application is a kind of flash player memory monitor. You can see it at http://www. code4net.com/memoryTest/ It has to gr

RE: [flexcoders] scale9Grid on flex image control. does it work?

2007-08-29 Thread Alex Harui
I know there are places where scale9 doesn't work. For some reason I can never remember them. However, in this case, I would try waiting for "complete" event then waiting for "updateComplete" (you'll get an updateComplete before complete too so ignore that one). ___

re: [flexcoders] ID3 library?

2007-08-29 Thread Ben Stucki
Check out http://code.google.com/p/metaphile I'm still ramping up the resources and documentation, but it should do what you're looking for. Feel free to post any questions on the group http://groups.google.com/group/metaphile and submit any bugs or feature requests on google c

[flexcoders] Code behind in reverse (code-infront?)

2007-08-29 Thread Josh McDonald
Hi, I'd like to do seperate my code from my design (ie .as from .mxml), but having my .as code extend the mxml object rather than the other way around, so that I can use the auto-complete features of the Builder IDE to discover components and such. I'm having troubles getting it to work, am I drea

[flexcoders] ID3 library?

2007-08-29 Thread David Buitenveld
Hi all - has anyone ever run across an actionscript library for reading/writing ID3 tags from music files? (ideally flac, but mp3 would be a start).. alternatively, does anyone have a favorite non-actionscript ID3 library that they are able to call from actionscript? Would prefer open source

Re: [flexcoders] more httpservice / ruby form post fun

2007-08-29 Thread grimmwerks
There's no event.result; there's event.toString() which I used - but again: TypeError: Error #1009: Cannot access a property or method of a null object reference. at test/sendIt() at test/___Button1_click() at [mouseEvent] When I click on the button; I don't know w

RE: [flexcoders] more httpservice / ruby form post fun

2007-08-29 Thread Tracy Spratt
I don't see anything wrong. Try accessing some other properties of "temp" in the handler. Oh, probably not related, but instead of: txt.text = String(temp.lastResult); Do: txt.text = String(event.result); Tracy From: flexcoders@yahoogroups.com [m

[flexcoders] Could not find resource bundle rpc

2007-08-29 Thread jimmedia
I have a main swf that loads another swf called SAForms2.swf, and when it comes to the point to load the file it fails with the message below. Error: Could not find resource bundle rpc at mx.resources::ResourceBundle$/getResourceBundle() at mx.utils::Translator$cinit() at g

[flexcoders] Re: submenu items on a ComboBox?

2007-08-29 Thread oliver langan
> Take a look at the PopUpMenuButton control; the example in the ASDoc > shows pretty much what you're asking for. This is exactly wrong. The ASDoc for PopUpMenuButton says specifically "Unlike the Menu and MenuBar controls, the PopUpMenuButton control supports only a single-level menu. This

[flexcoders] Re: accessing local file

2007-08-29 Thread tam.vicky
Thanks a lot. Vicky --- In flexcoders@yahoogroups.com, "Gordon Smith" <[EMAIL PROTECTED]> wrote: > > You can access local files using AIR. But in a web app, I think you can > only let the user select them for uploading, for security reasons. > > - Gordon > >

RE: [flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-29 Thread Alex Harui
If you want to, but it'll just get deferred. Some event types like "focusIn" probably shouldn't be re-used since they are defined as bubbling events. Same would be true for mouseDown and that would cause lots of extra work on developers for no benefit. From:

RE: [flexcoders] Re: ComboBox funkyness!

2007-08-29 Thread Alex Harui
Maybe I need to see a screenshot. If a Form has a background that doesn't obscure the combo, how can you tell it obscured the dropdown? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Wednesday, August 29, 2007 5:04

Re: [flexcoders] Simple (?) question about styles

2007-08-29 Thread Brendan Meutzner
Try this instead: this.setStyle('styleName', 'header'); Brendan On 8/29/07, Kyle Neath <[EMAIL PROTECTED]> wrote: > > It seems like I'm having a stupid problem with reading styles from a > stylesheet. Right now, I've got a renderer being used for a > DataGridHeader. This header has three gr

[flexcoders] Flex Message Service Java API and "Listeners"

2007-08-29 Thread jfujita1
Hi, I was looking at Christophe Coenraets' Tour Tracker application: http://coenraets.org/blog/2007/02/building-the-back-end-of-the-tour-of-california-%e2%80%9ctour-tracker%e2%80%9d-using-flex-data-services/ and I would like to do something similar to his socket GPS listener Messaging adapter.

[flexcoders] Re: Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Mike Morearty
Strange. For what it's worth, the exact command line used by Flex Builder to launch Safari is: /usr/bin/open -a %1 %2 where %1 is the full path to the browser specified by the Eclipse browser preferences, and %2 is the URL of your app. So, it is normally this for Safari: /usr/bin/open -a /

[flexcoders] Re: How to get the previously selected item in ComboBox on change?

2007-08-29 Thread williamkusumo
Hmm, actually, maybe 'change' is not what I should be listening to. I need to intercept the default action when user tries to change the selected item and based on user input, allow/disallow the option user is trying to select. What event should I listen to then? I was thinking of 'close', but that

Re: [flexcoders] doing session handling through FDS

2007-08-29 Thread Carlos Rovira
Siva, You can use tag in any of your destinations to set it to "application", "session" or "request". You have FlexSession as well that you can use to manage session related things in your LCDS application Btw, remember you have a rich client and you can store state on the client so you really do

[flexcoders] scale9Grid on flex image control. does it work?

2007-08-29 Thread walsaadie
Trying this simple bit of code: var image:Image = new Image(); addChild(image); image.source = "images/image.png"; image.maintainAspectRatio = false; image.scale9Grid = new Rectangle(2,2,30,30); the image size is 200 x 200 pixles i also tried adding different event handlers like complete thinkin

[flexcoders] Error upon runtime when I copy a project

2007-08-29 Thread flavoredcake
I have a flex project that runs normally. However, upon making a copy of it, while it builds fine, the copied application does not run properly. Upon start up, the loading bar reaches half way and the error displayed is: ArgumentError: Error #2004: One of the parameters is invalid. a

[flexcoders] Re: How to wait for control and all children to complete all changes

2007-08-29 Thread figo2324
hi... im new in flex, and im trying to do what i thing you've done... i've to take a snapshot of a panel, and print it in a imageloader... can you tell me how to do that? --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > UIComponentGlobals.layoutManager dispatches an "

[flexcoders] Re: Loading external assets at runtime for component skinning

2007-08-29 Thread walsaadie
Took your first suggestion. used a subclasses of image as a skin. works like a charm. --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I don't have any example handy. Someone else might, but I wouldn't be > suprised if nobody does because the application startup

[flexcoders] move selectedIndex based on user tabbing

2007-08-29 Thread Angela
I have a datagrid with 4 cols. Each DataGridColumn has an itemRenderer. What I need to happen is when one of those renderers has focus (i.e. you tab to the renderer) the row in the datagrid that it's in is selected. I thought itemFocusIn was the answer, but it doesn't seem to be getting called.

[flexcoders] Simple (?) question about styles

2007-08-29 Thread Kyle Neath
It seems like I'm having a stupid problem with reading styles from a stylesheet. Right now, I've got a renderer being used for a DataGridHeader. This header has three graphical icons that used to be buttons. But now I'm making the buttons DisplayObjects for the sake of optimization. I'm trying

[flexcoders] more httpservice / ruby form post fun

2007-08-29 Thread grimmwerks
Trying to simplify this: http://www.adobe.com/2006/mxml"; layout="absolute" > http://localhost:3000/signup/ register" result="resBack(event)" resultFormat="e4x" method="POST" /> But when I click the button, I get: TypeError: Error #

[flexcoders] Re: ComboBox funkyness!

2007-08-29 Thread nathanpdaniel
Everything currently is other components, PopUp Panels (windows), if I set a background color for the Form the combo box sits in, it's behind that. If I set a background color for the Canvas the Form sits in, it's behind that as well. If I don't set any background colors, I can see the select

[flexcoders] Re: Getting label text from a external XML file - eg for menu

2007-08-29 Thread sher_ali2004
Try this: http://www.adobe.com/2006/mxml"; layout="absolute">

RE: [flexcoders] [OT]: What's best way to import AS3 code to FB2?

2007-08-29 Thread Tracy Spratt
The first thing to try with "Internal build error" is Project, Clean. Actually, that is the first thing to try any time your app is not doing what you expect. If you have done that, I don't know what else to suggest. Tracy From: flexcoders@yahoogroups.c

Re: [flexcoders] swap two variables without temporary variable

2007-08-29 Thread carlos m
Hey Reid, Don't think there is a built-in function that will do that for you--not that I am aware of anyway--but there is definitely a way of implementing it! Check out this blog post by the awesome guys at polygonal: http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/ . Specif

RE: [flexcoders] How to get the previously selected item in ComboBox on change?

2007-08-29 Thread Tracy Spratt
I think you'll need to store the previously selectedItem in an instance variable. That is how I handle it. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of williamkusumo Sent: Wednesday, August 29, 2007 4:27 PM To: flexcoder

RE: [flexcoders] Getting label text from a external XML file - eg for menu

2007-08-29 Thread Tracy Spratt
This: [EMAIL PROTECTED] Is an e4x XML expression (the "@" is the clincher) But you are using mx:Model which converts the xml into a nested object structure. Use mx:XML in place of mx:Model. The "dk" can be a var using bracket notation as you have done with t

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Jurgen Beck
Hey Mike, Thanks for the response! This is happening on Mac OS X with Flex Builder 2.0.1. The system's default browser is set to Firefox. For the Flex debugging I'd like to use Safari though. I've been running into some caching issues with Firefox that I have documented in another post, thus

[flexcoders] How to get the previously selected item in ComboBox on change?

2007-08-29 Thread williamkusumo
Hi! I can't seem to get a reference to the previously selected item in ComboBox on change. When the function executes on change, the selectedItem has already become the newly selected item, I would like to check on the previously selected. I checked on the docs and can't seem to find any property

Re: [flexcoders] for FDS beginners

2007-08-29 Thread hua waveland
http://www.onflexwithcf.org/index.cfm/LCDS has a few good examples (with source code) on FDS/LCDS and coldfusion. On 8/29/07, Charu <[EMAIL PROTECTED]> wrote: > > Hello , > > I am a newbie to FDSand was trying out my hands on FDS,jrun and > coldfusion...i tried some code so as to create chan

[flexcoders] Adobe SF seeking senior Flex developers for new product initiative

2007-08-29 Thread tkrein321
We're looking for talented UI developers to join former members of the Flex team on a new product initiative. You will join a small team building next generation hosted web services & tools for business users, leveraging Adobe's AIR, Flex and LiveCycle technologies. You will be responsible for

[flexcoders] Digest or Basic+HTTPS auth for HTTPService WITHOUT LCDS/FDS

2007-08-29 Thread Steve Hagenlock
Hello, I'm trying to setup a scenario where calls to an HTTPService can be authenticated using Digest or Basic authentication where the backend is a JEE container managed security. After much research on the web and on this list I've decided to simply ask the question - is robust security ava

[flexcoders] Accessing variables between components

2007-08-29 Thread hammer995
I have a login component and a label in another component that displays the username from the login component. How do I access the username from the login component from the display component? I made the username variable bindable. I tried searching around but found something to do with passing

[flexcoders] Building on JMS "Chat" example in Testdrive server.

2007-08-29 Thread jfujita1
I'm working on expanding Christophe Coenraets' JMS chat example on the Testdrive Server for Tomcat... the one located in \fds-tomcat\webapps\ROOT\jms. The example works fine. Both the Flex chat client and the javachat.bat script in \fds-tomcat\bin work fine. I'm trying to edit the java sourc

[flexcoders] filtering with many paramaters

2007-08-29 Thread Mark
In the future this will all be done on the back-end but for now I have to do it all in Flex. What is the best way to filter an arrayCollection with many differnt paramaters per AC property? The way I've done it in the past is with the filterFunction but that's an awful lot of if's for this on

RE: [flexcoders] Re: Memory leaks

2007-08-29 Thread Alex Harui
Such is the nature of player memory management. It doesn't free up pages as aggressively as you might want it to, nor does it compact memory, so the first allocation grabbed a bunch of pages that aren't fully cleaned, but reused after that. From: Gordon Smi

RE: [flexcoders] FDS and Paging

2007-08-29 Thread Jeff Vroom
By default, DS will just page from the client to the server, not from the server to the database. I'd expect it to call fill once, but then the client fetches the data in pages. Starting in LC DS 2.5, we added a mechanism to page directly to the database. Currently it is limited in that you m

Re: [flexcoders] Combobox + PopupManager + mouseDownOutside "bug"

2007-08-29 Thread Troy Gilbert
Ah, nice, I've never seen/used the "owns" method... exactly what I was looking for! Thanks! Troy. On 8/29/07, Alex Harui <[EMAIL PROTECTED]> wrote: > > The test we added is if the popup owns the target. > > > > if > (IUIComponent(myPopUp).owns(Dis

[flexcoders] swap two variables without temporary variable

2007-08-29 Thread Reid Priedhorsky
Hi folks, I'm looking for a way to swap two variables without coding the swap manually with a temporary variable. In other words, what I have now is: temp = a; a = b; b = temp; In C, I could write (assuming a properly written swap() function): swap(&a, &b); In Python, I could writ

[flexcoders] How to get the previously selected item in ComboBox on change?

2007-08-29 Thread williamkusumo
Hi! I can't seem to get a reference to the previously selected item in ComboBox on change. When the function executes on change, the selectedItem has already become the newly selected item, I would like to check on the previously selected. I checked on the docs and can't seem to find any property

[flexcoders] Re: Cairngorm with Flex Modules...how did you do it?

2007-08-29 Thread chuyler1
Thanks Tony for the detailed explanation. I have spent the afternoon experimenting with modules in Flex Builder and it looks like separate projects is the way to go. At first I was thinking I could get by with a single project for development and then make sure the nightly Ant script used -link

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread generalxxaxx
--- In flexcoders@yahoogroups.com, "candysmate" <[EMAIL PROTECTED]> wrote: > Sorry guys, I didn't explain myself too well. What I want to happen is > to null the ArrayCollection after I've done with it. So it doesn't sit > around in memory hogging resources. > > best, Graham > I'm glad you didn'

[flexcoders] Getting label text from a external XML file - eg for menu

2007-08-29 Thread oneproofdk
I trying to use text from a external xml file as labels in buttons. I am doing this, so the user may switch language. My xml looks like this : I load it into the mxml using In the mxml file I am trying to use it in a Button : but as you mig

[flexcoders] Re: Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Mike Morearty
Hi Jurgen, Carlos was correct -- changing the value in Window > Preferences > General > Web Browser is how you change what browser Flex Builder uses to debug. If that doesn't work for you, then something is going wrong, but I am not aware of any bugs in that area. There is no per-project setting

RE: [flexcoders] Re: Memory leaks

2007-08-29 Thread Gordon Smith
Here are the results I get when I start by doing Force GC and Capture Memory and then repeatedly do Add Childs, Rem Childs, Force GC, Capture Memory: 4943872 6393856 6664192 6627328 6770688 6803456 6815744 6815744 6815744 6823936 6815744 There is no memory leak because continuing to add and re

[flexcoders] [OT]: What's best way to import AS3 code to FB2?

2007-08-29 Thread Steve Hueners
Getting up and running with sample code seems umm...less straight forward than i'd expect given how well other parts of FB are wizarded. There seems to be a tug between 'creating a new project' vs. being able to 'import existing files'. Using File | New ActionScript Project results in 'Internal Bu

[flexcoders] Re-locatable SWC inclusion?

2007-08-29 Thread Steve Kellogg
Hello, When adding SWC files to my project, I'm having trouble finding the documentation on how to make sure the PATHS to my SWC is relocatable. These are SWCs coming from another member of our team, and are NOT in the same root folder as my main project. I assume it has something to do with ${F

RE: [flexcoders] ComboBox - edit cursor appearing

2007-08-29 Thread Alex Harui
Bug. Fixed in Moxie From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Allison Sent: Wednesday, August 29, 2007 11:14 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox - edit cursor appearing Hi, I have found tha

[flexcoders] Re: Event collision- is this a bug or expected behavior?

2007-08-29 Thread ben.clinkinbeard
Hi Alex, It looks like somebody didn't follow your recommendations when writing FocusManager :) All of the focus related handlers have signatures that look like this private function focusInHandler(event:FocusEvent):void, causing a coercion error if a developer defines an event with a value that c

RE: [flexcoders] accessing local file

2007-08-29 Thread Gordon Smith
You can access local files using AIR. But in a web app, I think you can only let the user select them for uploading, for security reasons. - Gordon From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tam.vicky Sent: Tuesday, August 28, 2007 1

[flexcoders] Re: ComboBox - edit cursor appearing

2007-08-29 Thread ben.clinkinbeard
This is a known bug but it looks like its been fixed for Flex 3: http://bugs.adobe.com/jira/browse/SDK-7921 Ben --- In flexcoders@yahoogroups.com, Stephen Allison <[EMAIL PROTECTED]> wrote: > > Hi, > I have found that if you ever set the 'enabled' property of a > ComboBox dynamically, then the

[flexcoders] Cairngorm with Flex Modules...how did you do it?

2007-08-29 Thread chuyler1
Right now I am trying to layout a project that uses Cairngorm and multiple swf modules. I am currently using one project in Flex Builder but I am wondering if I should break each module out into its own project. Has anyone done this? If so, how did you accomplish it? Did you just share your pro

[flexcoders] ComboBox - edit cursor appearing

2007-08-29 Thread Stephen Allison
Hi, I have found that if you ever set the 'enabled' property of a ComboBox dynamically, then the ComboBox starts showing the I-Beam 'edit' cursor when you mouse over it. Otherwise identical ComboBoxes that aren't having their enabled property set behave correctly. here's an example: http:

RE: [flexcoders] Re: Very simple module crash: Instantiation attempted on a non-constructor

2007-08-29 Thread Alex Harui
If you define the module in MXML, but do not load it with ModuleLoader, you should have control over parenting. MXML includes styles from defaults.css, but AS does not. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of chuyle

RE: [flexcoders] useHandCursor Problem in Flex 3.0 Beta version

2007-08-29 Thread Alex Harui
Try adding buttonMode="true" From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bornaeon Sent: Wednesday, August 29, 2007 9:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] useHandCursor Problem in Flex 3.0 Beta version dear f

RE: [flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

2007-08-29 Thread Alex Harui
Still in my queue. Hopefully this week sometime. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Sent: Wednesday, August 29, 2007 10:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

RE: [flexcoders] Combobox + PopupManager + mouseDownOutside "bug"

2007-08-29 Thread Alex Harui
The test we added is if the popup owns the target. if (IUIComponent(myPopUp).owns(DisplayObject(evt.target))) -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Troy Gilbert S

Re: [flexcoders] Re: Integrating MapServer with Flex

2007-08-29 Thread paulh
kramus0 wrote: > integrated several map providers in a map component using actionscript 3. modestMap supports flex? i thought it was just AS2? back to the original question, we've experimented w/mapserver via coldfusion/mapscript using flex (but this was a very old version of java mapscript th

[flexcoders] Re: Help - users having problem I can't reproduce

2007-08-29 Thread jer_ela
Thanks, I wish I knew what causes the error so I could reproduce it. I don't even know if thats the same error the other user got. I would guess it is a timing issue in the distortion effects code, with something happening out of order, but if I can't reproduce it I'm not likely to be able to

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Jurgen Beck
Thanks, but that doesn't seem to have an effect on the browser that the debugger uses. This seems to only affect the browser use for the help documentation. I'm sure I'm missing something. Jurgen carlos m wrote: In FB click on the Window >> Preferences >> General >> Web Browser. HTH, Carlo

Re: [flexcoders] AMF ---- some clarifications

2007-08-29 Thread Muzak
AMF stands for Actionscript Message Format. It's a binary message format used by Flash and Flex Remoting (and FDS, which is now LCDS - LiveCycle DataServices). http://livedocs.adobe.com/flashremoting/mx/Using_Flash_Remoting_MX/intro2.htm LiveCycle info: http://www.adobe.com/products/livecycle/dat

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > The AC will only remain in memory if there is a reference to it from > somewhere in the app. If the TW is gone, so should the DG, and > therefore its reference to the AC. If the AC was loaded into a var in > the main a

[flexcoders] Combobox + PopupManager + mouseDownOutside "bug"

2007-08-29 Thread Troy Gilbert
Here's the details of the bug: https://bugs.adobe.com/jira/browse/SDK-9656 I was running into this issue, googled "combobox mousedownoutside" and it was the first hit, so "yeah, Google!". Exactly what I was looking for. But... its fixed, but I couldn't figure out how to get details on what the fi

RE: [flexcoders] Re: Debug version of new Flash Player

2007-08-29 Thread Matt Chotin
Hi, Unfortunately the Debugger version of that Player was not tested so the Player team does not feel comfortable releasing it. We'll have one in the next public Flex beta, but that's still a little ways away. Sorry! Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAI

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread carlos m
In FB click on the Window >> Preferences >> General >> Web Browser. HTH, Carlos - Original Message From: Jurgen Beck <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Wednesday, August 29, 2007 10:06:39 AM Subject: Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

[flexcoders] Re: Flex Builder issues with large projects

2007-08-29 Thread Philip Kromer
I've found that compiling large embeds is *super* time consuming. The RSL solution seems best: this post from Darron Schall is relevant http://www.darronschall.com/weblog/archives/000168.cfm as are of course http://tinyurl.com/ynvqfe (livedocs for RSL) http://www.adobe.com/devnet/flex/artic

[flexcoders] Re: DragEvent.DRAG_EXIT doesn't work?

2007-08-29 Thread Matt
Alex, any news on this? I'm curious if I'm doing something wrong or if this is in fact a bug? --- In flexcoders@yahoogroups.com, "Matt" <[EMAIL PROTECTED]> wrote: > > Sure, I did about as simple of an example that would show the problem: > > > http://www.adobe.com/2006/mxml";> > >

Re: [flexcoders] Flex Builder 2.0.1: Change Browser for Debugging

2007-08-29 Thread Jurgen Beck
I asked this yesterday, but I'm not sure if I missed any possible responses to it. So here is another quick summary: How can we change the browser that FB uses for debugging? Thanks, Jurgen Jurgen Beck wrote: Even though there is a FB Preferences setting for using a browser when Web pages a

[flexcoders] useHandCursor Problem in Flex 3.0 Beta version

2007-08-29 Thread bornaeon
dear friends I have a simple code here: http://www.30Sharp.com'))" horizontalCenter="-109" verticalCenter="-139" useHandCursor="true"/> but when I do mouseover in my picture, nothing happends. I can click my picture and go to my URL, but my mouse cursor is not a hand or finger up on my picture

RE: [flexcoders] examples of form submits?

2007-08-29 Thread Tracy Spratt
You will need to tell us what you are doing that produces these errors. "I'm trying to play with this" is not sufficiently descriptive. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Wednesday, August 29,

RE: [flexcoders] ComboBox funkyness!

2007-08-29 Thread Alex Harui
What is "everything"? Popup windows? Other components? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathanpdaniel Sent: Wednesday, August 29, 2007 12:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ComboBox funkyness!

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Alex Harui
The AC will only remain in memory if there is a reference to it from somewhere in the app. If the TW is gone, so should the DG, and therefore its reference to the AC. If the AC was loaded into a var in the main app it will stay around. So, it depends on how you wrote your code. Note that GC

[flexcoders] Re: Very simple module crash: Instantiation attempted on a non-constructor

2007-08-29 Thread chuyler1
I found a work-around. I have to define my module using mxml instead of straight ActionScript. For some reason it wasn't loading the halo skin classes into the module and since they weren't available in the main app either it would crash when it tried to get the class name from the default css fi

Re: [flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
SIGH - just don't get it. > [RPC Fault faultString="HTTP request error" > faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent > type="ioError" bubbles=false cancelable=false eventPhase=2 > text="Error #2032: Stream Error. URL: http://localhost:3000/signup/ > register"]. URL:

RE: [flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread Alex Harui
Did you call preventDefault? Your drophandler gets called before the List's and it will set the action again. You may need to add a lower-priority handler so the List gets called first, since preventDefault() will also prevent the List from doing other things. _

Re: [flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
I'm trying to play with this, but I'm confused by the error I'm getting: [RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Error: [IOErrorEvent type="ioError" bubbles=false cancelable=false eventPhase=2 text="Error #2032: Stream Error. URL: http://loc

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
OK, let me try that out. Thanks a lot for your help Vikram --- In flexcoders@yahoogroups.com, "Peter Farland" <[EMAIL PROTECTED]> wrote: > > The Schema explicitly defines the property: > > nillable="true" type="s:int" /> > > and it says that it must be present (minOccurs="1") so it will be >

Re: [flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread Jeffry Houser
Would dragMoveEnabled="true" do it? restlessdesign wrote: > > > Hi everyone! > > Sorry to make my first post be a cry for help but short of rewriting > the DragEvent class, is there another way to essentially ignore the > keyboard while dragging items between list components so that the > acti

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Tracy Spratt
Where is the ArrayCollection declared? selectedItem is a property of the dataGrid that has a reference to an item in the dataProvider. If the DG is gone, then so is the selectedItem Property. What exactly do you want to happen? Tracy From: flexcode

RE: [flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
The Schema explicitly defines the property: and it says that it must be present (minOccurs="1") so it will be included. If you don't want it to be sent, then try making it optional in your .NET WebService. Pete -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE

[flexcoders] AMF ---- some clarifications

2007-08-29 Thread siva.flex
Hi All, What is AMF? Whats the benifits of AMF? , How it related to FDS? Is there any sites / pdf's regarding AMF? Whats the advantags of AMF? Anybody please clarify my doubts. I will be greatful to them. Thanks & Regards, Siva Kumar

[flexcoders] Re: Integrating MapServer with Flex

2007-08-29 Thread kramus0
Hi, I suggest you should take a look on http://modestmaps.com/ - they have integrated several map providers in a map component using actionscript 3. Regards Markus --- In flexcoders@yahoogroups.com, "sonnygett" <[EMAIL PROTECTED]> wrote: > > Hi guys, > I'm a college student and now start to wo

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
Sure. Here is the action script code for the class which I am sending to .Net web service: public class ObjectDetailsVONew implements IValueObject { private var objectName: String; private var objectInternalSeqId: int; private var objectEx

[flexcoders] AMF ---- some clarifications

2007-08-29 Thread siva.flex
Hi All, I have one more doubt forgot to post in my previous mail. What is AMF? Whats the benifits of AMF? , How it related to FDS? Is there any sites / pdf's regarding AMF? Anybody clarify my doubts. I will be greatful to them. Thanks & Regards, Siva Kumar

Re: [flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread Jurgen Beck
What about just setting it to null? myArrayCollection = null; That should free it up in memory. Isn't that what you need? Jurgen candysmate wrote: --- In flexcoders@yahoogroups.com , "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Where is the ArrayCollec

[flexcoders] doing session handling through FDS

2007-08-29 Thread siva.flex
Hi All, Anybody suggests me how to do session handling using FDS. I have downloaded testdrive and have gone throuth that one. And one more doubt I got is what is AMF, how it links to FDS. Thanks & Regards, Siva Kumar

[flexcoders] Re: Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
--- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > > Where is the ArrayCollection declared? > > > > selectedItem is a property of the dataGrid that has a reference to an > item in the dataProvider. If the DG is gone, then so is the > selectedItem Property. > > >

RE: [flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
Can you show us the XML Schema definition of the relevant complexType from your WSDL? Also, can you show us a snippet of ActionScript code that shows the properties that you have for this complexType and which ones you don't want to send? Pete -Original Message- From: flexcoders@yahoog

[flexcoders] Re: How to use IExternalizable for Web services?

2007-08-29 Thread vikram
Hi Peter, Thanks again for the reply. I had made a related post in #85277. Now, after finding out that IExternali... doesnt work with web service, my question comes back again - how will I hide few public members? you mentioned about changing the XML schema or something like that. If you can t

RE: [flexcoders] examples of form submits?

2007-08-29 Thread Tracy Spratt
I don't know ruby, but ordinarily "form submit" means http post. If that is the case here, then use HTTPService. There are lots of examples of that. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of grimmwerks Sent: Wednesday,

[flexcoders] Preventing CTRL, ALT, and SHIFT for DragEvent?

2007-08-29 Thread restlessdesign
Hi everyone! Sorry to make my first post be a cry for help but short of rewriting the DragEvent class, is there another way to essentially ignore the keyboard while dragging items between list components so that the action is always 'move'? I tried setting the action property in the drop event han

Re: [flexcoders] I need help with a BarChart with annotation - I think

2007-08-29 Thread Brendan Meutzner
Can you send a screenshot of what you're looking for? Brendan On 8/28/07, Mark <[EMAIL PROTECTED]> wrote: > > I have a bar chart that represents start and end dates from my XML. > It looks real nice and does a great job but my boss has asked for one > last thing… a line that indicates a third

RE: [flexcoders] How to use IExternalizable for Web services?

2007-08-29 Thread Peter Farland
Nope, IExternaliable is only for ActionScript serialization via AMF. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of vikram Sent: Wednesday, August 29, 2007 11:12 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to use IExternalizable

[flexcoders] examples of form submits?

2007-08-29 Thread grimmwerks
Seems ridiculous, but does anyone have any examples of form submits to a ruby backend in flex? I originally created an application using rubyamf, but the ruby developer flipped to just simple form submitting.

[flexcoders] Integrating MapServer with Flex

2007-08-29 Thread sonnygett
Hi guys, I'm a college student and now start to working on with my final assignment to get my graduate. and i was thinking about integrate MapServer (http://mapserver.gis.umn.edu/) inside the Flex application. Did someone know how to do it? regards,

  1   2   >