Re: [flexcoders] How to install multiple Flash Player versions?

2005-08-17 Thread Brett Palmer
For our development needs we need to evaluate the plugin for IE and
Firefox.  We also need to evaluate these Windows and Linux.

For final testing we would like to evaluate on Mac as well.


Brett

On 8/16/05, John Dowdell [EMAIL PROTECTED] wrote:
 Brett Palmer wrote:
  I'm trying to profile a flex application.  What is the easiest way to
  run and install multiple Flash player versions?  I'm interested in
  running Flash 7, Flash 7 debug, and Flash 8.
 
 Any particular browser and operating system? (I think there's a
 plugin-switching extension for Firefox now... for IE/Win, it's extended
 by system-level extensions which can be trickier to replace on the fly.)
 
 jd
 
 
 
 
 --
 John Dowdell . Macromedia Developer Support . San Francisco CA USA
 Weblog: http://www.macromedia.com/go/blog_jd
 Aggregator: http://www.macromedia.com/go/weblogs
 Technotes: http://www.macromedia.com/support/
 Spam killed my private email -- public record is best, thanks.
 
 
 
 --
 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
 
 
 
 
 
 



 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hqqtfs4/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1124286360/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy/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/
 




[flexcoders] How to install multiple Flash Player versions?

2005-08-16 Thread Brett Palmer
I'm trying to profile a flex application.  What is the easiest way to
run and install multiple Flash player versions?  I'm interested in
running Flash 7, Flash 7 debug, and Flash 8.

Thanks,

Brett


 Yahoo! Groups Sponsor ~-- 
font face=arial size=-1a 
href=http://us.ard.yahoo.com/SIG=12hj1d5oi/M=362131.6882499.7825260.1510227/D=groups/S=1705007207:TM/Y=YAHOO/EXP=1124223587/A=2889191/R=0/SIG=10r90krvo/*http://www.thebeehive.org
Get Bzzzy! (real tools to help you find a job) Welcome to the Sweet Life 
- brought to you by One Economy/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/
 




[flexcoders] Compiling Flex files with Ant and mxmlc.jar

2005-05-25 Thread Brett Palmer
I've been trying to create a platform neutral build for our flex
application using Ant and mxmlc.jar but I can't get the configuration
to work.  When I run the build I always get an class not found
exception for the flex/tools/Mxmlc class.  I can build flex with Ant
if I use the mxmlc.exe compiler directly from Ant, but I wanted the
build to work without requiring the compiler script or executable.

Here is my current Ant target that is not working:

target name=compile_flex_jar depends=init, flex_classpath

  echo message=mxmlc.jar = ${mxmlc.jar}/
  echo message=flex_config = ${flex_config}/
  echo message=flex_file = ${flex_file}/
  echo message=flex.class.path = ${flex.class.path}/
  echo message=flex_jars.dir = ${flex_jars.dir}/
  echo message=flex_home.dir = ${flex_home.dir}/

  java jar=${mxmlc.jar} fork=true dir=c:\dev\in2m\in2m\flex
failonerror=true 

jvmarg value=-Dassert -Dapplication.home=${env.FLEX_HOME}
-Xms256M -Xmx512M /
classpath
  path refid=flex.class.path/
pathelement 
location=c:/dev/in2m/in2m/flex/webapp/mvelopes/WEB-INF/flex/jars/mxmlc.jar/
/classpath
arg value=-configuration ${flex_config} ${flex_file} /
  /java

/target

Even when I hard code the mxmlc.jar file in the class path executing
mxmlc.jar doesn't find the correct class.

Is anyone else using Ant and mxmlc.jar to compile their Flex files and
if so can you post a solution showing the correct configuration?

Thanks in advance for your help.


Brett


 
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] Compiling Flex files with Ant and mxmlc.jar

2005-05-25 Thread Brett Palmer
Joe,

Thanks for the information.  I'm trying to compile the flex file in an
exploded web application as well, but I'm still getting a no class
found exception.  Here are some comments and questions to clarify my
problem:

1. Here is my exploded flex web application directory structure
relative to my build.xml:

flex/
- contains my build.xml file

flex/webapp/MyApplication
- root context for my webapp application
- contains MyApplication.mxml

flex/webapp/MyApplication/WEB-INF/flex/jars
- contains Flex jar libraries (i.e. mxmlc.jar)


2. With the fork option set to true can I still use relative paths or
do I need to use full paths?


3. Here are some questions with regards to your suggested parameter
and my assumptions as to what they should point be:

* jar=${flex.mxmlc.jar}
- Should be a relative path to the mxmlc.jar file (i.e.
webapp/MyApplication/WEB-INF/flex/jars/mxmlc.jar)

* dir=${app.dir}
- I'm not sure what this should point to.  Should this be my current
working directory or root context to my web application?

* ${flex.dist.lib}
- I assume this points to the Flex jars directory (i.e.
webapp/MyApplication/WEB-INF/flex/jars)

* webroot
- I assume this should point to the root directory of my web application.


If you have further information on the above questions I would appreciate it.

Thanks again,

Brett

On 5/25/05, Joe Berkovitz [EMAIL PROTECTED] wrote:
 Here's a working Ant script(this is run in an exploded web application
 dir, but that's easy to change):
 
  java jar=${flex.mxmlc.jar} dir=${app.dir} fork=true
arg line=-flexlib ${flex.dist.lib} -configuration
 WEB-INF/flex/flex-config.xml -webroot . -o index.mxml.swf index.mxml/
  /java
 
 Note that when using the jar= argument to java, one doesn't specify a
 classpath.  That's probably your problem.
 
 .   ..  . ...j
 
 
 Brett Palmer wrote:
  I've been trying to create a platform neutral build for our flex
  application using Ant and mxmlc.jar but I can't get the configuration
  to work.  When I run the build I always get an class not found
  exception for the flex/tools/Mxmlc class.  I can build flex with Ant
  if I use the mxmlc.exe compiler directly from Ant, but I wanted the
  build to work without requiring the compiler script or executable.
 
  Here is my current Ant target that is not working:
 
  target name=compile_flex_jar depends=init, flex_classpath
 
echo message=mxmlc.jar = ${mxmlc.jar}/
echo message=flex_config = ${flex_config}/
echo message=flex_file = ${flex_file}/
echo message=flex.class.path = ${flex.class.path}/
echo message=flex_jars.dir = ${flex_jars.dir}/
echo message=flex_home.dir = ${flex_home.dir}/
 
java jar=${mxmlc.jar} fork=true dir=c:\dev\in2m\in2m\flex
  failonerror=true 
 
  jvmarg value=-Dassert -Dapplication.home=${env.FLEX_HOME}
  -Xms256M -Xmx512M /
  classpath
path refid=flex.class.path/
pathelement 
  location=c:/dev/in2m/in2m/flex/webapp/mvelopes/WEB-INF/flex/jars/mxmlc.jar/
  /classpath
arg value=-configuration ${flex_config} ${flex_file} /
/java
 
  /target
 
  Even when I hard code the mxmlc.jar file in the class path executing
  mxmlc.jar doesn't find the correct class.
 
  Is anyone else using Ant and mxmlc.jar to compile their Flex files and
  if so can you post a solution showing the correct configuration?
 
  Thanks in advance for your help.
 
 
  Brett
 
 
 
  Yahoo! Groups Links
 
 
 
 
 
 
 
 
 
 
 
 
 Yahoo! Groups Links
 
 
 
 
 
 



 
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] Available Backend Frameworks

2005-05-19 Thread Brett Palmer
Open for Business (www.ofbiz.org) is another backend framework that we
use with Flex.  It is a nice framework for creating enterprise
applications because it includes what I call a full application
stack.  This stack includes an entity engine, workflow engine,
service engine, and presentation tier.  For our applications we
replace the presentation tier with Flex and everything else work
great.

Brett 

On 5/18/05, Devers, Ilya [EMAIL PROTECTED] wrote:
  
 missing many. 
   
 read up on the serverside.com 
   
 JDO, EJB, spring, etc. 
  
  
  
  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
 Behalf Of dave buhler
 Sent: Wednesday, May 18, 2005 4:28 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Available Backend Frameworks
 
  
 What are the backend frameworks that are available?
  
  
 Tartan 
 Hibernate 
 ColdSpring Am I missing any?
  
  
  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 contains information that may be privileged or confidential and
 is the property of the Capgemini Group. It is intended only for the person
 to whom it is addressed. If you are not the intended recipient, you are not
 authorized to read, print, retain, copy, disseminate, distribute, or use
 this message or any part thereof. If you receive this message in error,
 please notify the sender immediately and delete all copies of this message.
  



 
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/
 




[flexcoders] Displaying dynamic HTML file in a Flex Window

2005-05-17 Thread Brett Palmer
We have a Flex application that needs to integrate with a third party
web (JSP) application.  We would prefer displaying the HTML pages from
the third party application in a child Flex windows (like a dialog
box) to make the applications appear as one.  Is there a Flex
component that can display an HTML page from another web application?

The applications reside on the same server so this should not break
any browser security policies.


Thanks in advance for your help.


Brett


 
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/