Re: [flexcoders] Re: WebORB or AMFPHP for big Application

2007-04-10 Thread Brian Dunphy
Keep in mind that AMFPHP may go under the radar (or drop off it
completely) as the lead developer has decided to pursue another career
and I have not seen any announcement of anybody else taking over for
him.

Brian

On 10 Apr 2007 06:57:44 -0700, nxzone <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> It's a OpenSource project and it's better to use OpenSource
>  solutions... You think WebORB will be only commercial in few years?
>  The free PHP version is not usable for a big project?
>
>  http://sourceforge.net/projects/timeline/
>  http://www.ideeclic.com/clients/133-cspi/v6/
>
>  --- In flexcoders@yahoogroups.com, Sajid Hussain <[EMAIL PROTECTED]>
>  wrote:
>  >
>  > WebOrb are just ready to show Thier commercial edition with
>  DataManagment like Flex Data Services ,if u could buy that in future
>  then go for weborb php
>  > else amfphp 1.9 seems also good and I hope not surely when but they
>  realy shud do something more then RPC calls in it.amfphp is working
>  with flash from good time
>  >
>  > Let me KNow which framework u r going to use for ur application I am
>  also confused
>  > I tried for zend but it seems maybe have to go for cakeamf but
>  current version dont work with amf 1.9
>  >
>  > Thanks
>  >
>  > nxzone <[EMAIL PROTECTED]> wrote: Which
>  between these both do you prefer? Which want is more stable,
>  > fast, simple
>  >
>  > WebORB VS AMFPHP
>  >
>  >
>  >
>  >
>  >
>  >
>  > -
>  > Don't pick lemons.
>  > See all the new 2007 cars at Yahoo! Autos.
>  >
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Problems with htmltext

2007-04-02 Thread Brian Dunphy
I don't think your style attributes will have any affect on the
rendering of the htmlText, as far as I know only simple tags (i.e.
bold, italics, anchor, linebreak, paragraph, image, etc) work.

Cheers,

Brian

On 02 Apr 2007 09:43:48 -0700, Guillermo Villasana
<[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Hi everyone, I am puting the following code in the Htmltext area:
>
>  En hoteles de playa proporcionamos habitaciones con vista al
>  mar y en algunos casos, jacuzzi o alberca privada. Nuestro Lounge ofrece
>  diariamente desayuno continental, y por las noches cocteles y canapés.
>  También se cuenta con servicio de planchado en una hora y aseo de
>  calzado.
>
>  The problem I have is that it doesn't show me as it should, as the span
>  is not rendered correctly. this is just a simple example, but in general
>  it is not rendering my html content correctly.
>
>  What am I doing wrong?
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Re: ActiveMQ with JBoss and Flex Data Service

2007-03-28 Thread Brian Dunphy
Not sure what how you would go about using static queues. We are using
tomcat -- we used JBoss for a bit with it's messaging capabilities,
but recently switched back to tomcat/ActiveMQ.

Best of luck,

Brian



On 28 Mar 2007 02:38:09 -0700, elmiguelestaaqui
<[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Hello (again ;-) )
>
>  I've tried with the "dynamicQueues/queue1" and it's running!!!
>  thanks thanks thanks!!!
>
>  But I would like to know how I can use static queues, any idea?
>
>  Thanks!
>
>  --- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> wrote:
>  >
>  > Make sure you have the ActiveMQ jar file in your WEB-INF/lib directory.
>  >
>  > Also, my destination XML looks significantly different:
>  >
>  > 
>  > 
>  > 
>  > 
>  > Queue
>  > javax.jms.TextMessage
>  > ConnectionFactory
>  > dynamicQueues/queue1
>  > NON_PERSISTENT
>  > DEFAULT_PRIORITY
>  > AUTO_ACKNOWLEDGE
>  > false
>  >
>  > 
>  > 
>  > Context.INITIAL_CONTEXT_FACTORY
>  >
>  org.apache.activemq.jndi.ActiveMQInitialContextFactory
>  > 
>  > 
>  > Context.PROVIDER_URL
>  > tcp://192.168.2.187:61616
>  > 
>  > 
>  >
>  > 
>  > 
>  > 
>  > 
>  > 
>  > 
>  >
>  > Most notably, I'm not sure you need the "java:" bit in your
>  >  property, and you might consider adding the
>  >  section as I have above.
>  >
>  > Best of luck!
>  >
>  > Brian
>  >
>  > On 23 Mar 2007 05:57:18 -0700, elmiguelestaaqui
>  > <[EMAIL PROTECTED]> wrote:
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > > Hi,
>  > >
>  > > I'm trying deploy activemq in jboss. All it's allright, I launch a
>  java app
>  > > that send messages to topic destination, but when I want to
>  connect from
>  > > flex consumer to that destination, no messages are received.
>  > > I have follow all steps in the activemq with jboss integration
>  tutorial:
>  > >
> http://devzone.logicblaze.com/site/integrating-apache-activemq-with-jboss.html
>  > >
>  > > In the messaging-config.xml file of flex I have written:
>  > >
>  > > 
>  > > 
>  > > 
>  > > false
>  > >
> flex.messaging.durability.FileStoreManager
>  > > 
>  > > 
>  > > javax.jms.ObjectMessage
>  > >
>  java:comp/env/JmsConnectionFactory
>  > >
>  java:activemq/topic/inbound
>  > > flexChat
>  > > NON_PERSISTENT
>  > > DEFAULT_PRIORITY
>  > > AUTO_ACKNOWLEDGE
>  > > false
>  > > 
>  > > 
>  > > 
>  > > 
>  > > 
>  > > 
>  > > 
>  > >
>  > >
>  > > In the java app I connect to "activemq/topic/inbound", and I send
>  messages.
>  > > In the flex app I create a consumer, with destination "chat-jms",
>  but I
>  > > don't receive messages
>  > > :(
>  > >
>  > > Any suggestion?
>  > >
>  > > Thanks!
>  > >
>  > >
>  >
>  >
>  > --
>  > Brian Dunphy
>  >
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] ActiveMQ with JBoss and Flex Data Service

2007-03-26 Thread Brian Dunphy
Make sure you have the ActiveMQ jar file in your WEB-INF/lib directory.

Also, my destination XML looks significantly different:





Queue

javax.jms.TextMessage

ConnectionFactory

dynamicQueues/queue1
NON_PERSISTENT

DEFAULT_PRIORITY

AUTO_ACKNOWLEDGE
false




Context.INITIAL_CONTEXT_FACTORY

org.apache.activemq.jndi.ActiveMQInitialContextFactory



Context.PROVIDER_URL

tcp://192.168.2.187:61616










Most notably, I'm not sure you need the "java:" bit in your
 property, and you might consider adding the
 section as I have above.

Best of luck!

Brian

On 23 Mar 2007 05:57:18 -0700, elmiguelestaaqui
<[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Hi,
>
> I'm trying deploy activemq in jboss. All it's allright, I launch a java app
> that send messages to topic destination, but when I want to connect from
> flex consumer to that destination, no messages are received.
> I have follow all steps in the activemq with jboss integration tutorial:
> http://devzone.logicblaze.com/site/integrating-apache-activemq-with-jboss.html
>
> In the messaging-config.xml file of flex I have written:
>
> 
> 
> 
> false
> flex.messaging.durability.FileStoreManager
> 
> 
> javax.jms.ObjectMessage
> java:comp/env/JmsConnectionFactory
> java:activemq/topic/inbound
> flexChat
> NON_PERSISTENT
> DEFAULT_PRIORITY
> AUTO_ACKNOWLEDGE
> false
> 
> 
> 
> 
> 
> 
> 
>
>
> In the java app I connect to "activemq/topic/inbound", and I send messages.
> In the flex app I create a consumer, with destination "chat-jms", but I
> don't receive messages
> :(
>
> Any suggestion?
>
> Thanks!
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Storing Dates & Times in VO's

2007-03-20 Thread Brian Dunphy
I would store it in a format that both PHP and Flex understand and can
manipulate (i.e. epoch milliseconds). That way you can convert it to
either a PHP date object or a Flex date object for convenience when
you need to.

Cheers,

Brian

On 3/20/07, Sam Shrefler <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Kevin:
>
> I dont' use AMFPHP so I can't specifically help you with that situation, but
> to your first question:  I would recommend figuring out a way to get your
> PHP DateTypes to automatically transfer to Date type's in Flex.  I went down
> both roads (Date and String in flex) and found that there is a Date Type in
> Flex for a reason.  It makes your life easier when dealing with Dates,
> especially comparing, sorting and performing Date arithmetic.  So my
> recommendation would be to make the extra effort to get your Object to
> transfer correctly typed properties...
>
> Sam
>
>
>
> On 19 Mar 2007 17:51:09 -0700, Kevin <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> >
> > Should Dates & Times be stored as Strings in Flex VO's?
> >
> > If not, what is the proper way to assign a value from the server
> > (which generally comes in as a string) to a Date type in a Flex VO?
> >
> > I have been struggling with this. I am using AMFPHP and mapping my
> > PHP objects to Flex for calls returned from the server, however, my
> > date fields are not mapping. Does a setter function get call when
> > you are doing VO mapping??
> >
> > Thanks for the help.
> >
> > Thanks, Kevin
> >
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Cairngorm for Apollo?

2007-03-19 Thread Brian Dunphy
I think that the Flex 2 based Cairngorm will work fine if you intend
to develop on the Apollo platform with the Flex SDK.

Brian

On 19 Mar 2007 07:24:54 -0700, João Fernandes
<[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I think the subject says all, will be a cairngorm version for Apollo?
>
>  Thanks,
>
>  João Fernandes
>  


-- 
Brian Dunphy


Re: [flexcoders] Trace Output Stopped Working

2007-03-16 Thread Brian Dunphy
Are you using a Mac?

I noticed that when I installed the latest 10.4.9 updates on my
Macbook Pro, Apple pushed the install of Flash Player 9.0.28.0
(non-debug). It took me a few minutes to figure out that my debug
version of the player had been trashed, and that I had to re-install.

Hope this helps!

Brian

On 16 Mar 2007 07:32:48 -0700, Paul Whitelock <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Yesterday for some mysterious reason the trace() statement stopped
>  sending data to the console. Event a simple statement like
>  trace("Here") did nothing (and yes, I was in debug mode). I tried
>  restarting Eclipse, rebooting the computer, etc. and nothing helped.
>  Finally I uninstalled the Flex plug-in, trashed Eclipse and all
>  Eclipse workspace preferences and reinstalled everything cleanly from
>  scratch. That fixed the problem ... or so I thought.
>
>  This morning I started working and tossed a trace statement into some
>  code I'm working on and again there was no output in the console. The
>  only thing that shows up is:
>
>  [SWF] /cmq/FTApp-debug.swf - 715,093 bytes after decompression
>
>  I don't want to have to continually reinstall Eclipse and Flex
>  everyday as it's a bit time consuming. Anyone have an idea of what's
>  going on and how to get trace statements working again? Thanks!
>
>  Paul
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Form Handling?

2007-03-14 Thread Brian Dunphy
Not a native feature built in to Flex I don't think, however one way
to accomplish this would be to loop through each of the children of
the Form (referenced by id), and then loop through each of the
children of the that child, see if they are of type TextInput,
TextArea, ComboBox, CheckBox, RadioButton, etc -- and then store the
id/value of that child in an ArrayCollection for sending later.

Does that sound like what you're after?

Brian

On 3/14/07, Kevin <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> When handling form submission.  Is there a way to grab all the fields
> wrapped in a specific Form tag and send them as an object to a function much
> like a GET or POST works in HTML.
>
> a form example:
>
> 
>  
>  
>  
>  
>  
>  
>  
>  
>
> 
>   itemClick="clickHandler(event);"/>
>  
>
> can I grab all the values of the submission in as userForm.values (or
> something like that) OR do I have to get each one individually as
>
> username.text
> firstname.text
> lastname.text
>
> ...blah, blah...
>
>
> thanks, Kevin
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Special characters after end tag of XML document (HTTPService issue)

2007-03-05 Thread Brian Dunphy
Peter,

I have not made any changes to the XML.ignoreWhitespace property.

I have implemented the trim as suggested, and I have also put a check
to see if the last character of the string is a > (a quick way to see
if there's trailing junk characters).

What I'm experiencing now is the same issue as before, however now I
can see the trailing characters traced in my flashlog. Just as a
sample, `á!àê!àî!`á! ï! appears at the end of one of them.

I have noted that we are experiencing this with more than one servlet
at this point, it appears that all of the servlets in our application
might be affected.

Any other thoughts/suggestions?

Thanks again,

Brian


On 3/5/07, Peter Farland <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
> Perhaps your special characters trailing the document are whitespace (tabs,
> new lines, etc)?
>
> There are known issues with constructing an XML instance (the basis for E4X)
> from Strings containing whitespace between processing instructions and the
> start of the root element (or trailing whitespace after the root element)
> and with XML.ignoreWhitespace set to false.
>
> Have you by any chance set XML.ignoreWhitespace to false?
>
> If so, for your particular scenario of trailing special characters you could
> keep HTTPService's resultFormat as "text" to get it as a raw String, then
> use mx.utils.StringUtil.trim() on the String, and then construct a new XML
> instance from your String new XML(result).
>
>
>  
>  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of klumikaze
> Sent: Monday, March 05, 2007 2:40 PM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Special characters after end tag of XML document
> (HTTPService issue)
>
>
>
>
>
> I've got an E4X HTTPService in Flex that is calling a servlet which returns
> an XML
> document. Approximately 80% of the time, the servlet works fine and the
> HTTPService
> result is a valid XML doc -- the rest of the time, the HTTPService is giving
> me a fault:
>
> [RPC Fault faultString="Error #1088: The markup in the document following
> the root
> element must be well-formed." faultCode="Client.CouldNotDecode"
> faultDetail="null"]
>
> After taking a look at the servlet directly in the browser (removing Flex
> from the equation),
> I have not noticed any issue with the XML returned and we have run it
> through several
> online validation tools. The servlet code that generated the XML is fine as
> well, we have
> checked that numerous times.
>
> I thought that the problem might be the resultFormat of the HTTPService
> (currently E4X),
> so I changed it to 'text' so I could see if there was any special characters
> or issues with the
> XML after Flex called the servlet. I discovered that there are seemingly
> random special
> characters being appended to the end of the document (after the end tag).
> The string of
> random special characters ranges from 2-10 in length.
>
> Note: I have since put the resultFormat of the HTTPService back to e4x.
>
> Does anybody have any idea why this might be happening? We have observed
> this on
> Windows, OS X and Ubuntu Linux platforms, in IE7, Safari, Firefox (Mac) and
> Firefox
> (Ubuntu).
>
> Thanks for your help,
>
> Brian
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] flash 9 alpha IDE run on mac os x intel?

2007-02-27 Thread Brian Dunphy
No, it is not available for Intel Macs at this time.

I've setup a good development environment on an Intel Mac by doing the
following:

- Using Flex Builder 2 (OS X) for my Actionscript 3 development environment
- Using Parallels (virtualization software) to load Flash 9 w/
Actionscript 3 preview in Windows
- Simply sharing folders between the two operating systems, save my
FLA file within my Actionscript 3 Project directory on the OS X side,
that way the classpath is setup properly.

The benefit to this approach is that you have a real AS3 IDE with code
completion, syntax checking, etc.

To be honest, it's much quicker on an Intel-based Mac to develop in
Flash 8/Flash 9 under Parallels than it is to try to use Flash 8
natively under OS X. Can't wait until Flash 9 is released as a
universal binary (I think the peasants might rejoice).

Hope this helps!

Brian

> On /26/07, disasterstruckonthedayofmybirth <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Hey Everyone, sorry this is on the wrong list. I can't seem to get
>  flashcoders list to subscribe me. Is the flashcoders list still up and
>  running?
>
>  anyway, does anyone know if flash 9 alpha IDE is supported on Intel
>  Mac? I try compiling and it tells me the java runtime enviornment
>  failed to intiailize. Just curious if anyone has experienced this?
>
>  thanks
>  a
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Creating a Video Player in Flex

2007-02-27 Thread Brian Dunphy
You can also take this one step farther and put an HSlider and a
ProgressBar inside a Canvas container (overlaying one over the other)
and create a video scrubber that also displays percentage loaded.

Brian

On 2/26/07, Alan Rother <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Awesome
>
> Thank you. I had searched the archives but didn't find this one.
>
> =]
> --
> Alan Rother
> Adobe Certified Advanced ColdFusion MX 7 Developer 


-- 
Brian Dunphy


Re: [flexcoders] Re: Just curious, A big development team or individual developers

2007-02-23 Thread Brian Dunphy
INDIVIDUAL

Just me doing Flex/UI, although we only have 3 developers total so
we're quite small. I suspect you'll see a trend of small Flex teams in
most startups/companies adopting Flex for the first time since it is
so powerful and efficient to develop in that you really don't need
huge teams for most projects.

Brian

On 2/23/07, mgrayfmr <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Same here - just me, but hopefully not for long.
>
>  --- In flexcoders@yahoogroups.com, "Paul DeCoursey" <[EMAIL PROTECTED]> 
> wrote:
>  >
>  > We need a team but alas it is just me (INDIVIDUAL).
>  >
>  > --- In flexcoders@yahoogroups.com, "boy_trike"  wrote:
>  > >
>  > > I wonder how many people are working on TEAM to develop their flex
>  > applications (and how
>  > > many are 1 or 2 men (whoops I mean PEOPLE) developers. Please
>  > discount the Graphic
>  > > artists, HTML coders. et. al. If you have 3 or more people working
>  > on the same flex
>  > > application, please answer as a TEAM. 2 or 1, INDIVIDUAL.
>  > >
>  > > Thanks
>  > > Bruce
>  > >
>  >
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Re: Creating Thumbnails from large images on the fly. Possible?

2007-02-22 Thread Brian Dunphy
I'm not sure that is possible given the nature of how data is stored
in image files... maybe somebody else has some insight in to the
topic.

Brian

On 2/22/07, joebob409 <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Right, but you are still having to download the entire image file and
>  just sizing it right? What I was wondering if it is possible to only
>  donwload part of the image file like a segment, or a very low quality
>  to save the user bandwidth. Is that possible with AS3 on the fly, or
>  would I have to use something like imagemagik for that?
>
>  --- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> wrote:
>  >
>  > Definitely possible -- I do it using a function like so:
>  >
>  > public function getBitmapData(target:UIComponent, scale:Number =
>  > 0.):BitmapData
>  > {
>  > var bd:BitmapData = new BitmapData(target.width * scale,
>  > target.height * scale);
>  > var m:Matrix = new Matrix();
>  > m.scale(scale, scale);
>  > bd.draw(target, m);
>  > return bd;
>  > }
>  >
>  > Basically what that function does, it accepts a target UIComponent to
>  > draw the thumbnail from (in my case it's usually charts, but to do
>  > what you're after you might use an Image or an SWFLoader). It also
>  > accepts a scale to upsize/downsize the bitmap to... by default it does
>  > it 1/3 of the size.
>  >
>  > Cheers,
>  >
>  > Brian
>  >
>  >
>  > On 2/22/07, joebob409 <[EMAIL PROTECTED]> wrote:
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > > I am wondering if it is possible with AS3 to create thumbs from large
>  > > image files on the fly. Maybe only downloading partial image data and
>  > > shrinking the size. Anyone know if that is possible or any
>  > > alternative methods I could possibly use for this?
>  > >
>  > > Thanks
>  > >
>  > >
>  >
>  >
>  > --
>  > Brian Dunphy
>  >
>
>  


-- 
Brian Dunphy


Re: [flexcoders] background image

2007-02-22 Thread Brian Dunphy
Couple of methods... one of the better ones I've seen is at the bottom
of the following post:
http://www.flashcomguru.com/index.cfm/2006/12/6/Tiling-background-image-in-Flex2

Cheers,

Brian

On 2/22/07, mazarflex <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> i want to add a background image that is tiled to my application.Is
>  there a way to do this? Also, can i use adjust opacity
>  with it too?
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Creating Thumbnails from large images on the fly. Possible?

2007-02-22 Thread Brian Dunphy
Definitely possible -- I do it using a function like so:

public function getBitmapData(target:UIComponent, scale:Number =
0.):BitmapData
{
var bd:BitmapData = new BitmapData(target.width * scale,
target.height * scale);
var m:Matrix = new Matrix();
m.scale(scale, scale);
bd.draw(target, m);
return bd;
}

Basically what that function does, it accepts a target UIComponent to
draw the thumbnail from (in my case it's usually charts, but to do
what you're after you might use an Image or an SWFLoader). It also
accepts a scale to upsize/downsize the bitmap to... by default it does
it 1/3 of the size.

Cheers,

Brian


On 2/22/07, joebob409 <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I am wondering if it is possible with AS3 to create thumbs from large
>  image files on the fly. Maybe only downloading partial image data and
>  shrinking the size. Anyone know if that is possible or any
>  alternative methods I could possibly use for this?
>
>  Thanks
>
>  


-- 
Brian Dunphy


Re: [flexcoders] An open-source to Flex Data Services

2007-02-15 Thread Brian Dunphy
I read through most of the post/description of the open source
package, one question though:

Does this support Flex Messaging via RTMP (i.e. Producers/Consumers
within Flex connected to JMS queues/topics)?

Thanks,

Brian

-- Forwarded message --
From: Scotty Scott <[EMAIL PROTECTED]>
Date: Feb 15, 2007 2:28 PM
Subject: Re: [flexcoders] An open-source to Flex Data Services
To: flexcoders@yahoogroups.com








awesome, cant wait to try this out.

Thanks

On 2/15/07, Igor Costa <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Hey guys
>
> Maybe you see this as very instresting tool
>
> http://www.igorcosta.org/?p=22
>
>
> Regards.
>
> --
> 
> Igor Costa
> www.igorcosta.org
> www.igorcosta.com
> skype: igorpcosta



-- 
Scotty Scott
http://www.franciswscott.com

 

-- 
Brian Dunphy


Re: [flexcoders] On E4X Programming

2007-02-13 Thread Brian Dunphy
http://www.actionscript.org/resources/articles/222/1/Intro-to-E4X/Page1.html

That's a pretty good article on beginning E4X in Flex 2 / AS3.

Cheers,

Brian

On 2/13/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
> There's a lot in the Flex help docs... or do you mean outside of the Flex
> docs?  Try this:
>
> http://life.neophi.com/danielr/2006/04/flex_2_beta_2_actionscript_3_a.html
>
>
>
> Jason Merrill
> Bank of America
> Learning & Organizational Effectiveness
>
>
>
>
>
>
>
>
>  
>  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Pedro Pastor
> Sent: Tuesday, February 13, 2007 6:21 AM
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] On E4X Programming
>
>
>
>
>
> From a previous discussion, it seems like people coming from XPath
> language (like me) meed a kind or re-training on the E4X way of
> dealing with XML traversing and query.
>
> Does anybody know a source of documentation for E4X with examples and
> extended information about have E4X "interpreter" works. I've been
> reading the "official" E4X reference documentation, but it seems
> that's not enough (at least for a XPath biased people like me).
>
> Regards.
>
> Pedro
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] FlashVars not working

2007-02-06 Thread Brian Dunphy
A bit off topic, but I am using FlashVars extensively for a new
project, and I  recommend switching to SWFObject instead of using the
built-in html-template for Flex 2 projects... better all around and
it's much easier to manage your FlashVars as it's all in one location.

Cheers,

Brian

On 2/6/07, Brendan Meutzner <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> To access the variables inside of Flex, you need to use
> 'Application.application.parameters.variableName'.
>
> And the parameters need to be defined within the 'AC_FL_RunContent' method
> in the html container (the one where hasRequestedVersion is true... as
> follows:
>
> -
> ...
> "allowScriptAccess","sameDomain",
> "flashvars", "var1=true&var2=false",
>  "type", "application/x-shockwave-flash",
> ...
> -
>
>
> Brendan
>
> On 2/6/07, g_vaccarezza < [EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> >
> > this is driving me mad!
> > Can you guys tell me what am I doin wrong?
> >
> > See I have to pass a variable to my flex app then just fill a
> > textfield with that value.
> >
> > I wrap the app like this:
> >
> > 
> > 
> > etc...
> >  etc...
> > 
> > 
> >
> > Then from within the movie I call my function ON COMPLETE
> >
> > private function initApp():void{
> > requestText.text = theText;
> > }
> >
> > I took this from the livedocs but nothing seems to work...
> > Am I writing something wrong? sintax error or what?
> > this shouldn't be that diff'cult!
> >
> > Thanks
> > -g
> >
> >
>
>
>
> --
> Brendan Meutzner
> Stretch Media - RIA Adobe Flex Development
> [EMAIL PROTECTED]
>  http://www.stretchmedia.ca 


-- 
Brian Dunphy


Re: [flexcoders] Drag-Resize MDI Example

2007-02-02 Thread Brian Dunphy
I've created a Dashboard that acts as an MDI with custom Widgets
(TitleWindows that flip over to configure, etc).

The one thing I'd really like to see though is some example code for
is how to tile the windows evenly across the screen. I assume that
there is some degree of math to figuring out how many windows can fit
in the user's screen resolution per row/column/etc, but I've never
really taken the time to go through it in depth.

Brian

On 2/2/07, Clint Tredway <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I would like to see the source for this... I am interested in seeing how its
> done.
>
> On 2/2/07, Janis Radins <[EMAIL PROTECTED] > wrote:
> >
> >
> >
> >
> >
> >
> > Hi!
> >
> > I think i just made somthing you were talking about.
> > See this http://www.mediaverk.lv/trash/MinisableResizableWindow/
> > This is just a very first version just got it working so there mutch be
> some problems.
> > I can make sources available if youre interested.
> >
> > Janis
> >
> >
> > 2007/1/29, John Kirby < [EMAIL PROTECTED]>:
> > >
> > >
> > >
> > >
> > >
> > >
> > > Yes!... but it looks like the source is not available
> > >
> > > Dave Carabetta said the following:
> > >
> > >
> > >
> > > Do you mean something like this?
> > >
> > >
> http://www.cynergysystems.com/blogs/page/andrewtrice?entry=enhanced_flex_mdi_interface
> > >
> > > Regards,
> > > Dave.
> > > Cynergy Systems, Inc.
> > >
> > >
> > > On 1/14/07, John Kirby <[EMAIL PROTECTED] > wrote:
> > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Anyone know of a Flex 2 Drag-Resize MDI/Panel example?
> > > >
> > > > --
> > > > Whether you think that you can, or that you can't, you are usually
> right.
> > > >  - Henry Ford
> > > >
> > >
> > >
> > >
> > > --
> > > Whether you think that you can, or that you can't, you are usually
> right.
> > >  - Henry Ford
> > >
> >
> >
> >
> >
>
>
>
> --
> http://indeegrumpee.spaces.live.com/ 


-- 
Brian Dunphy


Re: [flexcoders] How do you make a copy of an XMLListCollection ( not instance of ) ...

2007-02-02 Thread Brian Dunphy
import mx.utils.ObjectUtil;

var newList:Object = ObjectUtil.copy(oldList);

Cheers,

Brian

On 2/1/07, helihobby <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Can anyone please post sample code of how to make a copy of a
>  XMLListCollection.
>
>  Not a copy of the instance object but a new XMLListCollection object.
>
>  Thank you for all the help,
>
>  Sean.
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Move effect with lager images-> flickering images

2007-02-01 Thread Brian Dunphy
Ely over at QuietlyScheming.com just created a SuperImage component
which I believe fixes the issue you're experiencing.

http://www.quietlyscheming.com/blog/2007/01/23/some-thoughts-on-doubt-on-flex-as-the-best-option-orhow-i-made-my-flex-images-stop-dancing/

Cheers,

Brian

On 2/1/07, maikelsibbald <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I've got a HBox with number(about 10) of images (375x200). For some
>  reason the images are flickering. It's really anoying.
>
>  I'm changing they x-property and let the moveEffect handle the rest,
>  for some reason it really looks weird.
>
>height="100%"
>  horizontalGap="35"
>  paddingTop="30"
>  paddingLeft="30"
>  paddingRight="30"
>  moveEffect="previewMove">
>dataProvider="{mediaTestHelper.galleryDataArray}">
>  
>  
>  
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Re: Flex applications look like Fisher-Price toys

2007-01-31 Thread Brian Dunphy
VERY nice Dave, you guys do awesome work.

Just curious, did your team use the DistortionEffects library by Alex
Uhlmann to do the CubeRotate effect on the right side panel?

Thanks,

Brian

On 1/31/07, Dave Wolf <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
>  For everyone who was interested in seeing more samples of real Flex
>  applications and the extent to which you can skin up Flex using all
>  the built in features, check out Cynergy TV. The first episode is the
>  Flex Showcase and shows a small handful of apps we have built over the
>  last year with Flex.
>
>  http://www.cynergysystems.com/blogs/page/davewolf?entry=i_ll_show_you_mine
>
>  http://www.cynergysystems.tv
>  http://www.cynergytv.com
>
>  CynergyTV itself is a Flex2 as well. We will be hosting many more
>  episodes including tutorials, panels, and more samples and examples.
>
>  Cheers,
>
>  --
>  Dave Wolf
>  Cynergy Systems, Inc.
>  Adobe Flex Alliance Partner
>  http://www.cynergysystems.com
>  http://www.cynergysystems.com/blogs
>
>  Email: [EMAIL PROTECTED]
>  Office: 866-CYNERGY
>
>
>  --- In flexcoders@yahoogroups.com, "David Mendels" <[EMAIL PROTECTED]> wrote:
>  >
>  > Hello,
>  >
>  > Many screenshots of Flex applications here:
>  > http://www.flickr.com/photos/flexapps/
>  >
>  > Many of them look not at all like the out of the box look of Flex.
>  >
>  > Regards,
>  > David
>  > Adobe
>  >
>  >
>  > 
>  >
>  > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
>  > Behalf Of Shannon Hicks
>  > Sent: Sunday, January 28, 2007 11:27 AM
>  > To: flexcoders@yahoogroups.com
>  > Subject: Re: [flexcoders] Flex applications look like Fisher-Price toys
>  >
>  >
>  >
>  > Flex 2 has unlimited design potential. You are not limited like you
>  > think... If a component won't do what you want, you can always re-skin
>  > it. Here's an example of a Flex site that looks pretty much nothing like
>  > the standard skin:
>  >
>  > http://www.thebetterside.com/scrawl/ScrawlExample3.html
>  > <http://www.thebetterside.com/scrawl/ScrawlExample3.html>
>  >
>  > Shan
>  >
>  > Paul Barbieux wrote:
>  >
>  > Hi;
>  >
>  > I'm a developper but also a web designer.
>  > And I'm a beginner with Flex...
>  > But I am frustrated with the possibilities of design of Flex.
>  > All Flex applications I saw have same look: great buttons and
>  > input
>  > fields, great gap between lines. Every elements are great: these
>  > applications look like Fisher-price toys ! (you know ? Toys for
>  > children)
>  >
>  > Yes, the http://www.scalenine.com/ <http://www.scalenine.com/>
>  > shows beautiful themes. But all
>  > components have same size !
>  >
>  > A have made a click-model for an application in HTML, and now I
>  > must
>  > write it with Flex: I loose 1/3 of my page because I can't
>  > reduce gab
>  > between lines, I can't reduce padding between the label and the
>  > border
>  > of the buttons, ... (oh yes I can reduce all elements: but
>  > labels and
>  > texts become trucanted !)
>  >
>  > - Does a solution exist?
>  > - Can someone show me a Flex site where there is a real work of
>  > design?
>  > - Can I expect improvements with Flex 3.0 ?
>  >
>  > Thank's
>  >
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Re: Full Application Reset?

2007-01-30 Thread Brian Dunphy
Could be just me, but if that does work it seems like kind of a
hack... I think most applications would use something similar to the
shell concept. It let's you have a lot of flexibility on what
operations to perform on login/logout, and it will work for
applications outside of the browser I'm guessing.

Brian

On 1/30/07, Tracy Spratt <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
>
>
> What abour navigateToUrl, pointing to the app itself, using _self as the
> target?
>
>
>
> Just thinking, haven't tried it.
>
>
>
> Tracy
>
>
>
>  
>
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of brent_trx
>  Sent: Tuesday, January 30, 2007 10:37 AM
>  To: flexcoders@yahoogroups.com
>  Subject: [flexcoders] Re: Full Application Reset?
>
>
>
>
>
>
>
> That sounds like exactly what I need to do. Thanks for the help!
>
>  > Don't feel bad, this left me scratching my head when I encountered it
>  > as well. I was used to just displaying a titlewindow for a login
>  > screen, making it modal, and having the application blurred in the
>  > background.
>  >
>  > My way of implementing an application reset was to have a "shell" app
>  > that handled the instantiation of a login or my main application. When
>  > the shell app first loads, it displays a Login application... after
>  > login, the login app gets removed and the main application gets
>  > created. Upon logout, vice versa.
>  >
>  > Hope this helps!
>  >
>  > Brian
>  >
>  > On 1/30/07, Oleg Filipchuk <[EMAIL PROTECTED]> wrote:
>  > >
>  > >
>  > >
>  > >
>  > >
>  > >
>  > > Why don't you just refresh the page where your application is
>  embedded?
>  > >
>  > > On 30/01/07, Brent Dearth <[EMAIL PROTECTED] > wrote:
>  > > >
>  > > >
>  > > >
>  > > >
>  > > >
>  > > >
>  > > > This has got to be an obvious implementation, but it's left me
>  scratching
>  > > my head. Here's my scenario:
>  > > >
>  > > > When user performs a logout in an authenticated flex
>  application, I would
>  > > like to fully re-initialize the application back to it's initial
>  load state
>  > > (as if the SWF was being accessed anew). All children components
>  are reset,
>  > > or ideally destroyed and re-created. There are portions of this
>  application
>  > > that may contain sensitive data, and thus, I'm not willing to
>  leave it to
>  > > chance by manually calling custom initialization functions on each
>  component
>  > > / sub-component / etc.
>  > > >
>  > > > I've thought about recursively iterating through the Application's
>  > > children, looking for these custom methods and executing them when
>  > > encountered, but there has got to be a cleaner, simpler way that I am
>  > > missing. I didn't see much on the mx.core.Application
>  documentation that was
>  > > relevant, beyond accessing children properties manually.
>  > > >
>  > > > Ideas?
>  > > >
>  > >
>  > >
>  > >
>  > > --
>  > > Best regards,
>  > > Oleg Filipchuk
>  >
>  >
>  > --
>  > Brian Dunphy
>  >
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Full Application Reset?

2007-01-30 Thread Brian Dunphy
Don't feel bad, this left me scratching my head when I encountered it
as well. I was used to just displaying a titlewindow for a login
screen, making it modal, and having the application blurred in the
background.

My way of implementing an application reset was to have a "shell" app
that handled the instantiation of a login or my main application. When
the shell app first loads, it displays a Login application... after
login, the login app gets removed and the main application gets
created. Upon logout, vice versa.

Hope this helps!

Brian

On 1/30/07, Oleg Filipchuk <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Why don't you just refresh the page where your application is embedded?
>
> On 30/01/07, Brent Dearth <[EMAIL PROTECTED] > wrote:
> >
> >
> >
> >
> >
> >
> > This has got to be an obvious implementation, but it's left me scratching
> my head. Here's my scenario:
> >
> > When user performs a logout in an authenticated flex application, I would
> like to fully re-initialize the application back to it's initial load state
> (as if the SWF was being accessed anew). All children components are reset,
> or ideally destroyed and re-created. There are portions of this application
> that may contain sensitive data, and thus, I'm not willing to leave it to
> chance by manually calling custom initialization functions on each component
> / sub-component / etc.
> >
> > I've thought about recursively iterating through the Application's
> children, looking for these custom methods and executing them when
> encountered, but there has got to be a cleaner, simpler way that I am
> missing. I didn't see much on the mx.core.Application documentation that was
> relevant, beyond accessing children properties manually.
> >
> > Ideas?
> >
>
>
>
> --
> Best regards,
> Oleg Filipchuk 


-- 
Brian Dunphy


Re: [flexcoders] flexbuilder 2.0.1 css editor support

2007-01-06 Thread Brian Dunphy
Still works for me on the Mac version of Flex Builder 2.0.1.

Are you editing an external CSS file or inline?

Brian

On 1/6/07, Paolo Bernardini <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> What happened to the css editor support in flexbuilder 2.0.1?
> before with version 2 you had code hinting for css file, now after updating
> to version 2.0.1 doesn't work anymore.
>
>  


-- 
Brian Dunphy


Re: [flexcoders] change markup in richTextEditor

2006-12-29 Thread Brian Dunphy
When working on a CMS in Flex, I was making heavy use of the RTE
component, and I too discovered the horrible markup it generates. My
only advice would be to write a good formatter using regex in either
AS3 or your backend. I started to write one in AS3 but it's nowhere
near completion.

I disable a lot of the functionality of the RTE in the CMS, i.e. I
don't allow them to change fonts, colors, etc. I only allow them to
format lists, paragraphs, links, etc. It cuts down on the bad markup
(not sure if this is an option for you).

Best of luck!

Brian

On 12/28/06, joshuagatcke <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I am wondering if it is possible to change the markup that is output by the
> rich text editor, if
>  anyone has any tips or advice, it would be much appreciated.
>
>  Thanks in advance,
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Re: Debug Flash Player 9 for Intel Mac

2006-12-22 Thread Brian Dunphy
The Flex Builder 2 for Mac actually has a newer version of the Flex 2
SDK that requires you to explicitly import things instead of calling
them by their classpath. There are a number of other changes as well,
I can't remember where I saw a list of them but there is one out
there.

Hopefully Adobe will release the latest Intel Mac debug player soon, I
find the one that came with the Mac beta extremely buggy (freezes
Safari, Firefox, often ignores keystrokes, etc).

Cheers,

Brian

On 12/22/06, fuad_kamal <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> I just finished switching my development environment from PC to a new
>  Intel Mac. I also had the issue with the debug player not playing,
>  and I also didn't find any separate download for the Intel debug
>  player on Adobe's site...so I followed their alternative suggestion
>  and re-installed Flex Builder (beta). The Flex Builder installer runs
>  a Flash Debug player installation at the end of the flex install, and
>  that worked. They really ought to release a stand-alone installer for
>  Intel Macs, though. I followed the link from the error thrown in the
>  Power-PC installer but it lead to the non-debugger (release) version
>  of the flash player for intel mac.
>
>  Also, another note, I noticed this time during the flex builder
>  install that it failed when trying to write a file to my home
>  directory. I suspect this might be a similar problem to the Photoshop
>  CS3 Beta install issue - my home directory is encrypted using
>  FileVault, and the CS3 beta install workaround was to disable FileVault...
>
>  Two things I noticed immediately when starting development in the new
>  Mac environment:
>
>  a) I can't seem to break my panels across multiple displays, as I
>  could in the Windows PC environment. Anyone know how to do this on Mac?
>
>  b) The Mac version seems smarter! It picked up an error in my project
>  that wasn't getting picked up in the PC environment (missing import
>  statement). I suspect the reason is that the project is huge...maybe
>  it's a memory or buffer issue or something (my PC is quite old while
>  the Mac is really souped up).
>
>
>  --- In flexcoders@yahoogroups.com, "aspentreemedia" <[EMAIL PROTECTED]> 
> wrote:
>  >
>  > I gave it another try on the download page but I get the error that
>  > I'm trying to install the PPC version and not the universal binary for
>  > Intel Macs. I guess I'll try and download Flex Builder and see if I
>  > can get the new version that way.
>  >
>  > Mike
>  > -
>  > Mike Weiland
>  > Aspen Tree Media
>  > (877)659-1652 | FAX: (512)828-7105
>  > http://www.AspenTreeMedia.com
>  > http://www.CertificateCreator.com - Create & Print Awards and
>  Certificates
>  >
>  >
>  > --- In flexcoders@yahoogroups.com, "Brian Dunphy"  wrote:
>  > >
>  > > Greg,
>  > >
>  > > Do you have the Universal binary of Firefox? I remember when we were
>  > > waiting for the first Intel Mac player to come out, we had to run the
>  > > PowerPC binary of Firefox through emulation, and the player worked
>  > > (but slow).
>  > >
>  > > I'm just curious because I have tried installing the one on that page
>  > > about 10 times over the past few weeks and it always says it's PPC
>  > > only... I've seen many other reports of the same issue.
>  > >
>  > > Thanks,
>  > >
>  > > Brian
>  > >
>  > > On 12/12/06, Greg Newman  wrote:
>  > > >
>  > > >
>  > > >
>  > > >
>  > > >
>  > > >
>  > > > They're available on Adobe's site here:
>  > > > http://www.adobe.com/support/flashplayer/downloads.html
>  > > > It's working fine on my OSX MBP.
>  > > >
>  > > >
>  > > >
>  > > >
>  > > >
>  > > > On 12/12/06, Brian Dunphy  wrote:
>  > > > >
>  > > > >
>  > > > >
>  > > > >
>  > > > >
>  > > > >
>  > > > > Does anybody have the debug Flash Player 9 for Intel macs? I've
>  > heard
>  > > > > it's included in the Apollo private beta right now... is it
>  against
>  > > > > any agreements for somebody in that beta to send us the debug
>  player
>  > > > > only? I'm really hurting for a debug player in OS X right now.
>  > > > >
>  > > > > Obviously if this goes against any agreements when you enter the
>  > > > > private beta, please disregard this request.
>  > > > >
>  > > > > Thanks,
>  > > > >
>  > > > > Brian
>  > > > >
>  > > >
>  > > >
>  > > >
>  > > > --
>  > > >
>  > > > - Greg Newman
>  > > > ---
>  > > > http://www.carbon8.us
>  > > > http://www.busyashell.com
>  > > >
>  > > >
>  > >
>  > >
>  > > --
>  > > Brian Dunphy
>  > >
>  >
>
>
>
>  


-- 
Brian Dunphy


Re: RE: [flexcoders] Question regarding Alex Uhlmann's DistortionEffects library

2006-12-17 Thread Brian Dunphy
Hey Alex,

Awesome to have the actual creator of the library reply to this post!
Great work by the way, it's a great starting point to advanced
graphical effects in Flex.

My particular problem is, is that my Widgets are based on one Panel
with the children changing (to configure them), as opposed to multiple
panels. I'm going to look over your examples more carefully however,
as there may be something I've missed.

Will drop you an e-mail with an example after I've looked over them once more.

Thanks again,

Brian

12/17/06, Alex Uhlmann <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
> Hi Brian,
>
> have you checked out the supplied SimpleFlipTransition.mxml? This example
> shows usuage of States and Transitions with the distortion effects.
> Generally, the idea is to first apply the effect and afterwards the state
> change of the view (i.e. via currentState, ViewStack, manually
> addChild/removeChild etc). Also of interest might be SimpleManualFlip.mxml.
> The effects should work in every environment. If you experience problems,
> let's fix them. Feel free to drop me an email offlist (with a reproducable
> example).
>
> Best,
> Alex
>
>
>
>
> Alex Uhlmann
> Consultant (Rich Internet Applications)
> Adobe Consulting
> Westpoint, 4 Redheughs Rigg,
> South Gyle, Edinburgh, EH12 9DQ, UK
> p: +44 (0) 131 338 6969
> m: +44 (0) 7917 428 951
> [EMAIL PROTECTED]
> http://weblogs.macromedia.com/auhlmann
>
>
>
>  
>  From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of Brian Dunphy
> Sent: 14 December 2006 20:07
> To: flexcoders@yahoogroups.com
> Subject: [flexcoders] Question regarding Alex Uhlmann's DistortionEffects
> library
>
>
>
>
>
> I've been looking in to Alex Uhlmann's DistortionEffects library
> (http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm)
> and I'm trying to figure out how to implement these effects in to an
> existing application.
>
> Essentially, here's my problem:
>
> We have an existing application with a dashboard. Within that
> dashboard are Widgets. Widgets are an extension of DragPanel
> (extension of TitleWindows) that are the children of a Canvas. I chose
> to implement my own drag/drop functionality with TitleWindows so that
> I could restrict dragging to the Canvas area.
>
> Each Widget has a front (main UI) and a back (configuration).
> Currently I am using states and simple transitions to go back and
> forth between the two views of a Widget. My end goal is to use a Flip
> effect (available in the DistortionEffect library) to flip the widgets
> over to configure them, just like an OS X dashboard widget.
>
> All of the examples on Alex's site seem to make use of two or more
> Panels within a ViewStack to accomplish the flipping effect. Can
> anybody think of a way to implement the desired effect without
> completely changing my Widget architecture?
>
> My next step might be to try to make a draggable ViewStack container
> if I can't figure out another option.
>
> Any ideas would be appreciated!
>
> Thanks,
>
> Brian Dunphy
>
>
>  


-- 
Brian Dunphy


[flexcoders] Question regarding Alex Uhlmann's DistortionEffects library

2006-12-14 Thread Brian Dunphy
I've been looking in to Alex Uhlmann's DistortionEffects library
(http://weblogs.macromedia.com/auhlmann/archives/2006/11/download_distor.cfm)
and I'm trying to figure out how to implement these effects in to an
existing application.

Essentially, here's my problem:

We have an existing application with a dashboard. Within that
dashboard are Widgets. Widgets are an extension of DragPanel
(extension of TitleWindows) that are the children of a Canvas. I chose
to implement my own drag/drop functionality with TitleWindows so that
I could restrict dragging to the Canvas area.

Each Widget has a front (main UI) and a back (configuration).
Currently I am using states and simple transitions to go back and
forth between the two views of a Widget. My end goal is to use a Flip
effect (available in the DistortionEffect library) to flip the widgets
over to configure them, just like an OS X dashboard widget.

All of the examples on Alex's site seem to make use of two or more
Panels within a ViewStack to accomplish the flipping effect. Can
anybody think of a way to implement the desired effect without
completely changing my Widget architecture?

My next step might be to try to make a draggable ViewStack container
if I can't figure out another option.

Any ideas would be appreciated!

Thanks,

Brian Dunphy


Re: [flexcoders] Re: Connect to FB2 Debugger from SDK compiled swf

2006-12-14 Thread Brian Dunphy
It is possible to do a remote debug -- this may not be the right way
but it seems to work for me:

- Compile your app using Ant, command-line debugger, or through Flex
Data Services so that it is a 'debug enabled' version

- In Eclipse/Flex Builder, set your debug URL to the path to the debug
version on your server... i.e. 'http://192.168.2.180/' in 'URL or path to launch' under Run > Debug > 

- Run > Debug > select your application

You shouldn't get prompted as to where your debugger is located, and
your breakpoints, etc, should work just fine.

Best of luck,

Brian

On 12/12/06, cluebcke <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> Bjorn, mind sharing what you figured out? I had the same question that
>  you originally posed, since the app I'm working on needs to be
>  accessed through a JBoss server on localhost which seems to preclude
>  me from using the FB2 debugger (which, needless to say, is quite a
>  bummber).
>
>  Thanks,
>  Chris
>
>  --- In flexcoders@yahoogroups.com, Bjorn Schultheiss
>
>  <[EMAIL PROTECTED]> wrote:
>  >
>  > OK, figured out a solution, happy again
>  >
>  > On 12/12/2006, at 2:58 PM, Bjorn Schultheiss wrote:
>  >
>  > > OK next question,
>  > >
>  > >
>  > > Can i compile in Ant from eclipse, then use the eclipse debugger on
>  > > my compiled swf.
>  > >
>  > > Bjorn
>  > >
>  > >
>  > > On 12/12/2006, at 2:24 PM, Bjorn Schultheiss wrote:
>  > >
>  > >>
>  > >> Yo,
>  > >>
>  > >> I got the command-line debugger working,
>  > >> but is there anyway to hook into FB2 debugger?
>  > >>
>  > >> Bjorn
>  > >>
>  > >> --- In flexcoders@yahoogroups.com, "bjorn.schultheiss"
>  > >>  wrote:
>  > >> >
>  > >> > Hi all,
>  > >> >
>  > >> > After compiling my app using the sdk with arg -debug=true i then
>  > >> tried
>  > >> > to open the html file in the browser and get the message.
>  > >> > "Where is your debugger located? -Localhost, -Somewhere else"
>  > >> > I'm working on localhost so i selected that option and after a few
>  > >> > failed attempts i finally get the message 'fp9 was unable to
>  > >> connect
>  > >> > to debugger'
>  > >> >
>  > >> > Can i connect to Flex Builder 2 debugger perspective in this way?
>  > >> >
>  > >> > Regards,
>  > >> > Bjorn
>  > >> >
>  > >>
>  > >>
>  > >
>  > >
>  > >
>  >
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] fds for mac (beta) flex developers

2006-12-13 Thread Brian Dunphy
FDS runs fine on Linux and OS X (Unix).

Brian

On 12/13/06, fuad_kamal <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> anyone working on FDS projects but developing on Mac platform? I'm in
>  the process of switching over to an Intel mac and found that FDS comes
>  in Linux and Windows flavors but not Mac OSX. It was kind of
>  convenient in Windows to have everything on one box. Are there any
>  plans to release a Mac OS version of FDS, at least for development
>  purposes?
>
>  Any thoughts on running FDS on a Windows instance in Parrallels and
>  Flex Builder in Mac OSX?
>
>  Could I just drop my FDS war files into Tomcat running on Mac OSX?
>
>  thanks
>
>  


-- 
Brian Dunphy


Re: Re: [flexcoders] Debug Flash Player 9 for Intel Mac

2006-12-12 Thread Brian Dunphy
Greg,

Do you have the Universal binary of Firefox? I remember when we were
waiting for the first Intel Mac player to come out, we had to run the
PowerPC binary of Firefox through emulation, and the player worked
(but slow).

I'm just curious because I have tried installing the one on that page
about 10 times over the past few weeks and it always says it's PPC
only... I've seen many other reports of the same issue.

Thanks,

Brian

On 12/12/06, Greg Newman <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> They're available on Adobe's site here:
> http://www.adobe.com/support/flashplayer/downloads.html
> It's working fine on my OSX MBP.
>
>
>
>
>
>  On 12/12/06, Brian Dunphy <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> >
> > Does anybody have the debug Flash Player 9 for Intel macs? I've heard
> > it's included in the Apollo private beta right now... is it against
> > any agreements for somebody in that beta to send us the debug player
> > only? I'm really hurting for a debug player in OS X right now.
> >
> > Obviously if this goes against any agreements when you enter the
> > private beta, please disregard this request.
> >
> > Thanks,
> >
> > Brian
> >
>
>
>
> --
>
> - Greg Newman
> ---
> http://www.carbon8.us
> http://www.busyashell.com
>
>  


-- 
Brian Dunphy


Re: Re: [flexcoders] Debug Flash Player 9 for Intel Mac

2006-12-12 Thread Brian Dunphy
Thank you! This just made my day.

I was under the impression the only place to get it was on the page
with all of the other Debug players, and the one there for OS X seems
to be PPC only.

Thanks again... I must post a comment on a page I saw the other day --
somebody else was having a hard time finding it.

Brian

On 12/12/06, Alisdair Mills <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
> there is a debug player for intel macs in the flex builder beta available on
> http://labs.adobe.com. the default location for it is
> /Applications/Adobe Flex Builder 2 Plug-in Beta/Flex SDK
> 2/player/debug/Install Flash Player 9 UB.dmg
>
>
>  On Tuesday, December 12, 2006, at 06:06AM, "Brian Dunphy"
> <[EMAIL PROTECTED]> wrote:
>  >Does anybody have the debug Flash Player 9 for Intel macs? I've heard
>  >it's included in the Apollo private beta right now... is it against
>  >any agreements for somebody in that beta to send us the debug player
>  >only? I'm really hurting for a debug player in OS X right now.
>  >
>  >Obviously if this goes against any agreements when you enter the
>  >private beta, please disregard this request.
>  >
>  >Thanks,
>  >
>  >Brian
>  >
>
>
>  


-- 
Brian Dunphy


[flexcoders] Debug Flash Player 9 for Intel Mac

2006-12-12 Thread Brian Dunphy
Does anybody have the debug Flash Player 9 for Intel macs? I've heard
it's included in the Apollo private beta right now... is it against
any agreements for somebody in that beta to send us the debug player
only? I'm really hurting for a debug player in OS X right now.

Obviously if this goes against any agreements when you enter the
private beta, please disregard this request.

Thanks,

Brian


[flexcoders] Set selected text in editable cell in DataGrid

2006-12-01 Thread Brian Dunphy
Does anybody know how to set the selected text in an editable cell in
a DataGrid?

I can't figure out if the editable cells are TextInputs, but I know
that setSelection() function does not work.

Any help would be appreciated.

Thanks,

Brian Dunphy


Re: RE: [flexcoders] Upper Case ONLY in text fields

2006-11-30 Thread Brian Dunphy
As a side question... is there any way to restrict double quotes from
being entered? Obviously restrict=""" wil not compile.

Can you use character codes in there?

Thanks,

Brian

On 11/30/06, Gordon Smith <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
>
>
>
>
> From the ASDoc for the 'restrict' property of TextInput:
>
>
>
> "Flex scans the string from left to right. You can specify a range by using
> the hyphen (-) character. If the string begins with a caret (^) character,
> all characters are initially accepted and succeeding characters in the
> string are excluded from the set of accepted characters. If the string does
> not begin with a caret (^) character, no characters are initially accepted
> and succeeding characters in the string are included in the set of accepted
> characters."
>
>
>
> So it sounds like restrict="^a-z" should work.
>
>
>
> - Gordon
>
>
>
>  
>
>
> From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
> Behalf Of boy_trike
>  Sent: Wednesday, November 29, 2006 8:49 PM
>  To: flexcoders@yahoogroups.com
>  Subject: [flexcoders] Upper Case ONLY in text fields
>
>
>
>
>
>
> I have an address field (textinput) that I want to NOT allow lowercase.
> (Using the restrict
>  property does not work since I want to allow numbers, #, $, etc. and I can
> not think of all the
>  characters) Is there an easy way to restrict lower case letters?
>
>  Thanks
>
>  Bruce
>
>
>
>  


-- 
Brian Dunphy


Re: [flexcoders] Gradient Mask?

2006-11-07 Thread Brian Dunphy



It's doable if both your display objects are setup with cacheAsBitmap = trueHave a look at the following articles on doing so in Flash 8 -- they should help:
http://www.devx.com/webdev/Article/29296Best of luck,BrianOn 11/7/06, Steve Cox <[EMAIL PROTECTED]
> wrote:












  











I've
been playing about with creating masks for display objects however have not yet
been able to get one working with a gradient alpha.

Has
anyone managed to get this working?

Thanks
Steve

 







  


    










-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Changing mx:Application's width during runtime

2006-10-29 Thread Brian Dunphy



Not sure if you are using the standalone player or a browser, but if the application is within an HTML page (i.e. an  tag is loading the SWF in), then that HTML page would have control over the width of that element. You may need to use _javascript_ and ExternalInterface to change the width and actually see the results.
Cheers,BrianOn 10/29/06, pilby1 <[EMAIL PROTECTED]> wrote:













  



When I run my application where mx:Application's width is 640x480, by 
default, it shows a gradient blue square depicting those screen 
dimensions.

I then try to dynamically change the width to 1024 in actionscript when 
a button is clicked. I had "trace"'d the application width after 
changing it, and it does say the width is now 1024, but the screen 
still shows 640x480. How can I make the application refresh to reflect 
this new change in width? I tried invalidateSize(), 
invalidateProperties, but neither works.

Thanks.


  

    











-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked o

2006-10-28 Thread Brian Dunphy



Awesome, thanks Thunder!I guess sometimes you just get buried in the API docs, I was sure I looked everywhere. :)Will keep you guys posted.Thanks again,Brian
On 10/27/06, thunderstumpgesatwork <[EMAIL PROTECTED]> wrote:













  



Hey guys,

I do something similar with our charts. The ITEM_ROLL_OVER event has
everything you need... just add like so:

chart.addEventListener(ChartItemEvent.ITEM_ROLL_OVER, hoverChartData);

and in the ChartItemEvent class there is a hitData property...

good luck! I'm interested to hear if you get something working =)

Thunder

--- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> wrote:
>
> I thought about that as well. I also thought about having a rollOver or
> mouseOver event on the bar series, and when the user hovered over a
> BarSeriesItem, I thought you could set a temporary variable with the
> hitData, and then when they right clicked on the context menu, you would
> know which one they are referring to.
> 
> I think the first idea holds more potential, as I could not find a
way to
> get the hitData from the rollOver method either.
> 
> I will definitely keep this thread updated with my progress as I do
with all
> of my other questions on here... which I usually answer myself a few
minutes
> later :)
> 
> Cheers,
> 
> Brian
> 
> On 10/27/06, cdhbookingedge <[EMAIL PROTECTED]> wrote:
> >
> >   Not an answer, more of me commiserating with you. I ran into the
same
> > thing and spent a bit investigating it. Essentially it seems that
> > it's
> > (as you stated) that the series not the bar that gets and passes on
> > the
> > context menu call. I've got a message up on Actionscript.org asking
> > around about it and if I hear anything I'll pass it on. And would be
> > pleased if you would do likewise.
> >
> > Here's a kind of klugey idea I've been thinking about off and on in
> > my
> > head. If there is someway to tell where (x,y) the click was performed
> > that brought up the context menu then a call to findDataPoints could
> > be
> > made and therefore you'd have a hitdata. But I've not really done any
> > work on devising a way to figure that out.
> >
> > Sorry I couldn't be of more help. Hopefully one of us will come up
> > with
> > an answer or workaround and pass it on.
> >
> > Christopher
> >
> > --- In flexcoders@yahoogroups.com ,
> > "klumikaze" 
> > wrote:
> > >
> > > I've got a BarChart component with one series attached to it. I've
> > got
> > > a ContextMenu (with one custom ContextMenuItem) attached to that
> > > series. When I right click on one of the items in the series, and
> > > click my custom menu item, as far as I can tell the
> > ContextMenuEvent I
> > > can't figure out how to access the particular item that was right
> > > clicked on.
> > >
> > > Note: My BarChart has my dataProvider associated with it, not the
> > > BarSeries.
> > >
> > > Any ideas?
> > >
> > > Thanks in advance,
> > >
> > > Brian
> > >
> >
> >  
> >
> 
> 
> 
> -- 
> Brian Dunphy
>


  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: ContextMenuEvent on BarSeries - how can I access the item that was clicked on?

2006-10-27 Thread Brian Dunphy



I thought about that as well. I also thought about having a rollOver or mouseOver event on the bar series, and when the user hovered over a BarSeriesItem, I thought you could set a temporary variable with the hitData, and then when they right clicked on the context menu, you would know which one they are referring to.
I think the first idea holds more potential, as I could not find a way to get the hitData from the rollOver method either.I will definitely keep this thread updated with my progress as I do with all of my other questions on here... which I usually answer myself a few minutes later :)
Cheers,BrianOn 10/27/06, cdhbookingedge <[EMAIL PROTECTED]> wrote:













  



Not an answer, more of me commiserating with you. I ran into the same 
thing and spent a bit investigating it. Essentially it seems that 
it's 
(as you stated) that the series not the bar that gets and passes on 
the 
context menu call. I've got a message up on Actionscript.org asking 
around about it and if I hear anything I'll pass it on. And would be 
pleased if you would do likewise. 

Here's a kind of klugey idea I've been thinking about off and on in 
my 
head. If there is someway to tell where (x,y) the click was performed 
that brought up the context menu then a call to findDataPoints could 
be 
made and therefore you'd have a hitdata. But I've not really done any 
work on devising a way to figure that out.

Sorry I couldn't be of more help. Hopefully one of us will come up 
with 
an answer or workaround and pass it on.

Christopher

--- In flexcoders@yahoogroups.com, "klumikaze" <[EMAIL PROTECTED]> 

wrote:
>
> I've got a BarChart component with one series attached to it. I've 
got
> a ContextMenu (with one custom ContextMenuItem) attached to that
> series. When I right click on one of the items in the series, and
> click my custom menu item, as far as I can tell the 
ContextMenuEvent I
> can't figure out how to access the particular item that was right
> clicked on.
> 
> Note: My BarChart has my dataProvider associated with it, not the
> BarSeries.
> 
> Any ideas?
> 
> Thanks in advance,
> 
> Brian
>


  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Flex 2 Beta Mac Performance

2006-10-26 Thread Brian Dunphy



Go in the /Eclipse.app/Contents/MacOS/ directory, and edit the file 'eclipse.ini'. There is a setting for initial memory and max memory, I believe the defaults are 40mb and 256mb respectively. Your best bet is to set it to 512mb and 1024mb (if you have that kind of RAM available).
I did so after noticing sluggish performance in the Mac plug-in.Cheers,BrianOn 10/26/06, John Kirby <
[EMAIL PROTECTED]> wrote:












  







Is anyone having sluggish performance...especially while editing?  I
've already crashed?

Configuration: 10.4.8 G5  dual 2.7 with 4.5 mb memory.

.j
-- 


Whether you think that you can, or that you
can't, you are usually right.
 - Henry Ford 





  

    











-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] No more build workspace upon saving?

2006-10-13 Thread Brian Dunphy



Up until about a week ago, my workspace would build automatically every time I saved a file in my project. This allowed me to have my app open in a browser window, and whenever I saved a file I could just reload that app. Currently, it doesn't detect errors automatically as well, I have to wait until I run my application as a run target in Eclipse.
I'm using Eclipse 3.1.2 with the GA release of Flex Builder through Parallels on a Macbook Pro. I have noticed this before on a PC hoever.Anybody run in to this / know how to fix it? I ran through all of the config screens I could find in Eclipse that relate to Flex, no luck.
Brian

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] RemoteObject only accesses, cannot set

2006-10-12 Thread Brian Dunphy



Hello,Just starting to use RemoteObjects, but for some reason my RemoteObject can only retrieve information, it can't use any of the mutator methods in my class.My Java class is as follows:package com.testing.pojos
;import java.io.Serializable;public class HelloWorldMessage implements Serializable{    private String message;        public HelloWorldMessage()    {        this.message = "Hello World";
    }        public String getMessage()    {        return message;    }        public void setMessage(String newMessage)    {        this.message = newMessage;    }}
My RemoteObject in MXML is as follows:                
            My destination definition is as follows:                     com.testing.pojos.HelloWorldMessage           application         
                  I can access the getMessage method just fine (and it returns the appropriate message), however when I call setMessage("new message"), it doesn't persist my message, it simply returns the old "Hello World!" message again.
Something I'm doing wrong?Thanks,Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] MouseEvents with charts problem

2006-10-10 Thread Brian Dunphy



Having a problem getting mouse events to trigger properly on my charts. Essentially what I'm trying to do is have a MouseEvent.MOUSE_OVER event change the cursor to an arrow icon when it's over top of the chart. My event listener is added to the chart itself, and currently you can only get the cursor to change when you're on the very edge of the graph or on the gridlines.
I suspect the problem is that the ChartItems (or series items) are on top of the chart, and when you mouse over them, their events are triggered (and not those of the chart behind them).Any thoughts?
Thanks,Brian

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: Custom component inside custom component issues

2006-10-04 Thread Brian Dunphy



Great, works perfectly now!Thanks Tobias, appreciate it.BrianOn 10/4/06, tobiaspatton <[EMAIL PROTECTED]
> wrote:












  



'states' is an attribute of your custom component, and should be 
prefixed with the namespace in which your component resides.

Try this:







Tobias.

--- In flexcoders@yahoogroups.com, "Brian Dunphy" <[EMAIL PROTECTED]> 

wrote:
>
> I'm having trouble with mx related packages when they are inside a
> custom component.
> 
> My structure is as follows:
> 
> - I have a component, 'Widget', which is an ActionScript class that
> extends the TitleWindow container (it just adds a few custom
> show/hide/close methods, it doesn't override any default
> functionality)
> 
> - I have a 'StatsWidget' in MXML that is just a few charts inside a
>  as a custom component (xmlns:sl is defined
> properly)
> 
> - I have declared xmlns:mx properly so that I can use the mx 
packages
> 
> - All mx related packages compile and work inside the 'StatsWidget'
> component with the exception of  which is giving me the
> following error message: 'Could not resolve  to a 
component
> implementation'
> 
> I suspect I am missing something -- perhaps my states should be 
used
> at the parent level (the 'Widget' class)?
> 
> Any ideas would be appreciated.
> 
> Thanks for your time,
> 
> Brian
>


  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Wrapping components within a container

2006-10-03 Thread Brian Dunphy



Trying to create a tag cloud eh? Maybe... :)Anyway, I created an FBox container based on some example code in the documentation (and some code from Flex 1 that I found), you can find the code in here: 
http://tech.groups.yahoo.com/group/flexcoders/message/40947Best of luck.BrianOn 10/3/06, David Katz <
[EMAIL PROTECTED]> wrote:












  



Does anyone know if it's possible to wrap components within a
container in Flex 2.0? I need to dynamically create a series of
LinkButtons, for example, and have them wrap when they reach the right
edge of their container. (Imagine a long clickable breadcrumb trail
that wraps to a second line if the items get too long to fit within
their container.)

This is trivial to do in html by placing the elements in a div, but I
can't figure out how to do it in Flex.

Any help is appreciated.

thanks,
David

-- 

David Katz
[EMAIL PROTECTED]

  


    










-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



[flexcoders] Custom component inside custom component issues

2006-10-03 Thread Brian Dunphy
I'm having trouble with mx related packages when they are inside a
custom component.

My structure is as follows:

- I have a component, 'Widget', which is an ActionScript class that
extends the TitleWindow container (it just adds a few custom
show/hide/close methods, it doesn't override any default
functionality)

- I have a 'StatsWidget' in MXML that is just a few charts inside a
 as a custom component (xmlns:sl is defined
properly)

- I have declared xmlns:mx properly so that I can use the mx packages

- All mx related packages compile and work inside the 'StatsWidget'
component with the exception of  which is giving me the
following error message: 'Could not resolve  to a component
implementation'

I suspect I am missing something -- perhaps my states should be used
at the parent level (the 'Widget' class)?

Any ideas would be appreciated.

Thanks for your time,

Brian


--
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/

<*> Your email settings:
Individual Email | Traditional

<*> To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

<*> To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

<*> 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] How can we achieve this effect in flex??? Any Ideas???

2006-10-02 Thread Brian Dunphy



Not sure this will get you the effect you're looking for, but I have a feeling that Quasimondo's aqua glass effect would be extremely useful in a water/ripple effect:
http://www.quasimondo.com/archives/000561.phpAlso, the 3d flip effect mentioned in the previous post can be found here (although not true 3d, it looks really close):
http://www.reflektions.com/miniml/template_permalink.asp?id=227(Note: this is for ActionScript 2 I believe, and it would take some work to port to Flex 2 / AS3 likely).If any of you do achieve those effects, it would be much appreciated if you shared them with the community!
Cheers,BrianOn 10/2/06, greg h <[EMAIL PROTECTED]> wrote:













  



Not to hijack omkar's thread regarding the ripple effect, but ...

I also love the metaphor of flipping the widgets to expose their
customize controls (which is also demonstrated in the video).  It
is a nice UI metaphor ... assuming we can make it sufficiently
"discoverable" and get users conditioned to look for it.

Regarding Igor's reference to "waterEffect in the Gskinner blog", can
anyone provide the link?  I used google to search Grant's site and
the best I could find is a reference in the outline from last year's "
Flash 8 Workshop":
Demo: Water ripple effect with perlin noise


Thanks omkar and Igor!

gOn 10/2/06, Igor Costa <
[EMAIL PROTECTED]> wrote:



Ahh sorry.I just right now undrestood your request.It's really amazing effect. Just see the same at waterEffect in the Gskinner blog.regards-- 
Igor Costawww.igorcosta.com






On 10/2/06, omkarjoe
 <
[EMAIL PROTECTED]> wrote:













  



Hi All,

Plz go thru the following link 
http://www.apple.com/macosx/theater/dashboard.html

When user drops a widget in to the dashboard, It gives a watery effect 
to the screen. Would anyone one has any ideas of implementing it in 
Flex... I really loved that effect...

Thanks in Advance

  


















  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Comments appreciated

2006-09-26 Thread Brian Dunphy



I've seen things like this done with Flash & PHP in the past, so it should be quite straightforward to do with Flex & your backend language of choice (Java, C#, PHP, etc).Brian
On 9/26/06, cheftimbob <[EMAIL PROTECTED]> wrote:













  



I'd like to create an application that displays an image and has a 
couple widgets on the side. This app is to mimic putting a stamp, or 
annotation, on an image. I'd like to drag one of the widgets onto the 
image and grab the coordinates of the widget drop relative to the 
image. The coordinates will be sent back to the server so that the next 
time we render the image, we'll burn an image of the widget onto the 
original image. The idea is to think of someone using a stamp that 
says 'Approved', and dropping it onto an image and further rendering of 
the image will show the stamp. 

Does this sound like something that can be done with Flex?


  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Re: RemoteObject Setup

2006-09-17 Thread Brian Dunphy



Awesome, hadn't seen that article yet.Thanks Greg!BrianOn 9/16/06, greg h <[EMAIL PROTECTED]
> wrote:












  



Brian,

Regarding your question from last week, today I saw Anatole Tartakovsky
replying on another topic here at FlexCoders and it reminded me of the
following excellent article that he coauthored that was posted on
DevNet in July:
    Automatically generating code for Flex 2 data access
    http://www.adobe.com/devnet/flex/articles/daoflex.html

The article focuses on using Flex 2 with RemoteObject against Java
backends.  The article is very tightly written and includes
downloadable code.

And best of all, the article is a how-to for using DAOFlex, an open-source tool that generates Flex and Java code for you :-)

hth,

gOn 9/9/06, klumikaze <
[EMAIL PROTECTED]> wrote:













  



Is there any good resources for doing the same with Java/Flex 2? 

I've had a hell of a time figuring out how to do RemoteObjects (not
the Flex end, just the Java & configuration end).

Brian
--- In flexcoders@yahoogroups.com, "Darren Houle" <[EMAIL PROTECTED]> wrote:
>
> Very cool, thanks again Gred :-)
> 
> Darren
> 
> 
> 
> >From: "greg h" <[EMAIL PROTECTED]>
> >Reply-To: flexcoders@yahoogroups.com
> >To: flexcoders@yahoogroups.com
> >Subject: Re: [flexcoders] RemoteObject Setup
> >Date: Wed, 6 Sep 2006 21:02:21 -0700
> >
> >Darren,
> >
> >Glad to hear that you got Ben's Phone Selector Sample Application
up and
> >going.  It is pretty sweet, isn't it?
> >
> >Now that you have your basic CF/Flex Builder 2/
> >configuration working, you might want to also check out some of the
other
> >amazing goodies that the good folks at Adobe put together
specifically for
> >CF developers moving to Flex 2 and using 
> >
> >First on my list is the Flex Builder 2 "ColdFusion/Flex Application
> >Wizard".  Essentially it is a code generator.  You use a visual query
> >builder that is provided to build SQL against any tables in your
> >datasources, and off the Wizard goes to create everything else: 
CFCs and
> >MXML. (And of course the MXML uses  to call the
methods on
> >the CFCs that are generated.  Pretty much RAD at its finest!)
> >
> >There are two links for Captivate demos that provide introductions
to using
> >the "App Gen Wizard" at the following link (total runtime of the
two demos
> >combined is about 23 minutes):
> >www.adobe.com/devnet/coldfusion/articles/wizards.html
> >(There is also a link there for a third Captivate demo of "Other
Wizards 
> >and
> >Utilities" that are also a part of the ColdFusion Extensions for Flex
> >Builder 2.)
> >
> >fyi ... At the end of your Flex Builder 2 installation a pop-up
prompted 
> >you
> >to install the ColdFusion Extensions for Flex Builder 2.  You can
check if
> >you have them installed by going to the main menu in Flex Builder 2 and
> >going to either:
> >1) File --> New --> Other --> ColdFusion Wizards
> >2) Window --> Other Views --> ColdFusion
> >If you do not see either of these, post back and I will dig up the
> >instructions on how to install the Extensions.
> >
> >The documentation for the ColdFusion Extensions for Flex Builder 2
is in
> >Chapter 5 of the documentation that can be download from here:
>
>http://download.macromedia.com/pub/documentation/en/flex/2/using_cf_with_flex2.pdf

> >
> >Lastly, Nahuel Foronda and Laura Arguello published an article last
month 
> >in
> >the ColdFusion Developer's Journal that also focuses on using
> > and is entitled "Your First Flex Application with a
> >ColdFusion Backend: The wow factor plus usability"
> >http://coldfusion.sys-con.com/read/256076_1.htm
> >I have not yet had a chance to go through this article, but Nahuel and 
> >Laura
> >do top notch work, so I expect that this article will be another great
> >resource.
> >
> >Happy Flexing!
> >
> >g


  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  






  
  Your email settings: Individual Email|Traditional 
  Change settings via the Web (Yahoo! ID required) 
  Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured 
   
Visit Your Group 
   |
  
Yahoo! Groups Terms of Use
   |
  
   Unsubscribe 
   
 

  




__,_._,___



Re: [flexcoders] Any way to define CategoryAxis label spacing?

2006-09-08 Thread Brian Dunphy



Thanks very much Ely, much appreciated.I knew I had seen this functionality before, but I had no idea where it was controlled from.Cheers,BrianOn 9/8/06, 
Ely Greenfield <[EMAIL PROTECTED]> wrote:













  






 
 
 
Two easy options:
 
1) set 'canDropLabels' on your axisRenderer to true.  
Then the axis will try to drop the labels instead of making them smaller. Since 
the axis doesn't generally know anything about the contents of a CategoryAxis, 
it can't assume that dropping category names won't lose important information. 
But in your case, since it's time data, it's safe to do so.
 
2) I don't remember off hte top of my head, but you might 
be able to return null from your labelFunction if you don't want a label 
displayed.
 
Ely.
 


From: [EMAIL PROTECTED]
ups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of 
klumikazeSent: Friday, September 08, 2006 11:45 AMTo: 
[EMAIL PROTECTED]ups.comSubject: [flexcoders] Any way to define 
CategoryAxis label spacing?


I'm looking for a way to only display a few CategoryAxis labels(instead 
of all of them). Currently I have a labelFormat function that takes a 
unix timestamp,converts it to a shorter, more readable format, and then 
displays iton the horizontalAxis of the graph. The problem is that it's a 
timeseries area chart, and there are far too many data points (it ends 
updisplaying all of the labels with an extremely small font).For 
instance, I would like to be able to display only the first,middle and last 
labels.Any ideas would be 
appreciated.Thanks,Brian

  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Pre-compiled applications unable to access FDS based message queues

2006-09-01 Thread Brian Dunphy



Think I just figured it out -- you need to add a -compiler.services  to that line and it picks it up.Thanks for your help though! Much appreciated.Brian
On 9/1/06, Brian Dunphy <[EMAIL PROTECTED]> wrote:
Well, I've been testing on our dev box using something like this:./mxmlc -load-config /opt/tomcat/webapps/ROOT/WEB-INF/flex/flex-config.xml /opt/tomcat/webapps/ROOT/main.mxmlWhen I load main.swf I instantly get errors about not being able to connect to queue destinations which are defined (and working when using the web-tier compiler with the same app) in 
messaging-config.mxml. That config file is in the same directory as the flex-config.mxml as well.Is there a way to specify the services-config in the same fashion as I did with the flex-config?Thanks,

Brian On 9/1/06, Stacy Young <
[EMAIL PROTECTED]> wrote:













  













Wondering if perhaps the precompile is not
picking up your services-config file? (and using the sdk which is empty)

What do your compile arguments look like?

 

Stace

 









From: [EMAIL PROTECTED]

ups.com [mailto:
[EMAIL PROTECTED]
ups.com] On Behalf Of Brian Dunphy
Sent: Friday, September 01, 2006
2:52 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Pre-compiled
applications unable to access FDS based message queues



 







All of
the documentation I've read thus far indicates that you do not need to use the
web-tier compiler, even when using FDS. If this is true, can anybody point me
in the right direction on the following:

When I pre-compile (either via Flex builder or via mxmlc on the command line),
my application isn't aware of the queue destinations in messaging-config.xml.
Is there something I'm missing? When I just drop our WAR file in to the
tomcat/webapps folder, and access the mxml files directly, there is no issue.

Any help would be appreciated.

Thanks, 

Brian Dunphy 






 
  


  AVIS
  IMPORTANT
  
  


  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système.  La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur.

  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail in error, please notify the sender.

  
 





      













-- Brian Dunphy

-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] Pre-compiled applications unable to access FDS based message queues

2006-09-01 Thread Brian Dunphy



Well, I've been testing on our dev box using something like this:./mxmlc -load-config /opt/tomcat/webapps/ROOT/WEB-INF/flex/flex-config.xml /opt/tomcat/webapps/ROOT/main.mxmlWhen I load main.swf I instantly get errors about not being able to connect to queue destinations which are defined (and working when using the web-tier compiler with the same app) in 
messaging-config.mxml. That config file is in the same directory as the flex-config.mxml as well.Is there a way to specify the services-config in the same fashion as I did with the flex-config?Thanks,
Brian On 9/1/06, Stacy Young <[EMAIL PROTECTED]> wrote:













  













Wondering if perhaps the precompile is not
picking up your services-config file? (and using the sdk which is empty)

What do your compile arguments look like?

 

Stace

 









From: [EMAIL PROTECTED]
ups.com [mailto:[EMAIL PROTECTED]
ups.com] On Behalf Of Brian Dunphy
Sent: Friday, September 01, 2006
2:52 PM
To: [EMAIL PROTECTED]ups.com
Subject: [flexcoders] Pre-compiled
applications unable to access FDS based message queues



 







All of
the documentation I've read thus far indicates that you do not need to use the
web-tier compiler, even when using FDS. If this is true, can anybody point me
in the right direction on the following:

When I pre-compile (either via Flex builder or via mxmlc on the command line),
my application isn't aware of the queue destinations in messaging-config.xml.
Is there something I'm missing? When I just drop our WAR file in to the
tomcat/webapps folder, and access the mxml files directly, there is no issue.

Any help would be appreciated.

Thanks, 

Brian Dunphy 






 
  

  AVIS
  IMPORTANT
  
  

  WARNING
  
 
 
  
  Ce message électronique et ses pièces jointes peuvent contenir des renseignements confidentiels, exclusifs ou légalement privilégiés destinés au seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun privilège ou à aucun autre droit si le présent message a été transmis involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses pièces jointes, de votre système.  La lecture, la distribution, la copie ou tout autre usage du présent message ou de ses pièces jointes par des personnes autres que le destinataire visé ne sont pas autorisés et pourraient être illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en aviser l'expéditeur.

  
  
  This electronic message and its attachments may contain confidential, proprietary or legally privileged information, which is solely for the use of the intended recipient.  No privilege or other rights are waived by any unintended transmission or unauthorized retransmission of this message.  If you are not the intended recipient of this message, or if you have received it in error, you should immediately stop reading this message and delete it and all attachments from your system.  The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful.  If you have received this e-mail in error, please notify the sender.

  
 





  













-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



[flexcoders] Pre-compiled applications unable to access FDS based message queues

2006-09-01 Thread Brian Dunphy



All of the documentation I've read thus far indicates that you do not need to use the web-tier compiler, even when using FDS. If this is true, can anybody point me in the right direction on the following:When I pre-compile (either via Flex builder or via mxmlc on the command line), my application isn't aware of the queue destinations in 
messaging-config.xml. Is there something I'm missing? When I just drop our WAR file in to the tomcat/webapps folder, and access the mxml files directly, there is no issue.Any help would be appreciated.Thanks,
Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___



Re: [flexcoders] specifying a percentage width in script?

2006-08-24 Thread Brian Dunphy



I think you may have to determine the width of the outer container and calculate the percentage (in pixels) the manual way.Thanks,BrianOn 8/24/06, 
Doug Arthur <[EMAIL PROTECTED]> wrote:













  



How can I specify spacer.width = "100%"??? It throws an error because 100% is not an int.
 
Thanks!

  


    










-- Brian Dunphy

__._,_.___





--
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
  
  
  

Software development tool
  
  
Software development
  
  
Software development services
  
  


Home design software
  
  
Software development company
  

   
  







  
  
  YAHOO! GROUPS LINKS



   Visit your group "flexcoders" on the web. 
   To unsubscribe from this group, send an email to: [EMAIL PROTECTED] 
   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  






__,_._,___