Search the web
Sign In
New User? Sign Up
flexcoders · RIA Development with Adobe Flex
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7445 - 7474 of 149588   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7445
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"...
Robert Stuttaford
robert@...
Send Email
Jan 1, 2005
9:41 am
7446
... 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....
Martijn de Visser
mdvisser
Offline Send Email
Jan 1, 2005
1:32 pm
7447
22 Seconds On Sat, 01 Jan 2005 14:32:00 +0100, Martijn de Visser...
dave buhler
pedalspeed1
Offline Send Email
Jan 1, 2005
5:38 pm
7448
10 Seconds Athlon XP 2700 512 MB MOTHERBOARD ASUS A7N8X-X Windows XP SP2 Regards, Vitor. ... From: "dave buhler" <pedalspeed@...> To:...
Vitor Oliveira
vitormil@...
Send Email
Jan 1, 2005
6:00 pm
7449
Is there any way to dismiss an Alert via code? It turns a #, not a mc reference like PopUpManager does. ???...
JesterXL
flexxl
Offline Send Email
Jan 1, 2005
7:21 pm
7450
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...
JesterXL
flexxl
Offline Send Email
Jan 1, 2005
7:43 pm
7451
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"...
JesterXL
flexxl
Offline Send Email
Jan 1, 2005
7:48 pm
7452
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...
Chris Phillips
mhccgrad1
Offline Send Email
Jan 1, 2005
8:13 pm
7453
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...
JesterXL
flexxl
Offline Send Email
Jan 2, 2005
5:35 am
7454
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...
JesterXL
flexxl
Offline Send Email
Jan 2, 2005
6:54 am
7455
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 ...
Dan Plesse
empiricallys...
Offline Send Email
Jan 2, 2005
8:52 am
7456
function showProps(o):Void { for(var p in o) { trace(p + ": " + o) } } showProps(this); showProps(mx.core.Application); etc. ... From: Dan Plesse To:...
JesterXL
flexxl
Offline Send Email
Jan 2, 2005
8:58 am
7457
I believe I got myConnection: [object Object] // or more objects rosterItems: [object Object] // are these methods? I used showProps(roster); Is there a to...
dplesse@...
empiricallys...
Offline Send Email
Jan 2, 2005
9:20 am
7458
Check out some of the utils in the extras folder, one of them should help you out. ... From: dplesse@... [mailto:dplesse@...] Sent: Sunday,...
Matt Chotin
m_chotin
Offline Send Email
Jan 2, 2005
3:26 pm
7459
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...
Matt Chotin
m_chotin
Offline Send Email
Jan 2, 2005
3:33 pm
7460
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...
Matt Chotin
m_chotin
Offline Send Email
Jan 2, 2005
3:46 pm
7461
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...
JesterXL
flexxl
Offline Send Email
Jan 2, 2005
4:09 pm
7462
Please checkout Christoph's Simple Object Inspector. http://coenraets.com/index.jsp ... -- Chris Phillips www.dealerpeak.com Senior Application Developer...
Chris Phillips
mhccgrad1
Offline Send Email
Jan 2, 2005
5:12 pm
7463
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...
dplesse@...
empiricallys...
Offline Send Email
Jan 2, 2005
7:06 pm
7464
... 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...
Manish Jethani
manish_jethani
Offline Send Email
Jan 2, 2005
7:53 pm
7465
Ok, I've tried: dialogue_lb.vPosition = dialogue_lb.maxVPostion; dialogue_lb.vPosition = dialogue_lb.vPosition + 100; dialogue_lb.selectedIndex =...
JesterXL
flexxl
Offline Send Email
Jan 2, 2005
8:08 pm
7466
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...
JesterXL
flexxl
Offline Send Email
Jan 3, 2005
12:12 am
7467
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...
Wilfred LEUNG
wleung@...
Send Email
Jan 3, 2005
3:52 am
7468
... <?xml version="1.0"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml" xmlns="*"> <mx:List id="myList" rowCount="3"> <mx:dataProvider> ...
Manish Jethani
manish_jethani
Offline Send Email
Jan 3, 2005
5:28 am
7469
... You can use the `width` and `height` properties of the canvas. See this example: <?xml version="1.0"?> <mx:Application...
Manish Jethani
manish_jethani
Offline Send Email
Jan 3, 2005
5:37 am
7470
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"...
JesterXL
flexxl
Offline Send Email
Jan 3, 2005
6:35 am
7471
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...
Balsemin Devis
devis_balsemin
Offline Send Email
Jan 3, 2005
1:39 pm
7472
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...
r0main
isitmusic_com
Offline Send Email
Jan 3, 2005
3:32 pm
7473
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...
Robert Brueckmann
rbrueckmann78
Offline Send Email
Jan 3, 2005
3:36 pm
7474
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...
Balsemin Devis
devis_balsemin
Offline Send Email
Jan 3, 2005
4:02 pm
Messages 7445 - 7474 of 149588   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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