I m new to Flex, could you elaborate more on what you mean by "right steps".Igor Costa <[EMAIL PROTECTED]> wrote:
Well, following the right steps to write your mxml code will generatefor any version2005/7/27, priya_uvce <[EMAIL PROTECTED]>:> We are using Flex 1.5, which will be accessing.NET as
Hi, I ran through your code.
Looks like you have not quite understood the concept of using mx:Canvas.
Also I found that your layout is in total disarray!
Use these guidelines for basic layout.
1. You use mx:HBox to layout components horizontally.
2. Use mx:VBox to layout components vertical
This is undocumented so buyer-beware: tabNav['tabBar'].getChildAt(1).enabled=false"
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pilby1
Sent: Wednesday, July 27, 2005
3:17 PM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Is there a
w
Not really, it’s a servlet.
Make sure you have FlexErrorServlet entries in your web.xml, maybe you merged
web.xml and didn’t copy everything over? Check the web.xml that
comes with flex.war and see if all the error entries are in your server’s
version.
Matt
From: flexcod
HTTPService isn’t really meant to be
used in AS though I think it will work (it’s not supported). In
your case you need to be adding event listeners, not assigning.
Service.addEventListener(“result”,
function(event):Void
{
mx.core.Application.application.debug.text += "OK
Yep, I'm the one that keeps your page views and uniques at a consistent
level! :o)
Rey...
Scott Barnes wrote:
> On 7/27/05, Rey Bango <[EMAIL PROTECTED]> wrote:
>
>>BTW, I love your blog bud. You post some very good articles. Everytime I
>>read it, it makes me want to dump CF, spark up FlexBuil
Yes,
using object.watch(prop, callback [, user data])
On 7/28/05, Archibald Scatflinger <[EMAIL PROTECTED]> wrote:
> I have a custom component and I want to make it so that when one of
> its properties is changed by an external source then it triggers one
> of the components methods.
>
> I rea
I have 3 editable combo boxes in a panel and when an item is selected,
nothing appears in the text box. When an item is selected a second
time, it works properly.
Is this just a quirk of the Editable combobox or is this a bug?
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flex
I have a custom component and I want to make it so that when one of
its properties is changed by an external source then it triggers one
of the components methods.
I realize that this is probably really simple and I am just missing
something but everything I have tried has either produced errors o
There is two ways to do this.
One is documented and the other is not (it may not work in future
versions)
The documented way is to use a TabBar with a ViewStack instead of a
TabNavigator.
That way you can access the children of the TabBar and enable or
disable them individually.
The other way i
Hello Jeff,
Check out the DynamicFormItem component from the I2 Flex book - databind
visible to an expression. It's great, we us it all of the time.
Hope this helps,
Allen
www.prismix.com/
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Jeff
// Disable Tab2
tabNav.getChildAt(1).enabled = false;;
// Disable Tab3
tabNav.getChildAt(2).enabled = false;;
Should do the trick?
On 7/28/05, pilby1 <[EMAIL PROTECTED]> wrote:
> If I had this:
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> Is
On 7/27/05, Rey Bango <[EMAIL PROTECTED]> wrote:
> BTW, I love your blog bud. You post some very good articles. Everytime I
> read it, it makes me want to dump CF, spark up FlexBuilder and get knee
> deep in Flex. :o)
So you're the one! (reading the blog, always wondered who you were
ehhehe). Than
On 7/28/05, John Dowdell <[EMAIL PROTECTED]> wrote:
> Scott Barnes wrote:
> > wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)...
> I'm guessing "w" stands for "where" this time... otherwise I'm off-track
> in the following reply ;-)
yes, w = where and don't ask what
If I had this:
Is there a way I could selectively disable only Tab 2 and Tab 3?
Thanks.
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archi
I think a good way to avoid many recoding whould be to use a
serviceLocator like Cairngorm does.
It's a perfect way to avoid to much code rewriting.
João Fernandes
--- In flexcoders@yahoogroups.com, "priya_uvce" <[EMAIL PROTECTED]> wrote:
> We are using Flex 1.5, which will be accessing.NET
On 7/27/05, jwc_wensan <[EMAIL PROTECTED]> wrote:
> Dave:
>
> I had talked to MM several times, but know one mentioned this
> document.
>
> I greatly appreciate you letting me know about it.
>
Not a problem. From their site, it was only posted on 7/25, so that
might be why they never told you/k
http://weblogs.macromedia.com/mc/archives/FlexStyleExplorer.html
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
You're probably binding it's visible property to another's property, and
hosting them in a container.
If so, say a VBox, then just additionally start them out with widht and
height values of 0; then when they are made visible, have their width and
height return to default values as well.
Upon
We've got a project that has the following behavior. When a particular
form item is answered a certain way, another form item should "turn on"
on the page. A common example is choosing "Other" in a radio group
turns on a text box for inputting what "Other" is.
Right now, we've got ActionScript t
I
thought this would do it but I'm still getting the same problem. I have
one canvas tag that wraps all my other code. I'm scratching my head on
this one...
If you
could take a second look, I've included the modified code
below:
Also,
a general layout question. Is it good practi
Dave:
I had talked to MM several times, but know one mentioned this
document.
I greatly appreciate you letting me know about it.
Thanks,
Jack
--- In flexcoders@yahoogroups.com, Dave Carabetta <[EMAIL PROTECTED]>
wrote:
> On 7/20/05, jwc_wensan <[EMAIL PROTECTED]> wrote:
> > To All:
> >
> > Y
The key to overlay is using mx:Canvas and putting the containers inside
the canvas.
You can then set the visibility of each of those containers.
Sree
coldfs wrote:
> Hi,
>
> I have a vertical container that I need to overlay all other panels
> upon the click of a button. I used the code in the
Hi,
I have a vertical container that I need to overlay all other panels
upon the click of a button. I used the code in the Flex explorer and
got everything working except the ability for the container to
overlay my other panels. Is there an attribute or other trick to
doing this.
Thank you,
Well, following the right steps to write your mxml code will generate
for any version
2005/7/27, priya_uvce <[EMAIL PROTECTED]>:
> We are using Flex 1.5, which will be accessing.NET assemblies through
> Flash Remoting.
> The macromedia site says that Flex 2.0 will do away with Flash Remoting
> for
Oddly, when I change the contextroot param to /ewn or ewn, the
remote object call does not work in any browser.
Peter Farland wrote:
>Have you tried changing your contextroot commandline param to be "/ewn"?
>I know this doesn't immediately explain why this works on Netscape, but
>perhaps th
On 7/20/05, jwc_wensan <[EMAIL PROTECTED]> wrote:
> To All:
>
> Yesterday I made a post regarding trying to determine how many users
> a single server with one CPU could handle. I realize "it depends"
> and I did not define any type of application.
>
> I am trying to get some type of handle on w
Hi folks,
I have a problem using a Flex RemoteObject cfc with Internet Explorer.
The Flex app works fine with Firefox and Netscape browsers.
The problem appeared when I started using mxmlc to compile the flex
app. We plan to deploy "flexless", using none of the flex services
like proxies. (We ha
Hi John. With the big push that MM is giving Flex and the amount of
investment, both in personal time and financially, that these folks are
making on this Yahoo group, I think it would behoove MM to really look
into embracing this Yahoo group and rewarding some of the folks on here
with inclusi
Scott Barnes wrote:
> wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)...
I'm guessing "w" stands for "where" this time... otherwise I'm off-track
in the following reply ;-)
Rey had the main point -- Team Macromedia is oriented around the
Macromedia newsgroups and
Dirk, thanks for the suggestion - but still no luck. Same problem: sound
plays, no onSoundComplete execution. Were you able to get this to work?
Here's my revised code:
function startSound(currentSound)
{
feedback.text += currentSound+" playin
Hi,
I have the code as:
var service = new HTTPService();
service.url = ;
service.request= {path:path, domain:Util.getDomain(),
recur:"n"};
service.showBusyCursor = true;
service.resultFormat = "text";
service.result = function(event):Void {
Philippe,
A different approach is always to be welcomed, I'd been looking for a
solution within Flex, but what you describe is a solution to be
implemented both in Flex and Java. Now that you mention it, it seems
obvious. Thanks
Andrew
--- In flexcoders@yahoogroups.com, "Philippe Maegerman" <[EM
There's still a scoping problem. Try this:
function startSound(currentSound) {
feedback.text += currentSound+" playing now";
glow.alpha = 100;
var snd:Sound = new Sound();
snd.attachSound(currentSound);
snd.onSoundComplete = mx.utils.Delegate.create(this, soundStopped);
snd.start();
}
Scott, being a former member of Team Allaire, I can tell you that the
big thing that MM will look for is participation in their site forums.
Not having checked the MM forums for Flex, I'm not sure how active you
are on them but if you're not, you should get more involved on them. If
you are, th
Hehe, yeah I agree. I've tried email them twice but no response. Any
MM folk have some thoughts on this?
"Go Team!" - Flex that is ;)
Cheers,
Andrew Spaulding
www.flexdaddy.info
--- In flexcoders@yahoogroups.com, Scott Barnes <[EMAIL PROTECTED]> wrote:
> Just realised something,
>
> wtf is o
Matt - I made your modification in my code, and still have the same
problem: sound plays OK, but the onSoundComplete actions (trace and reset
alpha) never take place.
Here's the modified code:
function startSound(currentSound)
{
feedback.text
We are using Flex 1.5, which will be accessing.NET assemblies through
Flash Remoting.
The macromedia site says that Flex 2.0 will do away with Flash Remoting
for .NET.
How should we design our application so that they are minimal changes
while migrating from Flex 1.5 to Flex 2.0
--
Flexcoder
Just realised something,
wtf is our "FLEX" Team Macromedia :) (ie noice no FLEX team macromedians)...
oh so flash and dreamweaver get them, but wheres our flex luv..isn't
our product worth more then the others combined?
hehe
--
Regards,
Scott Barnes
http://www.mossyblog.com
--
Flexcoders Mai
Good stuff...
-Original Message-
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Malcolm
Sent: 27 July 2005 02:17
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Using Value Objects & CFC's
Testify!
That sure did the trick. I have done the following
-- i
One remote call that returns the 4 Arrays or Structs
(objects) in a Struct or Array, onResult initialise the
controls?
Philippe
Maegerman
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of
greenfishinwaterSent: mercredi 27 juillet 2005
12:54To: flexcoders@yahoogr
I have a flex app that draws a chart, from data in a DB. The data set
retrieved is determined by 4 seperate parameters, such as start month,
warehouse. The possible values for these 4 parameters are retrieved
from the same DB.
So before the chart is drawn, the 4 sets of parameter data are
retrieve
You can base it on the custom comboboxcellrenderer that Alistair did
on richinternetapps.(but obviously use a textinput instead of a
combobox)
http://www.richinternetapps.com/archives/cat_macromedia_flex.html
just another idea, have a vbox with two datagrids both with
showHeader=false...one be
It looks like i've offended you.
i apologize sincerely.
this group has been and still is very helpful to me. so i dont want
to offend anyone.
--- In flexcoders@yahoogroups.com, Sreejith Unnikrishnan <[EMAIL PROTECTED]>
wrote:
> Either one can read the mind or the mail :-)
> No point in asking
My flex server seems to be working fine, I have had no issues with that.
Is it possible to extract the error pages from an existing war file
and copy them to my flex server?
Andrew
--- In flexcoders@yahoogroups.com, "Matt Chotin" <[EMAIL PROTECTED]> wrote:
> Maybe you have a bad WAR? The custom
Thanks Philippe,
As I stated I tried what you did and for me it didn't work.
I almost flipped when I saw what you wrote and found my mistake.
To change the tab style I used:
setStyle('corner-radius',1);
instead of
setStyle('cornerRadius',1);
ho my, oh my,
This would have saved me a couple of hour
46 matches
Mail list logo