Hi all,
In LiveDocs, its says that by setting subField within a
ValidationResult, it allows Flex to "highlight" the component.
I am not experiencing this behavior. Could someone help? I just want
the Validator to highlight the correct field.
I set up the fields to validate in an tag as such:
Share Project deals with the version control system such as CVS or
subversion. It uploads project on CVS or subversion.
--- In flexcoders@yahoogroups.com, "amigo_fd" <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> When you righclick on a Flex project name, you get the option Team >
> Share project.
>
I am trying to make this work in Flex 2 and looked at Nahuel's code.
However, I do not see in his example where he is using wrote:
>
> I need this to work in Flex 1.5, is there a similar way to get it to
> work? Basically I just need to know when the link was clicked or
> for that matter the m
I think you are looking for access and the ablity to customize the
Right Click Context menu, correct? If so check out this doc:
http://livedocs.macromedia.com/flex/2/langref/flash/ui/ContextMenuItem.html
Hope that helps!
James
--- In flexcoders@yahoogroups.com, "feel8335" <[EMAIL PROTECTED]> wr
I am trying to make this work in Flex 2 and looked at Nahuel's code.
However, I do not see in his example where he is using wrote:
>
> I need this to work in Flex 1.5, is there a similar way to get it to
> work? Basically I just need to know when the link was clicked or
> for that matter the m
I am trying to make this work in Flex 2 and looked at Nahuel's code.
However, I do not see in his example where he is using From what I can tell or tested, asfunction is no longer available in
Flex2?
Any help would be appreciated.
Thanks in advance,
ashish
--- In flexcoders@yahoogroups.com, "jg
Hi there,
I just wondering from the best practice point of view what would be the
best approach in a cairngorm application to call more than 40 different
operation in the same webservice.
Have a big delegate class with more than 40 different methods?
group them with some criteria and have 5 lit
Setting the fontFace property in html to
your embedded font doesn’t work for the Text. You have to set fontFamily="MyArial"
on the Text component. Once you do this, the rotate works fine. I don’t
think we have support right now for specifying different fonts for various
segments of the
Title: Re: [flexcoders] Can't view source code on Mac Martine's website
Sorry about that. It’s Beta code, so the Publish Source code changed as well.
I just made the source code directories browseable, so you should be able to go see all the source code now.
However, note that it is Beta code
Hi all,
I'm current
developing a Flex 2 app using Cairngorm and I'm not sure what the best practice
is for the following scenario:
I have a view
component that is nested inside the application, and it has a public function
that selects an item on a Tree (manually, instead of the user
The bytearray option is the best
function
clone(source:Object):*{ var myBA:ByteArray = new
ByteArray();
myBA.writeObject(source); myBA.position =
0;
return(myBA.readObject());}
This
will guarantee all nested Objects are not references.
slice() will copy the array but the obje
thanx allOn 9/13/06, Ashish Goyal <[EMAIL PROTECTED]> wrote:
You can just wrap your text or label
component in a container with backgroundColor set to desired color.
For eg:
text="Label1"/>
-Ashish
From:
flexcoders@yahoogroups.com [mailto:
f
Hi Joan,
I haven't been using the Rotate class, I've just been setting the
rotate property to += 90 (I just want a static rotation of text).
The following code demonstrates this. Click on the "Rotate HTML"
button and the text disappears - click 3 more times so it rotates
back to 0 degrees an
Thanks to all who replied. I'm sorry I'm only getting back now, but I
was away on business for a few days.
I was able to put the checkbox in a VBox in the itemRenderer (and
center it), but I lost any selected checks in the data because I only
had a reference to the data in the dataprovider. Once
Thanks for your reply, however, I've already seen that solution. What
I'm looking for is a more explicit solution.
I have an array and want to copy it into another array.
THx
--- In flexcoders@yahoogroups.com, "bill_sahlas" <[EMAIL PROTECTED]> wrote:
>
>
> From the docs
>
>
> Cloning arrays
>
Say i'm using a data control like a tile list etc e.g.
in ItemTest we get the reference to the object via the data
property/variable, is there anyway to get the index of where this
object is in the collection?
cheers
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcode
I've been just messing around with how to do things through code. It seems adding a ControlBar to a panel in code doesn't do the same thing as it does in mxml.here is my mostly code example:MXML:http://www.adobe.com/2006/mxml" layout="vertical" creationComplete="initApp()">
import Co
use
myCopy = originalArray.slice()
--- In flexcoders@yahoogroups.com, "Daniel" <[EMAIL PROTECTED]> wrote:
>
> Good Day all!
>
> I need to clone or copy the content of an Array, not to keep reference
> to the array neither the to objects inside, a complete new array but
> with the s
keep getting "Timer could not be found" error when tyring to view your
source. Your custom tree item renderer is kind of like what I need
only I need the icon to appear at the end of the label. HELP!
Wayne
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/fle
Hi,I think what you are looking for is.function labelThingy(node:Object):void{ trace("my name is " + node.name()); trace("my id is " + [EMAIL PROTECTED]);}Peace, Mike
On 9/13/06, Clare Todd <[EMAIL PROTECTED]> wrote:
I have a tree that has some XML returned
Here are links to the Flex 2 docs that deal with exactly this situation! Check out Working with XML and in particular Traversing XML structures
--- In flexcoders@yahoogroups.com, "Clare Todd" <[EMAIL PROTECTED]> wrote:>> I have a tree that has some XML returned from an HTTP service as its data
Excellent! The add-no-cache-headers did the trick. Thank you!
--- In flexcoders@yahoogroups.com, "Kumaran Nallore" <[EMAIL PROTECTED]> wrote:
>
> If you are testing with self-signed certificates, ensure that the
> property is set to true in proxy-config.xml.
>
>
>
> Another thing to try is
Hi Olivier -
'baseAtZero' sets the minimum to zero (if your data are all >=0) or
the maximum to zero (if the data are < 0).
Choices for setting the axis range are
a) let the chart decide min and max;
b) set them yourself.
If you want to use baseAtZero="true" (with choice (a)), it will se
Excellent suggestion .. I did verify that a HTTPService could retrieve data from my server over SSL (both in IE and firefox). Unfortunately the problem seems to be limited to a SecureHTTPCHannel channel trying to connect to my DataService server in IE.I'm starting to think that this problem has
From the docs
Cloning arrays
The Array class has no built-in method for making copies of arrays. You can create a shallow copy of an array by calling either the concat() or slice() methods with no arguments. In a shallow copy, if the original array has elements that are objects, only the refer
Matt,
Thank you for the feedback.
I did setup the IE browser to accept the self-signed cert. by
installing the verisign trial root cert
(http://www.verisign.com/ssl/buy-ssl-certificates/free-ssl-certificate-trial/test-root-ca/index.html).
I verified that I can browse to the site without getti
have there any rightClick mouseEvent in Flex? if not, then how to
produce a right click event to provide more function , like rename a
display object, change color or set icon on there
THX~~! @@
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFA
You could add a parameter to the url. For example, if you want to
completely stop cacheing, you can add the current time to the url.
url = "test.swf?nocache=" + ( new Date().getTime() );
Cheers,
Ralf.
On 9/13/06, supertodda <[EMAIL PROTECTED]> wrote:
> I have a flex 2 app that calls some swf fil
Can you please post the code that is not working?
I tried to rotate Text, Label, and TextInput components that had htmlText and
an embedded fontFamily specified. The rotation seemed to work for me. I tried specifying
the fontFamily in the css and by using setStyle. These all worked, so
I have a flex 2 app that calls some swf files using the SWFLoader
component. I've noticed that although I have the following headers in
the web page that calls the parent movie, the child swfloader movies
are being cached in IE. Is there any way around this? I've noticed
some cache control stuff
I'm adapting Cairgorm 0.99 for Flash 8. I want to set up databinding on my ModelLocator, to update a view, and I'm wondering if anyone has done anything like this before?Currently, my model is emitting a 'change' event when properties are changed through getter / setters. I'm guessing I could se
I’m not 100% sure about this, but try the
updateComplete event.
Joan
From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Roman Protsiuk
Sent: Wednesday, September 13,
2006 1:41 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] TileBase
(Horizont
I have a tree that has some XML returned from an HTTP
service as its dataprovider The XML structure is essentially:
I'd like my labelFunction to be able to react to the different types of
things. In english it would do this:
Hey, I have an item!
Is this item a "redthing"? If so, ret
Sure, file away at http://www.adobe.com/go/wish.
Matt
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Samuel Colak
Sent: Wednesday, September 13,
2006 2:59 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Request for
flex modifica
I’ve forwarded. The main reason for
this setup is we didn’t think through the use-case fully and probably
would have implemented things differently had we considered it.
Matt
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of maxym.hryni
Something like this:
http://www.artificialcolors.com/experiments/mouseCaptureToFlash.html . This
is quite old though, but might give some ideas...
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flex
--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote:
>
> sorry i meant labelField="label"
>
> --- In flexcoders@yahoogroups.com, "bhaq1972" wrote:
> >
> > just a guess, in your repeater try
> >
> >
> > > dataProvider="{rpComboBox.currentItem.dataprovider}" />
> >
Andrew ,
Nick velloff is porting
XIFF (jivesoftware.org) to AS3. You can see a demo here:http://velloff.com/XIFF_AS3/XIFF_AS3_GUI.html
And get the beta from svn
here : http://svn.jivesoftware.org/svn/repos/xiff/branches/xiff_as3_flexlib_beta1/
João Fernandes
Thanks for the responses, how long does it usually take to implement a
hotfix?
We have been playing around with a datasource that has autocommit and
automerge set to false, but it appeared to be almost impossible to issue
merge() and commit() sequences without running into problems. Are there any
--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote:
>
> just a guess, in your repeater try
>
>
>dataProvider="{rpComboBox.currentItem.dataprovider}" />
>
Didn't work - just returned an empty combobox. Also, my labels and
data are different (data is an int I use
Good Day all!
I need to clone or copy the content of an Array, not to keep reference
to the array neither the to objects inside, a complete new array but
with the same source as the other.
Any ideas?
Thanks!.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/fle
I am in process of evaluating technology to be used for a large scale
transactional application
I invite your attension to following link
http://www.actionscript.com/Article/tabid/54/ArticleID/flash-insecurity/Default.aspx
I am evaluating using Flex + Cairngorm for a large e-governance product
sorry i meant labelField="label"
--- In flexcoders@yahoogroups.com, "bhaq1972" <[EMAIL PROTECTED]> wrote:
>
> just a guess, in your repeater try
>
>
>dataProvider="{rpComboBox.currentItem.dataprovider}" />
>
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcode
Not what you may be looking for but you might try converting the
entire cfquery into XML. I wrote this in CF to convert any query
into XML.
">
#xmlformat(v)#">
">
">
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/f
Hi Danny,Any word on an update? There are several issues that are not compatible with the full release. StringBuilder and flash.util are a few. I have corrected all the errors and warnings, however many of the tests are failing and if there is an imminent update I will wait on debugging the old
just a guess, in your repeater try
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups
Hey Tom can you expand on what you are saying about recompiling with a
services-config.xml.
I havn't tried using remote objects on my shared server becasue I
thought I needed to update a xml file at the root of the server.
Any infomation or links would be appreciated.
--- In flexcoders@yahoogro
I am wondering if there is a way for me to somehow catch when a user drags a
Flex object
outside the main app window so that I can take the object they have dragged out
and place it
in another app that is not Flex. Javascript prehaps?
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote:
> why don't you do a dump of the object in cf before it gets sent to
> flex.
as i said, already have. works fine in cf.
> do the following -
> for(var obj1:Object in returnedObject.layers)
> {
>trace(obj1, returnedObject.layers[obj1]);
> }
I'm creating a dynamic from via a repeater that creates ComboBoxes
surrounded in FormItems on the fly. My XML looks like the following:
label name
id name
true
{arrARRAY}
1
I convert the XML to an XMLList (based on combo), then this XMLList to
an XMLCollection, which I in
On Wednesday 13 September 2006 09:31, amigo_fd wrote:
> When you righclick on a Flex project name, you get the option Team >
> Share project.
>
> Any ideas how this works ? Do I have to setup a pserver (whatever that
You need to install a RCS server of some sort.
Subversion is popular and free, as
Hi,
Is there a use/possibility to use the double colon operator
( :: ) in Flex 2? Like in java, the namespace operator?
Anyone who could give me an example?
Thanks!
Jonas Windey
Web Developer
T. +32 3 216 86 47
Pixco Interactive Division
T. +32 3
Pete:
Two things to try...first: Try typing your array collection by doing this in your ModelLocator:
[ArrayElementType("com.xxx.xxx.model.ModuleVO")]public var modules:ArrayCollection;
Also, in your VO class, add this:
//assuming you have your VO named the same on the remote side...
[R
John:
I just put together a little tutorial on using .NET (with AMF0) with WebOrb.NET Standard (free) to pass typed custom classes back and forth, you can check it out here:
http://blog.shrefler.net/?p=6
Or, you can use JSON (both in flex and .net) with a .NET webService to serialize and d
can you post a simple sample that shows the property not working?
> -Original Message-
> From: flexcoders@yahoogroups.com
> [mailto:[EMAIL PROTECTED] On Behalf Of olivier
> Sent: Wednesday, September 13, 2006 5:11 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] criticla probl
Hello. I want to retrieve the column names from a webservice. I am
able to retrieve the data but I am not able to do so with the column
names. Can anyone help me out with this issue please.
Thanks.
Regards,
Anoop
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files
Anybody knows it.
I am suffered...
--- In flexcoders@yahoogroups.com, "hastyarkxu" <[EMAIL PROTECTED]>
wrote:
>
> Hi,
>
> But I have two thing that not very clear:
> 1. The component that always on top are not created by
SystemManger,
> it is the grandson of , how can I swap this instance
Would love some outside assistance on this issue I'm having. Further
information can be found on my blog entry:
http://blog.wrench.com.au/2006/09/06/flex-2-unit-converter-part-iii/
Thanks,
Jason
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Hi,
I am writing a flex app which needs to talk with npruntime plugin. For
these two to communicate JavaScript wrapper needs to be written. It is
making the application slow. Is there a mechanism so that flex and
npruntime plugin can talk directly?
Regards,
Gaurav
--
Flexcoders Mailing List
Hi,
Thanks for the prompt solution.
Thanks,
Anurag.
--- In flexcoders@yahoogroups.com, "Joan Lafferty" <[EMAIL PROTECTED]> wrote:
>
> Since your dataProvider has values of 'b', "i" and 'e", then, your
> ComboBox dataProvider should also have these values:
>
> array collection and now I have to
The best way to do this is to implement your JMS listener class as a
Java Servlet. You can then configure the servlet to startup upon
server startup (you can even configure the order of the startup).
Yes, you can use threads inside the Servlet.
--
Dave Wolf
Cynergy Systems, Inc.
Adobe Flex
Hi,
i have a datagrid with N column,
in this datagrid there's a column in the end that makes the sum of all
the other columns
this sum is made by the property labelFunction that calls out a
function created by me to sum the values in the columns
the cells are editable and when i change the val
Hello,
When you righclick on a Flex project name, you get the option Team >
Share project.
Any ideas how this works ? Do I have to setup a pserver (whatever that
may be ?!) ? Can this be done with a Windows Server ? Do I need extra
software for this ?
The Flex projects I'm working on, are on my
I'm attempting to sensibly set up a directory structure in FlexBuilder
for unit testing -- setting things up in a way analagous to my
AS2.0/ASUnit projects back in Eclipse doesn't seem possible. Can someone
point me in the right direction?
In the project root, I have a src folder and a tests fo
The SystemManager
(http://livedocs.macromedia.com/flex/2/langref/mx/managers/SystemManager.html)
itself is a DisplayObject.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.co
Hi, all.
Can anyone tell me how can I detect moment when HorizontalList has
rendered all of its items? I need to set selectedIndex after this
moment. If I set it before, the selection will be lost after
rendering.
R.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files
Sorry, I didn't express myself clearly.
This package is for Flickr Service API. Used to read,add&delete photos
in website: www.flickr.com
--- In flexcoders@yahoogroups.com, "hastyarkxu" <[EMAIL PROTECTED]> wrote:
>
> Hi all,
>
> I just found that there is no 'comments' related methods and
cl
On 9/13/06, niuscha.massoudi <[EMAIL PROTECTED]> wrote:
> I had the same Problem like Kyle. It works with the solution from
> Adam. But only in Firefox and not in IE. What is the Problem?
> I tried also , it doesn't
> work.
I use IE when I develop here at work and my solution works fine for
me. I
Matt,
is there anyway to request feature modifications to the library
components.
In particular the graphics object to include the setPixel and
getPixel functions?
Many thanks,
Samuel
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Ar
--- In flexcoders@yahoogroups.com, "Paul Hastings" <[EMAIL PROTECTED]>
wrote:
>
> On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote:
>
> > try this
> >
> > var xml1:XML = new XML(
>
> yes that works, at least it reports the 2 "root" nodes but as i said
> before, this stuff works inline fine. it's
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote:
> try this
>
> var xml1:XML = new XML(
yes that works, at least it reports the 2 "root" nodes but as i said
before, this stuff works inline fine. it's coming over from cf that's
killing me.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/
try this
var xml1:XML = new XML(
Has anyone successfully done so? I found this blog (here: http://weblogs.asp.net/soever/archive/2005/10/29/428902.aspx) that showed how he did it with the mx:operation but I want to pass MyFunction(MyClassObject) and have it do what it needs to do.
Any ideas?-- John C. Bland IIChief DeveloperKat
Hi,
I've a critical problem when I want to code in actionscript a chart
with a linearxis. Indeed, all propertie can be set but the baseAtZero
doesn' t work properly. It computes the maximum value but the minimum
value is always 0. I've tried with several different series without any
success.
On 9/13/06, bhaq1972 <[EMAIL PROTECTED]> wrote:
> the 'layers' property is the bit you're interested in. Its well
> formed xml correct? so what happens when you do
yup. i can dump it out in cf & use that xml inline w/the Tree as
> var xml1:XML = new XML(yourReturnedObject.layers);
more or les
Thanks, Matt.
Now I got it, but
// we can't
// reference the WatcherSetupUtil class in the component, because the
// WatcherSetupUtil can't be generated until after the component
class is
// done compiling.
Can you ask Paul why he didn't use reflections to reference
WatcherSetupUtil??? It looks
the 'layers' property is the bit you're interested in. Its well
formed xml correct? so what happens when you do
var xml1:XML = new XML(yourReturnedObject.layers);
can u show a brief structure of this xml.
--- In flexcoders@yahoogroups.com, "Paul Hastings"
<[EMAIL PROTECTED]> wrote:
>
> On 9/1
Ha, there is a MOUSE_LEAVE event for that. I just learned it from a friend of mine. Cheers,Ralf. On 9/5/06, Frias, Roberto <
[EMAIL PROTECTED]> wrote:
Have you ever use
_javascript_ to achieve this kind of issues?, I'll try to look for it in
internet, but I'd think that's not po
Hi Mike,
The tabs of a TabNavigator are Buttons inside a TabBar. Because
they are buttons, the borderStyle isn't a supported style. However,
like other buttons, you can individually skin them with images (see
docs) or apply supported button styles like this:
myTabNavigator.getTabAt(0).setSty
79 matches
Mail list logo