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...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 14304 - 14333 of 149578   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14304
I am sure there is an easy answer for this but I have tried a few things and not sure where to go from here. I have a list that is populated from an array in a...
wesflex73
Offline Send Email
May 1, 2005
10:47 am
14305
Heres a quick answer from my undercafineated brain <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> ...
Jeff Tapper
jefftappernyc
Online Now Send Email
May 1, 2005
11:46 am
14306
... Just change the line in the loop to: states.removeItemAt(delState[i]-i); Everytime you remove an item, all of the indexes need to be shifted left 1. If...
Darron J. Schall
darronschall
Offline Send Email
May 1, 2005
12:50 pm
14307
I am new to flex, i have the flex builder software and Jrun server, i installed jrun first and Flexbuilder next, but when i start the jrun server the...
dilsedil4u
Offline Send Email
May 1, 2005
2:18 pm
14308
Have you considered de-incrementing the loop? Take the last one first then the compression would not change the lesser values. I think this might be more...
david.aaron@...
zog_dev
Offline Send Email
May 1, 2005
3:30 pm
14309
The original message was received at 2005-05-01 11:34:42 -0500 from postoffice.local [10.0.0.1] ... <m.everett@...> ... <<< 550 5.1.1 unknown or...
m.everett@...
redletters07...
Offline Send Email
May 1, 2005
4:38 pm
14310
... If you're really worried about the efficiency you shouldn't use removeItemAt, but rather just call: states.splice( index, 1 ); That will delete a single...
Darron J. Schall
darronschall
Offline Send Email
May 1, 2005
5:24 pm
14311
Thanks all for your help. I went with the states.removeItemAt(delState[i]-i); solution since it was the quickest to implement. I did have to add...
Wes Leonardo
wesflex73
Offline Send Email
May 2, 2005
12:11 am
14312
When you say not all the changes percolate what do you mean? Calling invalidate() on a container should normally cause everything to update layout-wise. _____...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:25 am
14313
Have you checked the RestaurantFinder tutorial on Christophe's blog (http://www.coenraets.com/ <http://www.coenraets.com/> )? I'd start checking out your...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:34 am
14314
You're going to need to set up another system since every DataGrid is going to update to the last result that fired. <mx:Script> Function getProducts(propId,...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:39 am
14315
Yep, HTTPService supports event.call the same as RemoteObject. Matt _____ From: flexcoders@yahoogroups.com [mailto:jruud@...] Sent: Friday, April 29,...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:43 am
14316
What is the problem here? The DataGrid isn't as wide as you want? Set your width and height to 100% and maybe set your margins down to 0 if those extra ...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:44 am
14317
That's not going to return source though, it will end up compiling the application and returning the html wrapper for the swf. I think you should look into...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:46 am
14318
CSS is eventually translated into calls to setStyle so there isn't much of a difference there. Matt _____ From: flexcoders@yahoogroups.com...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:46 am
14319
Check out christophe's demo here: http://www.coenraets.com/viewarticle.jsp?articleId=90 <http://www.coenraets.com/viewarticle.jsp?articleId=90> Matt _____ ...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:47 am
14320
You can file a bug report here: http://www.macromedia.com/go/wish <http://www.macromedia.com/go/wish> . Most of these you can workaround by dropping into...
Matt Chotin
m_chotin
Online Now Send Email
May 2, 2005
3:49 am
14321
hai! I want some change to occur in a datagrid on double click of an image in the Tile.. The datagrid and the tile are in seperate Mxml files,they are...
nithya karthik
nithya_pbk
Offline Send Email
May 2, 2005
6:10 am
14322
hi, i am trying to create a menu dynamically using a xml file obtained from a web service. my code snippet looks some thing like this. <mx:WebService...
prasad
pv_rprasad
Offline Send Email
May 2, 2005
8:18 am
14323
Hi, Matt! What about the encoding topic? Known issue? ________________________________ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]...
Rick Bullotta
RBullotta
Offline Send Email
May 2, 2005
11:58 am
14324
Hi Matt, Oops, I lapsed. So, if I want to change styles dynamically, I can use StyleManager. And if I want to change styles without changing the source code, I...
Yokota Satoshi
sato-shi@...
Send Email
May 2, 2005
12:15 pm
14325
Hello, I'm using Cairngorm framework, and I use a lot of RemoteObjects. So, the flex-config.xml file is large in size. I really want to split up...
Yokota Satoshi
sato-shi@...
Send Email
May 2, 2005
12:24 pm
14326
Hi, if you open your Flex server's web.xml file you'll find an entry that configures the RemoteObject gateway. There you can define the location where the...
Dirk Eismann
richinternet_de
Offline Send Email
May 2, 2005
12:31 pm
14327
Hi everybody, I try to create a function allowing me to open all the branches of my tree. Problems i face with are : 1. I open only the first branch 2. The...
david_gal-reyniez
dgalregniez
Offline Send Email
May 2, 2005
1:02 pm
14328
Hi there, Try this : Var setUpURL= "mypage.cfm"; getURL("javascript:open('" + setUpURL + ...
Dzafer
dzafer_s
Offline Send Email
May 2, 2005
1:17 pm
14329
David - I put together a function for this a few months ago, hope this helps. function openTree(t:mx.controls.Tree) { var i:Number=0; ar...
Jeff Tapper
jefftappernyc
Online Now Send Email
May 2, 2005
1:29 pm
14330
Hi, it's possibile i call this TitleWindow, the ppv value is dispaly? Sorry, i wish that the value is "selected", in this way my end user write a new value...
b.devis@...
devis_balsemin
Offline Send Email
May 2, 2005
1:59 pm
14331
Hi all! I'm trying out the AdvancedTabNavigator and ran into some problems when using Cold Fusion I have AdvancedComponentSet-0_1.swc in my user_classes...
Rick Schmitty
flexcode@...
Send Email
May 2, 2005
2:25 pm
14332
Hello, I am trying to center my application, but can't seem to make it work. <?xml version="1.0" encoding="utf-8"?> <mx:Application...
David Terry
stridergax
Offline Send Email
May 2, 2005
3:16 pm
14333
If you just want to set the styles once when the application starts, using CSS is best practice; it's fast and it decouples the styles from the code so that...
Gordon Smith
gsmithsf
Online Now Send Email
May 2, 2005
3:29 pm
Messages 14304 - 14333 of 149578   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