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 1622 - 1651 of 165211   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1622 Allen Manning
al_manning Offline Send Email
Jul 1, 2004
8:59 am
Stacy : "I've built RIAs in flash since mx beta. Flex development blows the doors off in regards to sheer development speed and in my opinion, look and ...
1623 Owen van Dijk
owenvandijk Offline Send Email
Jul 1, 2004
9:07 am
** Flex is 100% dead on. Much better than working with AS2 directly and the Flash IDE. I wish this ** came out about a year ago. Don't agree. Again it...
1624 Varun Jain
itsurvarun Offline Send Email
Jul 1, 2004
10:42 am
I have the following Requirement: There ia a Panel whcich contains a ControlBar which is dynamically populated with Buttons. Inside the panel a Tab Navigator...
1625 David Mendels
dmendels@... Send Email
Jul 1, 2004
11:17 am
Hi, "Is this implying that Flex will eventually be going head-to-head with Avalon? " Not really. I am sure there will be use cases where the two are compared...
1626 Kelly Evans
kaptainkettl... Offline Send Email
Jul 1, 2004
12:56 pm
Here's a simple example that you can build on. app.mxml <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"> ...
1627 Kelly Evans
kaptainkettl... Offline Send Email
Jul 1, 2004
1:55 pm
Is there a way to wrap text in a datagrid? Currently I have a String that is longer then the length of my column width and the string gets truncated. I want...
1628 Mark Benton
mbenton2001 Offline Send Email
Jul 1, 2004
2:05 pm
Is there a way to wrap the column heading in a datagrid? I have a multiple word heading that is wider than I need the column. Such as Order Qty. I want the...
1629 Bianca Hope
biancahope2001 Offline Send Email
Jul 1, 2004
2:34 pm
Hi Allen Thanks for your message, my datagrid is linked to the results of the web service, <mx:DataGrid id="orderlist" ...
1630 Rich Tretola
rtretola@... Send Email
Jul 1, 2004
3:58 pm
OK the following works fine when using onFocusOut, now what if I want to add a button at the end of the reapeater(outside the loop) and read all of the values...
1631 Wade Picket
zephyros_cn Offline Send Email
Jul 1, 2004
5:30 pm
Does anyone know if Flex includes a license to serve mp3 like the Flash Communication Server provides?...
1632 Tracy Spratt
nts333rd Offline Send Email
Jul 1, 2004
5:37 pm
Hello, Bianca. This is what I think you will need to do: Create a variable of type Array: var aAllData:Array = new Array();. Create a callback function that...
1633 Susan Chang
soozyqtpie Offline Send Email
Jul 1, 2004
6:31 pm
Hi Kelly! There is currently no built-in way to wrap text in a DataGrid. The workarounds are making your own cellrenderer or you can check out the Expansion in...
1634 Wade Picket
zephyros_cn Offline Send Email
Jul 1, 2004
6:42 pm
I have an asp.net web service I was previously accessing through Flash, but trying to use it for flex I can't get past the "URL is not in the proxy's...
1635 Ronald Kinion
cougron Offline Send Email
Jul 1, 2004
6:51 pm
It's not too hard to create a cellrenderer for this, though getting it to work right and nice is harder. Also, all rows in a datagrid must currently be the...
1636 Elliot Winard
ewinard@... Send Email
Jul 1, 2004
6:52 pm
That's not a 'named' WebService. Try putting URLs in the unnamed section. -e ... From: Wade Picket [mailto:wadeontheweb@...] Sent: Thursday, July 01,...
1637 Cathy Murphy
cathy2476 Offline Send Email
Jul 1, 2004
6:53 pm
Since you've specified you web service as a named service isn flex-config.xml, you should access as a named service in mxml. <mx:WebService id="dm"...
1638 Deepa Subramaniam
dsubrama@... Send Email
Jul 1, 2004
6:57 pm
Hi Mark - This functionality is something we're working on making easier in future releases, however currently you have 2 options. One is to create a custom...
1639 sbyrne_dorado Offline Send Email Jul 1, 2004
7:22 pm
Is there a way to programmatically enable/disable the gathering of profile data? What I'm looking for is the ability to profile just a specific portion of the...
1640 Kelly Evans
kaptainkettl... Offline Send Email
Jul 1, 2004
8:47 pm
Great!! Thanks Susan. Kelly Evans Programmer/Developer 7 Ticks, Inc. Phone: (312) 880-0209 ext. 1004 Cell: (312) 371-3394 E-mail: kevans@... _____ From:...
1641 Matt Chotin
m_chotin Offline Send Email
Jul 1, 2004
9:34 pm
_global.profile(true) _global.profile(false). Check out the profiling chapter in the docs, it should talk about setting up mm.cfg correctly and using this...
1642 Matt Chotin
m_chotin Offline Send Email
Jul 1, 2004
10:44 pm
<mx:Script> function getTexts() : Array { var out : Array = new Array(); for (var i = 0; I < ti.length; ++i) { out.push(ti[i].text); } return out; } ...
1643 antexorista Offline Send Email Jul 2, 2004
1:11 am
Thanks-that worked except for one thing; the setToPointer function in the application no longer recieves the event object as an argument. here is what i did: ...
1644 Matt Chotin
m_chotin Offline Send Email
Jul 2, 2004
1:14 am
You still need to pass it yourself: mx.core.Application.application.setToPointer(event) Matt ... From: antexorista [mailto:antexorista@...] Sent:...
1645 dimitar71 Offline Send Email Jul 2, 2004
4:30 am
I want to do a simple MP3 player using the MediaDisplay (md_MP3) and MediaController (mc_MP3), as well as a click button (btn) and <mx:List> (lst_MP3) to load...
1646 maelstrom@... Send Email Jul 2, 2004
5:24 am
Hi all, Although it is quite evident that this discussion group is around coding (hence "flexcoders") I just wanted to convey my opinions on the flex pricing ...
1647 Vinny Timmermans
vinny_timmer... Offline Send Email
Jul 2, 2004
9:03 am
Hi, I am returning a Person object from a createPerson method on a personfacade.cfc ( <cfreturn getManager().createPerson(ARGUMENTS.data).getInstanceMemento()...
1648 Stacy Young
xoconnick Offline Send Email
Jul 2, 2004
5:37 pm
I haven't a clue as to what MM's plans are but I'd be willing to bet the intent was to purposely limit the scope of the 1.0 release to maintain focus. Then...
1649 pnellesen Offline Send Email Jul 2, 2004
8:40 pm
Ok, I have a similar but I think different problem: I have a popup window that comes up automatically when the application starts (a login window). I want to...
1650 Steven Webster
swebsteratit... Offline Send Email
Jul 2, 2004
8:50 pm
Pat, ... A general technique that we are using, is to have a component, State.mxml, in which we place all our application state; we instantiate State.mxml from...
1651 Clint Modien
johny_bravo_78 Offline Send Email
Jul 2, 2004
10:39 pm
var loginWindow = mx.managers.PopUpManager.createPopUp(myParent, WhatToPopUp, modalOrNot,initObject); loginWindow.variableBoundToTextBoxText = "any text goes...
Messages 1622 - 1651 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