Re: [flexcoders] where can i access previous emails to this list?

2005-08-01 Thread chris.alvarado
 Where is the archive of this group?  I need to look up an answer to a
 question someone previously posted about setting column width's in  data
 grid, and I don't want to re ask it(unless someone knows the answer off the
 top of their head J ) . 
 
   
 
 Anyways, if someone can post that link here, it would be much appreciated. 
 Thanks a lot everyone.  I think it was email.com/flexcoders or something
 like that. 
 
   
 
 Thanks 
 
   


http://groups.yahoo.com/group/flexcoders/

-- 
-chris.alvarado
[application developer]


 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hgem7g1/M=362329.6886308.7839368.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1122919830/A=2894321/R=0/SIG=11dvsfulr/*http://youthnoise.com/page.php?page_id=1992
Fair play? Video games influencing politics. Click and talk back!/a./font
~- 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
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:
http://docs.yahoo.com/info/terms/
 




RE: [flexcoders] where can i access previous emails to this list?

2005-08-01 Thread Sauro, Nick










*slaps
self* thanks again lol, still shaking off the Monday dust.











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Monday, August 01, 2005
12:12 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] where
can i access previous emails to this list?





Check the bottom of these emails J



FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Sauro, Nick
Sent: Monday, August 01, 2005 9:06
AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] where can i
access previous emails to this list?





Hey guys, thanks matt for helping me w/
that packaging problem, it worked. As it turned out, it
didnt like the xmlns=*.



Where is the archive of this group?
I need to look up an answer to a question someone previously posted about
setting column widths in data grid, and I dont want to re
ask it(unless someone knows the answer off the top of their head J ) .



Anyways, if someone can post that link
here, it would be much appreciated. Thanks a lot everyone. I think
it was email.com/flexcoders or something like that.



Thanks











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Jaime Bermudez
Sent: Monday, August 01, 2005
11:58 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
namespace/directory structure issue





Still waiting for ideas on an
approach, but I thought I'd set up the
problem a little better:

Here's the developer directory structure for my project:

main
 app.mxml
 as
 app.as
 appTest.as
 assets (images, etc.)
 components
 test
 test1

test1.mxml

as

Components.as
 test2

test2.mxml

as

Components.as

I added the following path-element to the
actionscript-classpath in
flex-config.xml:
path-element/main/path-element so
I can use the same namespace
declarations in test1.mxml as I use in
app.mxml. I reference
appTest.as in a Script block as Script
source=../../as/appTest.as.
The appTest.as refers to the Components class,
which I import in each
testX.mxml file.

The problem I'm seeing is that a handful of
components have embedded
image files that are referenced in a source or
icon parameter as
assets/image.xxx. I'm pretty
sure that these are all paths relative
to the location of the app file being called, so
the references are
only being found for app.mxml. Is my only
and best option to define
some image root variable at the app level that I
can prepend to each
image call (thereby forcing me to check-out and
change every class
that embeds images)? Is there a standard
approach to this problem?

Thanks.


On 8/1/05, Jaime Bermudez
[EMAIL PROTECTED] wrote:
 Ok guys, so w/ Brian's suggestion I was able
to get the compiler to
 recognize the namespaces w/o changing the
initial structure. I'm more
 than halfway there, but I still get some
issues w/ image locations.
 Several components have embedded images that
are located in an
 assets directory one level below
the main directory. So, for
 example, one component contains a Link w/

icon=@Embed('assets/logo.swf'). This compiles fine for the
main
 app.mxml, but I get a resource not
found error when trying to hit
 one of the test apps. Do I have to
create a variable at the app level
 that prepends a prefix like
../../ for test apps and a blank string
 for the main level app? Is there a
better way to handle this, maybe a
 default image root property?
 
 Thanks,
 
 Jaime
 
 On 7/31/05, Brian
 Deitte [EMAIL PROTECTED] wrote:
  I think what Matt was saying is having
the components directory a level deeper and then referencing this directory in
actionscript-classpath in flex-config.xml. You should be able to create
references to components in any directory you put in actionscript-classpath in
the same manner that you reference components in a subdirectory of the main
application. I don't think you necessarily need to move the components
directory though- I think it would also work to just put the main directory in
actionscript-classpath. -Brian
 
  -Original Message-
  From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Jaime Bermudez
  Sent: Sunday, July 31, 2005 11:17 AM
  To: flexcoders@yahoogroups.com
  Subject: Re: [flexcoders]
namespace/directory structure issue
 
  Ok, so I think what you're suggesting is
to restructure to something
  like the following:
 
  main
  as
  components

 UI
  test
  test1

 components

 comp1
  test2

 components

 comp2
 
  If so, that kind of ruins my approach of
dynamically adding components
  to a Container in each
testXmxml. I wanted to follow the approach
  of having each test1...testN directory
define a Components.as file
  that lists the component references from
the components directory that
  will be added to the Container - that
way I could share an appTest.as
  file