Re: [flexcoders] 1st App - Questions

2005-02-09 Thread JesterXL
Title: Message



Very interesting to see the opposite approach of 
me; no Script tags. Your app itself seems to work very well; the service 
itself is dog slow, but you have the cursor, resizing, alert on error... 
nice!

1. It's already selectable; do you mean 
editable? It's set to false by default.

2. That's what I did... but I installed itcustom; 
don't know if the one that comes with FlexBuilder 1.5 is the same way or 
not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com 
Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, I fumbled my 
way through the help docs and put together a pretty coo lil' app (for my first 
one at least; file attached).I couldn't think of anything useful to do so 
I looked at the samples and saw the Blog Reader. So, I figured I'd read theMXNA 
feeds and display them. If someone could critique the app and let me know how 
everything looks that'd be great. I wanna learn how to do things right from 
jump. 

Being I went through 
the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" width="100%" 
height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I need to 
import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) and 
make that a Tree's dataProvider without XML'ing it up? I saw a few posts inhere 
about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did seeearlier 
setting the dataProvider worked but everything was merely an item and I hadno 
control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  len; 
i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

Thisway I 
would have an object with each feed stored in the respective category. I may 
create my own cfc locally to handle this and return to Flex but I'd like toknow 
my options.

Well, it's 
late and I still gotta bust some suds so I better get off this thing. :-) Thx 
all for any responses/time invested in this post.

Thx!
-- JDEV Inc. John C. Bland II 
CEO 
[EMAIL PROTECTED] fax: 
480.718.7958 IM: 
jdevPres http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread Matt Horn
Title: Message



John, I'll take the easy one (question #1). 
:)

You can make a TextArea clickable by embedding a call to 
getURL in the mouseDown event handler. Here's a simplified version that links to 
a new website when you click on the TextArea. There is a little AS code, but 
it's inline rather than in a code block:

?xml version="1.0"?mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
xmlns="*"

 mx:Box id="box" width="200" height="200" 
/ mx:TextArea id="ta1" text="Click Here to Go To 
Website" 
mouseDown="getURL('http://www.jessewarden.com');"/

/mx:Application
hth,

matt 
h






From: John C. Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 3:41 
AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
1st App - Questions

Well, I fumbled my 
way through the help docs and put together a pretty coo lil' app (for my first 
one at least; file attached).I couldn't think of anything useful to do 
so I looked at the samples and saw the Blog Reader. So, I figured I'd read the 
MXNA feeds and display them. If someone could critique the app and let me know 
how everything looks that'd be great. I wanna learn how to do things right 
from jump. 

Being I went 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" width="100%" 
height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I need 
to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) and 
make that a Tree's dataProvider without XML'ing it up? I saw a few posts in 
here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did see 
earlier setting the dataProvider worked but everything was merely an item and 
I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  len; 
i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This way I 
would have an object with each feed stored in the respective category. I may 
create my own cfc locally to handle this and return to Flex but I'd like to 
know my options.

Well, it's 
late and I still gotta bust some suds so I better get off this thing. :-) Thx 
all for any responses/time invested in this post.

Thx!
-- JDEV Inc. John C. Bland II 
CEO 
[EMAIL PROTECTED] fax: 
480.718.7958 IM: 
jdevPres http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread John C. Bland II
Title: Message



Hey 
thx Jester. I found the script tag fast but quickly went away from it because I 
was falling back on my crutch (AS) and wanted to learn mxml.

1. 
Nah, I mean making a URL of the text. 
Ex - 

Click 
here to blah blah blah.

'Click 
here' would be a link. Like wrapping a tags around it or something. 


2. Ok 
coo. I'll research.

3. 
:-)


-Original Message-From: JesterXL 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 
2005 8:00 AMTo: flexcoders@yahoogroups.comSubject: Re: 
[flexcoders] 1st App - Questions
Very interesting to see the opposite approach of 
me; no Script tags. Your app itself seems to work very well; the service 
itself is dog slow, but you have the cursor, resizing, alert on error... 
nice!

1. It's already selectable; do you mean 
editable? It's set to false by default.

2. That's what I did... but I installed it 
custom; don't know if the one that comes with FlexBuilder 1.5 is the sameway 
or not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com
Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, Ifumbled my 
way through the help docs and put together a pretty coo lil' app (for my first 
one at least; file attached).I couldn't think of anything useful todo 
so I looked at the samples and saw the Blog Reader. So, I figured I'd read the 
MXNA feeds and display them. If someone could critique the app and let meknow 
how everything looks that'd be great. I wanna learn how to do things right 
from jump. 

Being Iwent 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" width="100%" 
height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I need 
to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) and 
make that a Tree's dataProvider without XML'ing it up? I saw a few posts in 
here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did see 
earlier setting the dataProvider worked but everything was merely an itemand 
I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  len; 
i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This way I 
would have an object with each feed stored in the respective category. I may 
create my own cfc locally to handle this and return to Flex but I'd like to 
know my options.

Well, it's 
late and I still gotta bust some suds so I better get off this thing. :-)Thx 
all for any responses/time invested in this post.

Thx!
-- JDEV Inc.John C. Bland II 
CEO 
[EMAIL PROTECTED] fax: 
480.718.7958 IM: 
jdevPres http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread John C. Bland II
Title: Message



Coo on 
that but how about just one piece of text. 

1 
side? based no your code. Can I put AS inside of the text="" attribute? 



mx:Box id="box" width="200" height="200"/ mx:TextArea id="ta1" 
text="Math.Round(4000.2342441814)" 
mouseDown="getURL('http://www.jessewarden.com');"/
/mx:Application

Just 
curious.


-Original Message-From: Matt Horn 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 
8:01 AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions
John, I'll take the easy one (question #1). 
:)

You can make a TextArea clickable by embedding acall to 
getURL in the mouseDown event handler. Here's a simplified version that links 
to a new website when you click on the TextArea. There is a little AS code, 
but it's inline rather than in a code block:

?xml version="1.0"?mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
xmlns="*"

 mx:Box id="box" width="200"height="200" 
/ mx:TextArea id="ta1" text="Click Here to GoTo 
Website" 
mouseDown="getURL('http://www.jessewarden.com');"/

/mx:Application
hth,

matt 
h






From: John C. Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 20053:41 
AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
1st App - Questions

Well,I fumbled 
my way through the help docs and put together a pretty coo lil' app (for my 
first one at least; file attached).I couldn't think of anything useful 
to do so I looked at the samples and saw the Blog Reader. So, I figuredI'd 
read the MXNA feeds and display them. If someone could critique the appand 
let me know how everything looks that'd be great. I wanna learn how to do 
things right from jump. 

BeingI went 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" 
width="100%" height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open?Do I 
need to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) 
and make that a Tree's dataProvider without XML'ing it up? I saw a few posts 
in here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I didsee 
earlier setting the dataProvider worked but everything was merely an item 
and I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i 
len; i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This way 
I would have an object with each feed stored in the respective category. I 
may create my own cfc locally to handle this and return to Flex but I'dlike 
to know my options.

Well, 
it's late and I still gotta bust some suds so I better get off this thing. 
:-) Thx all for any responses/time invested in this 
post.

Thx!
-- JDEV Inc. 
John C. Bland 
II CEO [EMAIL PROTECTED] fax: 480.718.7958 
IM: jdevPres 
http://www.jdevinc.com/ 
-- 



Re: [flexcoders] 1st App - Questions

2005-02-09 Thread JesterXL
Title: Message



1. Use the Link component; not sure how toget that 
in a TextArea without doing what you said about using anchor tags.

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com 
Sent: Wednesday, February 09, 2005 11:45 AM
Subject: RE: [flexcoders] 1st App - Questions

Hey 
thx Jester. I found the script tag fast but quickly went away from it because I 
was falling back on my crutch (AS) and wanted to learn mxml.

1. 
Nah, I mean making a URL of the text. 
Ex - 

Click 
here to blah blah blah.

'Click 
here' would be a link. Like wrapping a tags around it or something. 


2. Ok 
coo. I'll research.

3. 
:-)


-Original Message-From: JesterXL 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 
2005 8:00 AMTo: flexcoders@yahoogroups.comSubject: Re: 
[flexcoders] 1st App - Questions
Very interesting to see the opposite approach of 
me; no Script tags. Your app itself seems to work very well; the service 
itself is dog slow, but you have the cursor, resizing, alert on error... 
nice!

1. It's already selectable; do you mean 
editable? It's set to false by default.

2. That's what I did... but I installed it 
custom; don't know if the one that comes with FlexBuilder 1.5 is the sameway 
or not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com
Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, Ifumbled my 
way through the help docs and put together a pretty coo lil' app (for my first 
one at least; file attached).I couldn't think of anything useful todo 
so I looked at the samples and saw the Blog Reader. So, I figured I'd read the 
MXNA feeds and display them. If someone could critique the app and let meknow 
how everything looks that'd be great. I wanna learn how to do things right 
from jump. 

Being Iwent 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" width="100%" 
height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I need 
to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) and 
make that a Tree's dataProvider without XML'ing it up? I saw a few posts in 
here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did see 
earlier setting the dataProvider worked but everything was merely an itemand 
I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  len; 
i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This way I 
would have an object with each feed stored in the respective category. I may 
create my own cfc locally to handle this and return to Flex but I'd like to 
know my options.

Well, it's 
late and I still gotta bust some suds so I better get off this thing. :-)Thx 
all for any responses/time invested in this post.

Thx!
-- JDEV Inc.John C. Bland II 
CEO 
[EMAIL PROTECTED] fax: 
480.718.7958 IM: 
jdevPres http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread Matt Horn
Title: Message



#1: Have you tried the htmlText 
property?

?xml version="1.0"?mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
initialize="initApp();"mx:VBox width="500" 
height="400"mx:Text width="100%" id="t1" 
htmlText="lt;a href=''gt;Click 
herelt;/agt;"//mx:VBox/mx:Application
matt h



From: John C. Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 11:45 
AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions

Hey 
thx Jester. I found the script tag fast but quickly went away from it because 
I was falling back on my crutch (AS) and wanted to learn 
mxml.

1. 
Nah, I mean making a URL of the text. 
Ex - 

Click here to blah blah blah.

'Click here' would be a link. Like wrapping a tags around it or 
something. 

2. 
Ok coo. I'll research.

3. 
:-)


-Original Message-From: JesterXL 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 
2005 8:00 AMTo: flexcoders@yahoogroups.comSubject: Re: 
[flexcoders] 1st App - Questions
Very interesting to see the opposite approach 
of me; no Script tags. Your app itself seems to work very well; the 
service itself is dog slow, but you have the cursor, resizing, alert on 
error... nice!

1. It's already selectable; do you mean 
editable? It's set to false by default.

2. That's what I did... but I installed it 
custom; don't know if the one that comes with FlexBuilder 1.5 is the same 
way or not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com 

Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, I fumbled 
my way through the help docs and put together a pretty coo lil' app (for my 
first one at least; file attached).I couldn't think of anything useful 
to do so I looked at the samples and saw the Blog Reader. So, I figured I'd 
read the MXNA feeds and display them. If someone could critique the app and 
let me know how everything looks that'd be great. I wanna learn how to do 
things right from jump. 

Being I went 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without using 
ActionScript, can I make text in a TextArea clickable? 
Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" 
width="100%" height="100%" editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I 
need to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) 
and make that a Tree's dataProvider without XML'ing it up? I saw a few posts 
in here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did see 
earlier setting the dataProvider worked but everything was merely an item 
and I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  
len; i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This way 
I would have an object with each feed stored in the respective category. I 
may create my own cfc locally to handle this and return to Flex but I'd like 
to know my options.

Well, 
it's late and I still gotta bust some suds so I better get off this thing. 
:-) Thx all for any responses/time invested in this 
post.

Thx!
-- JDEV Inc. 
John C. Bland 
II CEO [EMAIL PROTECTED] fax: 480.718.7958 
IM: jdevPres 
http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread John C. Bland II
Title: Message



oho k. 
So just do the html code for the tabs. That'll work. Lemme give that a shot. 


Thx...


-Original Message-From: Matt Horn 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 
10:45 AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions
#1: Have you tried the htmlText 
property?

?xml version="1.0"?mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
initialize="initApp();"mx:VBox width="500" 
height="400"mx:Text width="100%" id="t1" 
htmlText="lt;a href=''gt;Click 
herelt;/agt;"//mx:VBox/mx:Application
matt h



From: John C. Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 
11:45 AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions

Hey thx Jester. I found the script tag fast but quickly went away 
from it because I was falling back on my crutch (AS) and wanted to learn 
mxml.

1. 
Nah, I mean making a URL of the text. 
Ex 
- 
Click here to blah blah blah.

'Click here' would be a link. Like wrapping a tags around it 
or something. 

2. 
Ok coo. I'll research.

3. 
:-)


-Original Message-From: JesterXL 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 
2005 8:00 AMTo: flexcoders@yahoogroups.comSubject: 
Re: [flexcoders] 1st App - Questions
Very interesting to see the oppositeapproach 
of me; no Script tags. Your app itself seems to work very well;the 
service itself is dog slow, but you have the cursor, resizing, alert on 
error... nice!

1. It's already selectable; do you mean 
editable? It's set to false by default.

2. That's what I did... but I installed it 
custom; don't know if the one that comes with FlexBuilder 1.5 is the same 
way or not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

- Original Message - 
From: John C. Bland II 

To: flexcoders@yahoogroups.com 

Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, I 
fumbled my way through the help docs and put together a pretty coo lil' 
app (for my first one at least; file attached).I couldn't thinkof 
anything useful to do so I looked at the samples and saw the Blog Reader. 
So, I figured I'd read the MXNA feeds and display them. If someone could 
critique the app and let me know how everything looks that'd be great. I 
wanna learn how to do things right from jump. 

Being I went 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without 
using ActionScript, can I make text in a TextArea clickable? 

Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" 
width="100%" height="100%" 
editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I 
need to import mx.remoting.debug.NetDebugger? 

3) Is there a way to take an object (Array or RecordSet) 
and make that a Tree's dataProvider without XML'ing it up? I saw a few 
posts in here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but I did see 
earlier setting the dataProvider worked but everything was merely an item 
and I had no control over the folders. What I would really be doing is 
this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0;i  
len; i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This 
way I would have an object with each feed stored in the respective 
category. I may create my own cfc locally to handle this and return to 
Flex but I'd like to know my options.

Well, 
it's late and I still gotta bust some suds so I better get off this thing. 
:-) Thx all for any responses/time invested in this 
post.

Thx!
-- JDEV Inc. 
John C. Bland 
II CEO [EMAIL PROTECTED] 
fax: 
480.718.7958 IM: jdevPres http://www.jdevinc.com/ 
-- 



RE: [flexcoders] 1st App - Questions

2005-02-09 Thread John C. Bland II
Title: Message



Sweet. 
This worked:

mx:TextArea x="0" y="0" htmlText="lt;a 
href='' target='_blank'gt;View 
Entrylt;/agt;lt;brgt;lt;brgt;{info.selectedItem.excerpt}" 
width="100%" height="100%" editable="false"/ 

It's 
not the prettiest but at least I know it's there. Thx Matt!


-Original Message-From: John C.Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 11:14 
AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions
oho 
k. So just do the html code for the tabs. That'll work. Lemme give that a 
shot. 

Thx...


-Original Message-From: Matt Horn 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 
10:45 AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions
#1: Have you tried the htmlText 
property?

?xml version="1.0"?mx:Application 
xmlns:mx="http://www.macromedia.com/2003/mxml" 
initialize="initApp();"mx:VBox width="500" 
height="400"mx:Text width="100%" id="t1" 
htmlText="lt;a href=''gt;Click 
herelt;/agt;"//mx:VBox/mx:Application
matt h



From: John C. Bland II 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 09, 2005 
11:45 AMTo: flexcoders@yahoogroups.comSubject: RE: 
[flexcoders] 1st App - Questions

Hey thx Jester. I found the script tag fast but quickly wentaway 
from it because I was falling back on my crutch (AS) and wanted to learn 
mxml.

1. Nah, I mean making a URL of the text. 
Ex - 
Click here to blah blah blah.

'Click here' would be a link. Like wrapping a tags around 
it or something. 

2. Ok coo. I'll research.

3. :-)


-Original Message-From: JesterXL 
[mailto:[EMAIL PROTECTED] Sent: Wednesday, February 
09, 2005 8:00 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] 1st App - 
Questions
Very interesting to see the opposite 
approach of me; no Script tags. Your app itself seems to workvery 
well; the service itself is dog slow, but you have the cursor, resizing, 
alert on error... nice!

1. It's already selectable; do youmean 
editable? It's set to false by default.

2. That's what I did... but I installed it 
custom; don't know if the one that comes with FlexBuilder 1.5 is the 
same way or not. Bet it's in the docs somewhere.

3. ??? :: shrugs ::

Nice job, mangxt!

----- Original Message - 
From: John C. Bland 
II 
To: [EMAIL PROTECTED] 

Sent: Wednesday, February 09, 2005 3:41 AM
Subject: [flexcoders] 1st App - Questions

Well, I 
fumbled my way through the help docs and put together a pretty coo lil' 
app (for my first one at least; file attached).I couldn't think of 
anything useful to do so I looked at the samples and saw the Blog 
Reader. So, I figured I'd read the MXNA feeds and display them. If 
someone could critique the app and let me know how everything looks 
that'd be great. I wanna learn how to do things right from jump. 


Being I went 
through the entire process I now have some questions about 
functionality.

Questions:
1) Without 
using ActionScript, can I make text in a TextArea clickable? 

Code 
excerpt
-
mx:TextArea x="0" y="0" 
text="{info.selectedItem.link}newline{info.selectedItem.excerpt}" 
width="100%" height="100%" 
editable="false"/
-

How can I make the info.selectedItem.link a link? 


2) How can I get the NetConnection Debugger open? Do I 
need to import mx.remoting.debug.NetDebugger? 


3) Is there a way to take an object (Array or 
RecordSet) and make that a Tree's dataProvider without XML'ing it up? I 
saw a few posts in here about it but not sure if they answered it (brief 
looks).

Ex - 
function blah(result){
 myTree.labelField = 
"name";
 myTree.dataProvider = 
result;
}

I'm not sure if labelField is an option but Idid see 
earlier setting the dataProvider worked but everything was merely an 
item and I had no control over the folders. What I would really be doing 
is this:


function blah(result){
 var len:Number = 
result.length;

 for(var i:Number = 0; i  
len; i++){
 
result.items[i].posts = 
mxnaCFC.getFeedsByCategory(result.items[i].Category);
 }

 myTree.dataProvider = 
result;
}

This 
way I would have an object with each feed stored in the respective 
category. I may create my own cfc locally to handle this and returnto 
Flex but I'd like to know my options.

Well, 
it's late and I still gotta bust some suds so I better get off this 
thing. :-) Thx all for any responses/time invested in this 
post.

Thx!
-- 
JDEV 
Inc. John C. Bland II CEO [EMAIL PROTECTED] 
fax: 
480.718.7958 IM: jdevPres http://www.jdevinc.com/ 
--