--- Begin Message ---
There are 17 messages in this issue.
Topics in this digest:
1. Re: Re: Custom Progress Bar
From: "Ketan R Bengali" <[EMAIL PROTECTED]>
2. Re: Custom Progress Bar
From: Manish Jethani <[EMAIL PROTECTED]>
3. Multiple Remote Objects
From: Rich Tretola <[EMAIL PROTECTED]>
4. RE: Multiple Remote Objects
From: "Steven Webster" <[EMAIL PROTECTED]>
5. Re: Multiple Remote Objects
From: Rich Tretola <[EMAIL PROTECTED]>
6. datagrid cell styling
From: Tom Fitzpatrick <[EMAIL PROTECTED]>
7. Re: Bizzare - Flex app crashes on Windows player 7,0,19, works fine on Mac
OSX 7,0,24
From: Vali Tomba <[EMAIL PROTECTED]>
8. Re: Alert event handling
From: "goran187" <[EMAIL PROTECTED]>
9. AW: Custom Progress Bar
From: "Sven Claar" <[EMAIL PROTECTED]>
10. Dial Controls
From: "Dave" <[EMAIL PROTECTED]>
11. Dial Controls
From: "Dave" <[EMAIL PROTECTED]>
12. Dial Controls
From: "Dave" <[EMAIL PROTECTED]>
13. AW: Dial Controls
From: "Sven Claar" <[EMAIL PROTECTED]>
14. Re: AW: Dial Controls
From: Jeff Tapper <[EMAIL PROTECTED]>
15. AW: Dial Controls
From: "Sven Claar" <[EMAIL PROTECTED]>
16. Printing reports / charts and tables on the same page
From: "Pushkar" <[EMAIL PROTECTED]>
17. Alert strangeness
From: "Erik Westra" <[EMAIL PROTECTED]>
________________________________________________________________________
________________________________________________________________________
Message: 1
Date: 16 Feb 2005 11:27:39 -0000
From: "Ketan R Bengali" <[EMAIL PROTECTED]>
Subject: Re: Re: Custom Progress Bar
Sorry.. forgot to send the .mxml file.
Attaching it.
Thanks again.
Ketan B.
On Wed, 16 Feb 2005 Manish Jethani wrote :
>Ketan R Bengali wrote:
>>I have converted a movieclip (in flash) to a .swc file which is
>>a
>>progressbar. I wish to use the same as a custom progress bar
>>for
>>my
>>flex app. Below is the <Application> mxml code:
>[snip]
>I don't know much about this beyond what I've read in the docs,
>but
>maybe this will provide us a clue:
>http://www.markme.com/eanderson/archives/006489.cfm
>Does your preloader work if you put it in the same directory as
>your
>app's main MXML file?
>If you could send me the SWC file off list (with the source
>code), I
>could try experimenting with it.
>Manish
>Yahoo! Groups Sponsor
>ADVERTISEMENT
>document.write('
>');
>
>Yahoo! Groups Links
>To visit your group on the web, go to:
>http://groups.yahoo.com/group/flexcoders/
>
>
>To unsubscribe from this group, send an email to:
>[EMAIL PROTECTED]
>
>
>Your use of Yahoo! Groups is subject to the
>Yahoo! Terms of Service
>.
>
[This message contained attachments]
________________________________________________________________________
________________________________________________________________________
Message: 2
Date: Wed, 16 Feb 2005 17:32:50 +0530
From: Manish Jethani <[EMAIL PROTECTED]>
Subject: Re: Custom Progress Bar
Ketan R Bengali wrote:
> Now its working but still (I think) with a problem.
> Attaching my mxml file and .fla & .as file.
1. I was expecting to receive the files _off list_.
2. You did not mention _what_ problem you're facing. Not helpful at all.
3. Did you read Eric Anderson's article, the link to which I sent in
my earlier message?
Anyway, since your custom preloader contains almost no code, it wasn't
hard to figure out. I added a couple of lines to the constructor:
this.createTextField("progressText", 0, 0, 0, 250, 22);
progressText.text = "blah blah...";
This will show "blah blah..." constantly. If you want it to behave like
a real preloader, see what Eric is doing in this article:
http://www.markme.com/eanderson/archives/006489.cfm
Manish
________________________________________________________________________
________________________________________________________________________
Message: 3
Date: Wed, 16 Feb 2005 08:08:23 -0500
From: Rich Tretola <[EMAIL PROTECTED]>
Subject: Multiple Remote Objects
Is there a problem with having 2 remote object tags ? In my testing,
only the 1st remote object is getting loaded. Any ideas ?
Rich
________________________________________________________________________
________________________________________________________________________
Message: 4
Date: Wed, 16 Feb 2005 13:16:01 -0000
From: "Steven Webster" <[EMAIL PROTECTED]>
Subject: RE: Multiple Remote Objects
> Is there a problem with having 2 remote object tags ? In my
> testing, only the 1st remote object is getting loaded. Any ideas ?
You can declare as many as you like, with different ids.
What is your source ? How does the error manifest itself (at
compile time, run-time, what is the error message you get, etc)
Steven
________________________________________________________________________
________________________________________________________________________
Message: 5
Date: Wed, 16 Feb 2005 08:32:50 -0500
From: Rich Tretola <[EMAIL PROTECTED]>
Subject: Re: Multiple Remote Objects
The 2nd object never loads. Here is the code as it is now:
<mx:RemoteObject id="salesRepDelegate"
result="event.call.resultHandler( event.result )"
fault="mx.core.Application.alert( event.fault.faultstring )"
named="salesRepDelegate"
showBusyCursor="true"
concurrency="multiple"
type="stateless-class">
</mx:RemoteObject>
<mx:RemoteObject id="expeditedDelegate"
result="event.call.resultHandler( event.result )"
fault="mx.core.Application.alert( event.fault.faultstring )"
named="expeditedDelegate"
showBusyCursor="true"
concurrency="multiple"
type="stateless-class">
</mx:RemoteObject>
With the above code salesRepDelegate will load but if I reverse the
order, then only expeditedDelegate will load.
Rich
On Wed, 16 Feb 2005 13:16:01 -0000, Steven Webster
<[EMAIL PROTECTED]> wrote:
>
> > Is there a problem with having 2 remote object tags ? In my
> > testing, only the 1st remote object is getting loaded. Any ideas ?
>
> You can declare as many as you like, with different ids.
>
> What is your source ? How does the error manifest itself (at
> compile time, run-time, what is the error message you get, etc)
>
> Steven
>
>
> Yahoo! Groups Links
>
>
>
>
>
________________________________________________________________________
________________________________________________________________________
Message: 6
Date: Wed, 16 Feb 2005 09:10:51 -0500
From: Tom Fitzpatrick <[EMAIL PROTECTED]>
Subject: datagrid cell styling
Is it possible to style the contents of individual rows of a datagrid? What
I'd like to do is make the text in some rows bold.
If this isn't possible without creating a cellrenderer, can anyone point me
to simple renderer example that performs text styling?
________________________________________________________________________
________________________________________________________________________
Message: 7
Date: Wed, 16 Feb 2005 06:35:19 -0800 (PST)
From: Vali Tomba <[EMAIL PROTECTED]>
Subject: Re: Bizzare - Flex app crashes on Windows player 7,0,19, works fine on
Mac OSX 7,0,24
I experienced the same type of problem with my application. At the load time if
I start randomly click UI submit buttons the browser crash completelyand the
app server log doesn't record any error... I believe that is something related
with the Flash Player.... didn't have time to investigate more.. :(
BTW: Is there any document to specify the minimal system requirements necessary
for using Flex optimally?.
Regards,
V Tomba
Robin Hilliard <[EMAIL PROTECTED]> wrote:
Hello,
Has anyone ever come across something that works on one of these but
not the other? Here's a summary of what we're seeing with the same
web application across various player/server combos:
Player
OSX 10.3.8 7,0,24
Flex Server
JRun 4 on OSX
Result
Works fine
Player
Win XP 7,0,19
Flex Server
JRun 4 on OSX
Result
Application loads, then hangs player and browser when populating a
datagrid. Low virtual memory warning appears
Player
W2K 7,0,19
Flex Server
JRun 4 on OSX
Result
Application loads, then browser and player crash completely when
populating a datagrid.
Player
Win XP 7,0,19
Flex Server
Tomcat 5.0.27/Linux RHE 3 WS
Result
Application runs very slowly (minutes to populate datagrid).
We're going to take it up with support, but can't think what should be
different in the players to make this happen. No embedded fonts,
caching swos disabled. Any thoughts greatly appreciated!
Thanks,
Robin
Yahoo! Groups SponsorADVERTISEMENT
document.write('');
---------------------------------
Yahoo! Groups Links
To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/
To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
[This message contained attachments]
________________________________________________________________________
________________________________________________________________________
Message: 8
Date: Wed, 16 Feb 2005 15:10:44 -0000
From: "goran187" <[EMAIL PROTECTED]>
Subject: Re: Alert event handling
That worked great. Thanks!
Goran
--- In [email protected], "Mercer, Dustin"
<[EMAIL PROTECTED]> wrote:
> Goran,
>
>
>
> There seems to be a typo in my last post... The confirm method
should
> look like this:
>
>
>
> private function confirm( event )
>
> {
>
> switch ( event.detail )
>
> {
>
> case 1:
>
> break;
>
> case2:
>
> break;
>
> }
>
> }
>
>
>
>
>
> _____
>
> From: Mercer, Dustin
> Sent: Tuesday, February 15, 2005 11:05 PM
> To: [email protected]
> Subject: RE: [flexcoders] Alert event handling
>
>
>
> Goran,
>
>
>
> This code should help.
>
>
>
> PS. The event.detail contains the information needed to tell you
which
> button was clicked. I.E. 1 == YES and 2 == NO. Hope this helps!
>
>
>
> Import mx.controls.Alert;
>
>
>
> var alert = Alert.show("Are you sure you want to delete this item?",
> "Confirm Delete", Alert.YES | Alert.NO);
>
> alert.addEventListener( "click", mx.utils.Delegate.create( this,
confirm
> ) );
>
>
>
> private function confirm( event )
>
> {
>
> switch ( event.detail )
>
> case 1:
>
> break;
>
> case2:
>
> break;
>
> }
>
>
>
> _____
>
> From: goran187 [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, February 15, 2005 8:03 PM
> To: [email protected]
> Subject: [flexcoders] Alert event handling
>
>
>
>
> Is anyone familiar with event handling on Alert boxes (buttons)?
>
> I have a form with an alert box with two button choices (OK and NO)
>
> I want to be able to execute a function based on the selected
option.
>
> Thanks,
> Goran
>
>
>
>
>
>
>
>
>
>
> Yahoo! Groups Sponsor
>
> ADVERTISEMENT
>
<http://us.ard.yahoo.com/SIG=129v1mjjj/M=298184.6018725.7038619.300117
6/
>
D=groups/S=1705007207:HM/EXP=1108623895/A=2532114/R=2/SIG=12k51v6pj/*h
tt
>
p:/clk.atdmt.com/NFX/go/yhxxxnfx0020000014nfx/direct/01/&time=11085374
95
> 377058>
>
>
<http://view.atdmt.com/NFX/view/yhxxxnfx0020000014nfx/direct/01/&time=
11
> 08537495377058>
>
>
> <http://us.adserver.yahoo.com/l?
M=298184.6018725.7038619.3001176/D=group
> s/S=:HM/A=2532114/rand=572235806>
>
>
>
> _____
>
> Yahoo! Groups Links
>
> * To visit your group on the web, go to:
> http://groups.yahoo.com/group/flexcoders/
>
> * To unsubscribe from this group, send an email to:
> [EMAIL PROTECTED]
> <mailto:[EMAIL PROTECTED]>
>
> * Your use of Yahoo! Groups is subject to the Yahoo! Terms of
> Service <http://docs.yahoo.com/info/terms/> .
________________________________________________________________________
________________________________________________________________________
Message: 9
Date: Wed, 16 Feb 2005 16:15:09 +0100
From: "Sven Claar" <[EMAIL PROTECTED]>
Subject: AW: Custom Progress Bar
Hi Manish and Ketan,
i have checked both ways.
If you test Erics article you will see that the 'setProgress' function never
puts any text into the progressText textfield. The same if you add some code
into the 'set indeterminate' function. Only direct after the creation of the
TextField the text property is set correct.
I build an custom swc. And it works with real TextFields available on the
stage respectively in the symbol.
(see the app and example here:
http://www.mxug.de/flex/archives/2005/02/custom_preloade.cfm
sorry only german ;) but you can see the code)
Has one of you also made these experiences with AS created TextFields or do
we make something wrong completely?
Thanks,
Sven
-----Urspr�ngliche Nachricht-----
Von: Manish Jethani [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 16. Februar 2005 13:03
An: [email protected]
Betreff: Re: [flexcoders] Custom Progress Bar
Ketan R Bengali wrote:
> Now its working but still (I think) with a problem.
> Attaching my mxml file and .fla & .as file.
1. I was expecting to receive the files _off list_.
2. You did not mention _what_ problem you're facing. Not helpful at all.
3. Did you read Eric Anderson's article, the link to which I sent in
my earlier message?
Anyway, since your custom preloader contains almost no code, it wasn't
hard to figure out. I added a couple of lines to the constructor:
this.createTextField("progressText", 0, 0, 0, 250, 22);
progressText.text = "blah blah...";
This will show "blah blah..." constantly. If you want it to behave like
a real preloader, see what Eric is doing in this article:
http://www.markme.com/eanderson/archives/006489.cfm
Manish
Yahoo! Groups Links
________________________________________________________________________
________________________________________________________________________
Message: 10
Date: Wed, 16 Feb 2005 15:39:43 -0000
From: "Dave" <[EMAIL PROTECTED]>
Subject: Dial Controls
Look at this dashboard sample
http://www.infommersion.com/demos/dashboards/demoshell.html
Select the 'Banking Dashboard' and click on the 'Risk' tab. In terms
of the the dials on the right side of the screen:
Is it easier to modify a pre-existing Flex control or create one
from scratch in Flash?
Thanks much,
-Dave
________________________________________________________________________
________________________________________________________________________
Message: 11
Date: Wed, 16 Feb 2005 15:42:06 -0000
From: "Dave" <[EMAIL PROTECTED]>
Subject: Dial Controls
Look at this dashboard sample
http://www.infommersion.com/demos/dashboards/demoshell.html
Select the 'Banking Dashboard' and click on the 'Past Due' tab. In
terms
of the the dials on the right side of the screen:
Is it easier to modify a pre-existing Flex control or create one
from scratch in Flash?
Thanks much,
-Dave
________________________________________________________________________
________________________________________________________________________
Message: 12
Date: Wed, 16 Feb 2005 15:41:04 -0000
From: "Dave" <[EMAIL PROTECTED]>
Subject: Dial Controls
Look at this dashboard sample
http://www.infommersion.com/demos/dashboards/demoshell.html
Select the 'Banking Dashboard' and click on the 'Past Due' tab. In
terms
of the the dials on the right side of the screen:
Is it easier to modify a pre-existing Flex control or create one
from scratch in Flash?
Thanks much,
-Dave
________________________________________________________________________
________________________________________________________________________
Message: 13
Date: Wed, 16 Feb 2005 16:43:49 +0100
From: "Sven Claar" <[EMAIL PROTECTED]>
Subject: AW: Dial Controls
Hi Dave,
i don't see any 'Dial' like controls?
Cheers,
Sven
-----Urspr�ngliche Nachricht-----
Von: Dave [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 16. Februar 2005 16:40
An: [email protected]
Betreff: [flexcoders] Dial Controls
Look at this dashboard sample
http://www.infommersion.com/demos/dashboards/demoshell.html
Select the 'Banking Dashboard' and click on the 'Risk' tab. In terms
of the the dials on the right side of the screen:
Is it easier to modify a pre-existing Flex control or create one
from scratch in Flash?
Thanks much,
-Dave
Yahoo! Groups Links
________________________________________________________________________
________________________________________________________________________
Message: 14
Date: Wed, 16 Feb 2005 10:50:37 -0500
From: Jeff Tapper <[EMAIL PROTECTED]>
Subject: Re: AW: Dial Controls
I was able to find them by clicking on the "Daily Sales Dashboard" link on
the right.
My instinct would be to write them from scratch, or perhaps try and modify
the analog clock components decribed here:
http://www.macromedia.com/devnet/flex/articles/creating_comp.html?pss=rss_flex_dc_creating_comp
At 10:43 AM 2/16/2005, you wrote:
>Hi Dave,
>
>i don't see any 'Dial' like controls?
>
>Cheers,
>Sven
>
>-----Urspr�ngliche Nachricht-----
>Von: Dave [mailto:[EMAIL PROTECTED]
>Gesendet: Mittwoch, 16. Februar 2005 16:40
>An: [email protected]
>Betreff: [flexcoders] Dial Controls
>
>
>
>Look at this dashboard sample
><http://www.infommersion.com/demos/dashboards/demoshell.html>http://www.infommersion.com/demos/dashboards/demoshell.html
>Select the 'Banking Dashboard' and click on the 'Risk' tab. In terms
>of the the dials on the right side of the screen:
>
>Is it easier to modify a pre-existing Flex control or create one
>from scratch in Flash?
>
>
>Thanks much,
>
>-Dave
>
>
>
>
>
>
>Yahoo! Groups Links
>
>
>
>
>
>
>
>
>Yahoo! Groups Sponsor
>ADVERTISEMENT
><http://us.ard.yahoo.com/SIG=129im7ts3/M=298184.6018725.7038619.3001176/D=groups/S=1705007207:HM/EXP=1108655032/A=2532114/R=2/SIG=12kh2qknj/*http://clk.atdmt.com/NFX/go/yhxxxnfx0020000014nfx/direct/01/&time=1108568632035596>
>[]
>
>
>
>----------
>Yahoo! Groups Links
> * To visit your group on the web, go to:
> *
> <http://groups.yahoo.com/group/flexcoders/>http://groups.yahoo.com/group/flexcoders/
>
>
> *
> * To unsubscribe from this group, send an email to:
> *
> <mailto:[EMAIL PROTECTED]>[EMAIL PROTECTED]
>
> *
> * Your use of Yahoo! Groups is subject to the
> <http://docs.yahoo.com/info/terms/>Yahoo! Terms of Service.
________________________________________________________________________
________________________________________________________________________
Message: 15
Date: Wed, 16 Feb 2005 16:51:11 +0100
From: "Sven Claar" <[EMAIL PROTECTED]>
Subject: AW: Dial Controls
Ahhh ok, is see ;)
nice...i would pefer the custom swc method, but this doesn't mean that you
can not create something like this without the use of the flash mx authoring
environement.
I can imaging a really easy starting point where you only scrub trough
embeded swf files holds the rotation animation in it...
Cheers,
Sven
-----Urspr�ngliche Nachricht-----
Von: Dave [mailto:[EMAIL PROTECTED]
Gesendet: Mittwoch, 16. Februar 2005 16:42
An: [email protected]
Betreff: [flexcoders] Dial Controls
Look at this dashboard sample
http://www.infommersion.com/demos/dashboards/demoshell.html
Select the 'Banking Dashboard' and click on the 'Past Due' tab. In
terms
of the the dials on the right side of the screen:
Is it easier to modify a pre-existing Flex control or create one
from scratch in Flash?
Thanks much,
-Dave
Yahoo! Groups Links
________________________________________________________________________
________________________________________________________________________
Message: 16
Date: Wed, 16 Feb 2005 16:06:51 -0000
From: "Pushkar" <[EMAIL PROTECTED]>
Subject: Printing reports / charts and tables on the same page
Hello,
I have a quick newbie question. We are looking at flex for quick
reporting / visualising data. We also need to print these chart views
as reports.
1. Is it possible to print the charts and tables in the same page?
e.g. Can I print the entire page as I see it (or approximately with
rearranging the page)
http://flexapps.macromedia.com/flex/brocade/app.mx
ml?versionChecked=true
2. Can I style / place these objects using the style tags ?
(e.g. using something like
http://livedocs.macromedia.com/flex/15/flex_docs_e
n/wwhelp/wwhimpl/js/html/wwhelp.htm)
3. Is there a sample code for this available somewhere?
Thanks
Pushkar
[EMAIL PROTECTED]
________________________________________________________________________
________________________________________________________________________
Message: 17
Date: Wed, 16 Feb 2005 17:07:02 +0100
From: "Erik Westra" <[EMAIL PROTECTED]>
Subject: Alert strangeness
Ok, I have two different classes with exectly the same code (except for
their names).
The one with the name 'Alert' has at the bottom when created with the
popupManager rounded edges.
The one with the name 'Allert' has at the bottom when created with the
popupManager square edges.
Does any1 have a clue?
Greetz Erik
==================== class 1 =====================
import mx.controls.Button;
import fly.TAP.commonDialogs.CommonDialog;
class fly.TAP.commonDialogs.Allert extends mx.containers.TitleWindow
{
private var _button_mc:Button;
public function Allert()
{
_button_mc = Button(createChild(mx.controls.Button,
undefined, {label: "OK"}));
};
public function onLoad():Void
{
super.onLoad();
_button_mc.addEventListener("click", this);
};
public function click()
{
deletePopUp();
};
};
==================== class 2 =====================
import mx.controls.Button;
import fly.TAP.commonDialogs.CommonDialog;
class fly.TAP.commonDialogs.Alert extends mx.containers.TitleWindow
{
private var _button_mc:Button;
public function Alert()
{
_button_mc = Button(createChild(mx.controls.Button,
undefined, {label: "OK"}));
};
public function onLoad():Void
{
super.onLoad();
_button_mc.addEventListener("click", this);
};
public function click()
{
deletePopUp();
};
};
________________________________________________________________________
________________________________________________________________________
------------------------------------------------------------------------
Yahoo! Groups Links
------------------------------------------------------------------------
--- End Message ---