isk. It
could go away or behave differently in a future version of Flex.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Doug McCune
Sent: Wednesday, July 16, 2008 10:26 PM
To: flexcoders@yahoogroups
e available in Flash
Player 10.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of luvfotography
Sent: Thursday, July 17, 2008 12:44 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is source ava
The dispatchEventHook will only catch events dispatched by UIComponents.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh McDonald
Sent: Wednesday, July 16, 2008 9:34 PM
To: flexcoders
What did you see in the bug that made you think that this enhancement
was implemented? The bug is marked Deferred, which means it wasn't.
Would you like to submit a patch to implement it?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroup
Forget about the #/!bin/sh... that shouldn't be there because this
script gets 'source'd, not executed.
I think the problem is that when you installed Cygwin you didn't specify
the option to use DOS line endings.
Gordon Smith
Adobe Flex SDK Team
__
You're running in Cygwin, right?
If you put
#!/bin/sh
as the first line of setup.sh, does that make it work?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Sherif Abdou
Sent: Tu
The simplest digital clock would simply be a Label whose text is changed
every second by a Timer. To make it look more realistic, you can find a
digital clock font and embed that in your SWF.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders
Could you be specific about what you're doing?
Are you getting the Flex trunk from the Subversion repo? Or are you
downloading a prebuilt SDK? Are you on Windows, Mac, or Linux?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [m
You're not compiling against the right version of playerglobal.swc.
These are new classes in Player 10.
How are you compiling? Using the mxmlc command line tool in the Flex 4
SDK? Or trying to use the Flex 4 SDK with Flex Builder 3?
Gordon Smith
Adobe Flex SDK
Try using parentDocument instead of parent to go up the MXML hierarchy.
Or try "dotting down" from the Application instance:
Application.application.foo.bar.a.pubfunction().
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoo
least) the compc task just
doesn't work at all
That would be surprising if true since the SDK build scripts in the
Subversion trunk build all the SWCs using , and plenty of
developers are using these scripts on OS X. There is, however, a known
bug that isn't doing incremental c
community working on financial
applications to explain how they work around this limitation.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Vadim Melnik
Sent: Monday, July 14, 2008 9:17 AM
To: flex
Trying listening for FlexEvent.UPDATE_COMPLETE.
- Gordon
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of flexawesome
Sent: Monday, July 14, 2008 12:13 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: addEventListener for U
Josh, could you please file a bug for this at
http://bugs.adobe.com/flex/ ?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh McDonald
Sent: Sunday, July 13, 2008 9:33 PM
To: flexcoders
Label supports paddingLeft, paddingRight, paddingTop, and paddingBottom.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Alex Harui
Sent: Friday, July 11, 2008 4:00 PM
To: flexcoders@yahoogroups.com
Unfortunately, FP9 doesn't support setting the text selection color.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Corey Bray
Sent: Friday, July 11, 2008 2:37 PM
To: flexcoders@yahoogroup
But do you really need a setter reference? You can set a property by
name with code like
this["users"] = result as ArrayCollection;
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf
There is no way in AS3 to get a reference of type Function to a getter
or setter. What is your use case for needing such a reference?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Charlie Hubbard
You normally override commitProperties() when you want to be able to set
properties in any order and do something later after you know all their
values. To ensure that commitProperties() gets called, call
invalidateProperties() in the property setters.
Gordon Smith
Adobe Flex SDK Team
Try using \n instead of \r.
Also try seeing whether setting textField.condenseWhite to true or false
before setting textField.htmlText affects it.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of
> is there a way to get a complete list of available public classes from
the runtime?
Not through a simple API. You'd have to parse the SWF's DoABC2 block.
The SWF spec is here:
http://www.adobe.com/devnet/swf/
Gordon Smith
Adobe Flex SDK Team
If you were extending a Container like VBox, its updateDisplayList()
implementation would call setActualSize() on the children, taking their
percentWidth and percentHeight into account. But when you extend
UIComponent, you take on the responsibility for sizing your children.
Gordon Smith
It sounds like all you need is ToolTip styling, not ToolTip skinning.
Did you try
ToolTip { borderColor: blue; backgroundColor: yellow; color: red }
?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL
Show us what you're doing.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Clint Tredway
Sent: Tuesday, July 01, 2008 2:05 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Embedding
Sorry, I don't understand why you wouldn't simply localize the
"alignSymbol", "thousandsSeparatorTo", and "decimalSeparatorTo"
resources in the "SharedResources" bundle in order to get localized
currency formatting with Curren
What is the problem with bundling resources for each locale?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Richard Rodseth
Sent: Monday, June 30, 2008 4:44 PM
To: flexcoders@yahoogroups.com
What does "like a random function" mean? You're asking us to tell you
what is wrong with a createUUID() method but you don't show us the code
for it.
BTW, do you know about the createUID() method of the UIDUtil class in
the Flex framework?
Gordon Smith
I'm not very familiar with the chart classes, but setting the
labelFunction to null and then back again will probably make them
display the new locale.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
B
Try calling invalidateList() on the list-based component that you want
to update with the new locale.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Richard Rodseth
Sent: Friday, June 27, 2008 9:48
As far as I know, Adobe plans to follow the emerging Ecmascript 4
standard. We're unlikely to support covariant return types in
ActionScript unless ES4 has them.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT
Yes, StyleManager.NOT_A_ COLOR is 0x.
A uint is 32 bits.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Josh McDonald
Sent: Wednesday, June 25, 2008 4:33 PM
To: flexcoders
That's correct.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Amy
Sent: Wednesday, June 25, 2008 2:24 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: uint unset value
-
If you've typed _myColor as uint, it can't store either null or NaN. If
it needs to store null, make it Object. If it needs to store NaN, make
it Number.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
mention of the prototype property I could find
I'm curious what you're doing with the 'prototype' property. It's pretty
much vestigial at this point because AS3 uses class-based, rather than
prototype-based, inheritance.
Gordon Smith
Adobe Flex SDK Team
__
If you meant to say right-to-left language (like Arabic and Hebrew), the
answer is "Not properly".
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of twcrone70
Sent: Tuesday, June 24, 2008
Try calling validateNow() on the parent after changing the width of the
left child.
- Gordon
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of wwwpl
Sent: Monday, June 23, 2008 2:32 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoder
Please file a new bug then.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of I am Peter, not Lena
Sent: Monday, June 23, 2008 10:43 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re: Test
In MXML components you can simply use databinding expressions like
but in AS3 components you need to override resourcesChanged() -- which gets
called when the ResourceManager's localeChain changes -- and reset the label.
- Gordon
From: flexcod
ResourceManager's getString() method does parameter substitution. Its
signature is
public function getString(bundleName:String, resourceName:String,
parameters:Array = null,
locale:String = null):String
Gordon Smith
etadata on your declaration of the buildTitle() method, and arrange for
the class buildTitle() is in to redispatch the ResourceManager's
"change" events.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
var rb:ResourceBundle = new ResourceBundle(locale, bundleName);
rb.content[key1] = value1;
rb.content[key2] = value2;
...
resourceManager.addResourceBundle(rb);
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT
You want to learn about the ResourceManager class in Flex 3. It allows
you to simply change its localeChain property at runtime and have the
entire application redraw in a new language.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com
Yes. Imports in a superclass are not inherited by a subclass.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of learner
Sent: Thursday, June 19, 2008 4:54 AM
To: flexcoders@yahoogroups.com
Subject
ample,
inside some method, do
var textBox:TextBox = new TextBox();
textBox.foo = bar;
addChild(textBox);
textBoxes.push(textBox);
3. In any other method, you can refer to textBox[i] to get the ith one you
created.
Gordon Smith
From: flexcoders@
I'm having trouble following this because I don't understand why your
getter for itemLocation doesn't return what the setter set.
But, setting that aside, I suspect your binding problem is because your
setter isn't dispatching a binding event.
Gordon Smith
Why are you lost without eval()? What would you use it to do? Many developers
think they need it when they really don't; there are often other ways to
accomplish what they're trying to do.
Gordon Smith
Adobe Flex SDK Team
From:
> The font seems to have an emdash in Photoshop -- any idea why it's not
working in flex?
Sorry, I don't know why they'd behave differently.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTE
e two em-dashes.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of grimmwerks
Sent: Friday, June 13, 2008 1:28 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] mdash in line of text?
Thank
nt digits (6 or 7, I think)
and a smaller exponent range. AS3 doesn't have this 32-bit
floating-point type.
The IEEE Standard for Binary Floating-Point Arithmetic (IEEE 754)
defines the behavior of these datatypes, and modern microprocessors
implement them in hardware.
ou subtract a much larger value
like 1e+294 you'll start affecting the least significant digit.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Daniel Freiman
Sent: Friday, June 13, 2008 12:26 PM
In Unicode the em-dash is — or —.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of grimmwerks
Sent: Friday, June 13, 2008 11:57 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] mdash in line
x
every MXML document actually defines a class. Your 'for' loop belongs
inside some method, such as a handler for the 'initialize' event.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf
x27;s unusual for one of an arbitrary number of children to need to
access a single sibling. Are you sure you don't want to be doing
something like dispatching an event from one child that all the children
listen for?
Gordon Smith
Adobe Flex SDK Team
variables that point to them.
Can you clarify what you're really trying to do from a user's point of
view rather than from a programming point of view?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED]
ers much
larger than int.MAX_VALUE.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Daniel Freiman
Sent: Friday, June 06, 2008 2:10 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
What do you get when you trace out the folllowing values?
int.MAX_VALUE - 1290
Math.abs(int.MAX_VALUE - 1290)
int.MAX_VALUE - 1284
Math.abs(int.MAX_VALUE - 1284)
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL
What do you mean by "the actual object name"? The 'id' that you
specified in MXML?
And what object are you talking about? A component inside your item
renderer?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mai
Where are your resources coming from? Are you compiling them from
.properties files? Or linking against resource bundle SWCs? Where did
the SWCs come from? Were they compiled with Flex 2?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com
> Flex 3 however it does not.
How does it fail? When you put
backgroundColor: #FF
in CSS and execute
var backgroundColor:Number = getStyle("backgroundColor")
what value does this var get set to? It should be 16777215.
Gordon Smith
Adobe
Have you made a Hebrew app in Flash or Flex before? I don't think Player
9 properly supports right-to-left languages.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of David Kramer
Sent: Wedn
The constructor for the ResourceBundle class had no arguments in Flex 2
but two optional arguments were added in Flex 3. So it sounds like you
are somehow mixing Flex 2 and Flex 3 code.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com
Did you import the LoaderInfo class?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of flexawesome
Sent: Thursday, June 05, 2008 12:09 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Re
Can you post a minimal amount of code that reproduces the problem?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Venky999
Sent: Wednesday, June 04, 2008 9:50 PM
To: flexcoders@yahoogroups.com
s that are less attractive that the original device font.
Please file a bug at http://bugs.adobe.com/flex/.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of hawkfansixty
Sent: Wednesday, June 04, 2
the ith TextArea as
newTexts[i].text
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Tiago Santarosa
Sent: Tuesday, June 03, 2008 12:19 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders
> I think it would be better to use prefixes for your own namespaces and
none for MXML.
We're giving this serious consideration as a new convention for Flex 4.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL P
No. You can use startingIndex and count to specify just a range within a
dataProvider, but you have to have a dataProvider. Try
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Abu Hamdan
Huh? Why does it need to get set within the task? If an Ant script does
isn't compc going to run with FLEX_HOME set by the property tag? Isn't
each spawned build running in its own process with its own FLEX_HOME
property?
Gordon Smith
Adobe Fle
ass, regardless of locale, as determined by the manifest
file.
Another approach you might want to consider is having an English module,
a French module, etc. Each can have its own manifest file so that
in the English module could map to a different class than
in the French module.
Gordon Sm
Why would you want users in the U.S. to see more information (i.e., an
extended view) than users in France (who see a quick view)?
Why don't you want them to see the same information, either in English
or in French?
Gordon Smith
Adobe Flex SDK
I asked the Flash Player team, and one of the engineers told me that a
period is always interpreted as a decimal point, regardless of the OS
locale.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of
You can also just declare
public var testValue:String;
and access it from other components as
Application.application.testValue.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of yigit
Yes, setting FLEX_HOME in Ant is the best approach. For example, if you
look at the opensource code for the SDK, you'll see that our top-level
Ant script declares
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[
What is your declaration of _nav? The compiler apparently thinks it has
type Class, rather than the type of the class you've written.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of justSteve
Assuming that the class you're specifying in ClassReference lives in a
source file, make sure that the -source-path is such that it can be
found by the compiler.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROT
The Flex framework doesn't support multiline truncation. I don't know
there's third-party code to do this.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of ninobronzed
Sent: Thursday,
on of this class for English and one for French? If
so, they can't both be named com.SpecialViewCanvas if they're linked
into the same app.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of D
loaded with one HTTP request.
Of course, you could always write your own .properties parser in
ActionScript.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Durres76
Sent: Thursday, May 29
nager for
app configuration rather than for localization? For configuration, I'd
suggest using XML files to specify the UPD and BBS views and attributes.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf
Use an Array to keep track of the multiple instances:
private var loaders:Array = [];
...
loaders[i] = new SWFLoader();
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of flexawesome
Sent
flex-config.xml and app-config.xml are just ways of setting compilation
options for mxmlc. You can accomplish the same thing with command-line
options or (I think) options if you're using the Ant task.
Gordon Smith
Adobe Flex SDK Team
From: flexc
, May 28, 2008 12:48 PM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders] Re: UIComponents as Object keys and
Re-parenting
Heh heh, so it does. Long week. I think I read
Gordon Smith
*A*dobe F*lex* SDK Team
As Alex.
Thanks you, Gordon--please excuse my brain fatigue.
--
Maciek
heir location in the DisplayObject hierarchy, and
this changes when you reparent a UIComponent.
You probably want to use a Dictionary instead of an Object. A Dictionary
can store key/value pairs where the key can be an object and doesn't get
converted to a string.
Gordon S
Use for paragraphs of text. But there is no reason to use
for an Accordion pane if all you're going to put in it is
. You should just use instead.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Beha
I'd try the regular filter first and make sure it's really too slow
before trying anything else.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of EECOLOR
Sent: Wednesday, May 21, 2008
We don't recommend putting curly braces around the values of event
attributes like creationComplete... that makes it look like databinding
even though it isn't.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PRO
It's the rules of XML. An & character inside an attribute value is
expected to be the beginning of an XML "entity" like < or & or
{ . So if you want an ampersand character, you have to write it as
& .
Gordon Smith
Adobe Flex SDK Team
> The text input has 4 event triggers
Of its own. But it inherits lots and lots more from its superclasses. In
the Language and Components Reference, click the "Show Inherited Events"
link.
- Gordon
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTEC
to declare and initialize your 'rm' instance
variable. Your 'mycomp2' component already has a 'resourceManager'
property because it extends UIComponent.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto
I can't remember whether Flex 3 supports this, but if it does, I think the
bundle name would be "security.main".
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of
Leonardo Moreno
Se
It isn't up to Adobe to define how the Date class works. The Player
team's intention is to follow the Ecma-262 spec for this class. I
haven't checked what the spec has to say about this, but if the Player
isn't in compliance, that's a bug.
Gordon S
> is there allready a time shedule for the final release?
I don't think this has been announced. Normally it's quite a few months
between the first public beta and the final release.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@ya
value in the set of possible
values for each of these types.
But I would expect a var declared as
var u:uint;
to report itself via describeType() as a uint, just like int and Number
do. It seems like a bug that it doesn't.
Gordon Smith
Adobe Flex SDK Team
_
tor., etc. We'll be making use of this
in new APIs for Flex 4.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Marcus Engene
Sent: Thursday, May 15, 2008 12:16 AM
To: flexcoders@yahoog
I don't think the Player team has released any docs on the new APIs yet.
For now, they're mainly interested in developers using FP10 for
compatibility testing.
Gordon Smith
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behal
http://labs.adobe.com/technologies/flashplayer10/
Gordon Smith
Adobe Flex SDK Team
I'm pretty sure that you'll get selection problems if you don't have
unique data items.
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Maciek Sakrejda
Sent: Wednesday, May 14,
I don't think is possible. And wouldn't it be a security problem if it
was?
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Geoffrey
Sent: Wednesday, May 14, 2008 2:11 PM
To:
The popups aren't really the issue... the issue is, when you submit two
similar requests and get back two results, how do you know which result
goes with which result. Data services aren't my strong area, but I think
one answer is to use an AsyncToken.
Gordon Smith
Adobe Fle
ed towards getters/setters. Have you tried timing get foo() vs.
getFoo() yourself? (I haven't.)
Gordon Smith
Adobe Flex SDK Team
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Joseph Curtin
Sent: Wednesday, May 14, 2008 11:15 AM
301 - 400 of 1667 matches
Mail list logo