Skip to search.
flexcoders · RIA Development with Adobe Flex

Group Information

  • Members: 9019
  • Category: Development
  • Founded: Mar 17, 2004
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 7445 - 7474 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7445 Robert Stuttaford
robert@... Send Email
Jan 1, 2005
9:41 am
Ah, yes, okay. You need to place all that code inside a function which you bind to the Application tag's initialize handler. So: <?xml version="1.0"...
7446 Martijn de Visser
mdvisser Offline Send Email
Jan 1, 2005
1:32 pm
... 17 secs over here, but that's on an old Athlon 1600 machine. I'll check times on my new laptop as well... cheers, Martijn....
7447 dave buhler
pedalspeed1 Offline Send Email
Jan 1, 2005
5:38 pm
22 Seconds On Sat, 01 Jan 2005 14:32:00 +0100, Martijn de Visser...
7448 Vitor Oliveira
vitormil@... Send Email
Jan 1, 2005
6:00 pm
10 Seconds Athlon XP 2700 512 MB MOTHERBOARD ASUS A7N8X-X Windows XP SP2 Regards, Vitor. ... From: "dave buhler" <pedalspeed@...> To:...
7449 JesterXL
flexxl Offline Send Email
Jan 1, 2005
7:21 pm
Is there any way to dismiss an Alert via code? It turns a #, not a mc reference like PopUpManager does. ???...
7450 JesterXL
flexxl Offline Send Email
Jan 1, 2005
7:43 pm
Let me rephrase the question as I inject more caffiene into my battered morning mind and am more capable of typing: I found thet Alert.show still returns a...
7451 JesterXL
flexxl Offline Send Email
Jan 1, 2005
7:48 pm
Oh yeah, there's no IDE that I've found to create XUL compared to things like Flex Builder/Flash/GDE/the one the Gnome crew has, etc. ... From: "JesterXL"...
7452 Chris Phillips
mhccgrad1 Offline Send Email
Jan 1, 2005
8:13 pm
Ok, Will do. Thank you so much! Like I said I'm trying really hard to learn, but all of this OO stuff is new to me. Now that you explained it, I get it. Chris...
7453 JesterXL
flexxl Offline Send Email
Jan 2, 2005
5:35 am
FINALLY, I can repeat this bug... took me all frikin' day, but I got it. If I do: a =Alert.show And later do: a.deletePopUp(); The background doesn't get...
7454 JesterXL
flexxl Offline Send Email
Jan 2, 2005
6:54 am
Update: The ghost background rect is residing at a negative depth f -52874, so it's no wonder any removeMovieClip would fail pathetically. However, if I bring...
7455 Dan Plesse
empiricallys... Offline Send Email
Jan 2, 2005
8:52 am
I have object inspection question. They say you can do in Director. I am for something like a cfdump equivalent. So far I am importing some classes like this ...
7456 JesterXL
flexxl Offline Send Email
Jan 2, 2005
8:58 am
function showProps(o):Void { for(var p in o) { trace(p + ": " + o) } } showProps(this); showProps(mx.core.Application); etc. ... From: Dan Plesse To:...
7457 dplesse@...
empiricallys... Offline Send Email
Jan 2, 2005
9:20 am
I believe I got myConnection: [object Object] // or more objects rosterItems: [object Object] // are these methods? I used showProps(roster); Is there a to...
7458 Matt Chotin
m_chotin Offline Send Email
Jan 2, 2005
3:26 pm
Check out some of the utils in the extras folder, one of them should help you out. ... From: dplesse@... [mailto:dplesse@...] Sent: Sunday,...
7459 Matt Chotin
m_chotin Offline Send Email
Jan 2, 2005
3:33 pm
Have you tried calling deletePopUp in a doLater? This has been a known issue that I thought we had worked out but maybe we still needed some workarounds in...
7460 Matt Chotin
m_chotin Offline Send Email
Jan 2, 2005
3:46 pm
Well, the validateCombo method in the change handler isn't doing anything because you haven't passed any parameters through. But that's fine, you shouldn't...
7461 JesterXL
flexxl Offline Send Email
Jan 2, 2005
4:09 pm
What the heck!? That fixes it. But, what is doLater doing that waiting 2 seconds is not? I don't understand how shoving something into a methodTable, and...
7462 Chris Phillips
mhccgrad1 Offline Send Email
Jan 2, 2005
5:12 pm
Please checkout Christoph's Simple Object Inspector. http://coenraets.com/index.jsp ... -- Chris Phillips www.dealerpeak.com Senior Application Developer...
7463 dplesse@...
empiricallys... Offline Send Email
Jan 2, 2005
7:06 pm
Yes I think that's it. Also "Object-Oriented Programming with ActionScript 2.0", (in chapter 17) called "Building a Dump Class" "One limitation of the trace...
7464 Manish Jethani
manish_jethani Offline Send Email
Jan 2, 2005
7:53 pm
... BTW, I should mention that, as of the current version, Application.alert() simply does the same thing as Alert.show(), so you wouldn't be any better off...
7465 JesterXL
flexxl Offline Send Email
Jan 2, 2005
8:08 pm
Ok, I've tried: dialogue_lb.vPosition = dialogue_lb.maxVPostion; dialogue_lb.vPosition = dialogue_lb.vPosition + 100; dialogue_lb.selectedIndex =...
7466 JesterXL
flexxl Offline Send Email
Jan 3, 2005
12:12 am
Sup ladies. This is what I spent my vacation doing. It's a Tic Tac Toe game using Flex, Flashcom, & Central. I've included to the source which includes the...
7467 Wilfred LEUNG
wleung@... Send Email
Jan 3, 2005
3:52 am
Hi I have a canvas with width and height set to 100% of the parent container, for example. And I would like to get the actual width and height of the canvas in...
7468 Manish Jethani
manish_jethani Offline Send Email
Jan 3, 2005
5:28 am
... <?xml version="1.0"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*"> <mx:List id="myList" rowCount="3"> <mx:dataProvider> ...
7469 Manish Jethani
manish_jethani Offline Send Email
Jan 3, 2005
5:37 am
... You can use the `width` and `height` properties of the canvas. See this example: <?xml version="1.0"?> <mx:Application...
7470 JesterXL
flexxl Offline Send Email
Jan 3, 2005
6:35 am
Must by my cell renderers then. If use an interval it works, but not with doLater, or an imediate change of vPosition. ... From: "Manish Jethani"...
7471 Balsemin Devis
devis_balsemin Offline Send Email
Jan 3, 2005
1:39 pm
Hi, i have a java pojo like this ... private String cdc_art; private Vector taglie; private Vector qty; ...... My vector taglie contains "dressed size". (.. xl...
7472 r0main
isitmusic_com Offline Send Email
Jan 3, 2005
3:32 pm
hi, do I clearly understand that, from a Flex perspective: "taglie" is an Array that should fill a DataGrid columnHeaders (so if you have 3 rows of data you'll...
7473 Robert Brueckmann
rbrueckmann78 Offline Send Email
Jan 3, 2005
3:36 pm
I know there exists a workaround for this by launching an external JSP to upload your file...and I'm using said workaround but I was just curious, from the...
7474 Balsemin Devis
devis_balsemin Offline Send Email
Jan 3, 2005
4:02 pm
hi yes it's ok i have one vector/array for dataHeader and one vector/array for row in the same DataGrid. The vector taglie fill only column for examples: S M...
Messages 7445 - 7474 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help