Re: [flexcoders] Slider dataTip- is it possibole to have this visibale all the time

2009-06-08 Thread Andrew D. Goodfellow
Does anyone have a good example of manually tool-tipping the thumb on
a Slider (like what Manish is referring to)?

-Andy

On Thu, Jun 4, 2009 at 2:15 PM, Manish Jethani wrote:
>
>
> On Wed, Jun 3, 2009 at 4:29 PM, jossminker  wrote:
>> I woudl like to have the datatip for my slider visible at all times, not
>> just when the user is holding down the thumb.
>>
>> if this is not possible, then I would at least like the datatip to appear
>> if the user moves the thumb using the arrow keys or by clicking on the track
>> as the way it is at present means it will never be visible to user who are
>> not using the mouse.
>
> I don't think there's any official way of doing this. You can of
> course set showDataTip to false and then go ahead and make your own
> data tip (use ToolTipManager to display it), which you show and hide
> in response to events from the slider.
>
> Manish
> 


Re: [flexcoders] Re: Flex Appointment Calendar Component

2008-07-18 Thread Andrew D. Goodfellow
I get the same error.

-Andy

On Fri, Jul 18, 2008 at 7:08 AM, Jeremy Anderson
<[EMAIL PROTECTED]> wrote:
> I'm now getting an error:
>
> ReferenceError: Error #1069: Property R918 not found on
> myComponents.Calendar and there is no default value.
> at myComponents::Calendar/findMaxColumns()
> at myComponents::Calendar/resetCounts()
> at myComponents::Calendar/clearAppointments()
> at myComponents::Calendar/setDay()
> at myComponents::Calendar/updateDisplay()
> at myComponents::Calendar/updateMonthDisplay()
> at myComponents::Calendar/monthUpdate()
> at flash.events::EventDispatcher/dispatchEventFunction()
> at flash.events::EventDispatcher/dispatchEvent()
> at mx.collections::ListCollectionView/dispatchEvent()
> at
> mx.collections::ListCollectionView/http://www.adobe.com/2006/flex/mx/internal::reset()
> at mx.collections::ListCollectionView/set list()
> at mx.collections::ArrayCollection/set source()
> at myComponents::Calendar/onResult()
> at flash.events::EventDispatcher/dispatchEventFunction()
> at flash.events::EventDispatcher/dispatchEvent()
> at
> mx.rpc::AbstractOperation/http://www.adobe.com/2006/flex/mx/internal::dispatchRpcEvent()
> at
> mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::resultHandler()
> at mx.rpc::Responder/result()
> at mx.rpc::AsyncRequest/acknowledge()
> at NetConnectionMessageResponder/resultHandler()
> at mx.messaging::MessageResponder/result()
>
>
>
> On Tue, Jul 15, 2008 at 5:04 PM, Anatole Tartakovsky
> <[EMAIL PROTECTED]> wrote:
>>
>> Link includes extra dot in the end - please repost the link
>> Tnx,
>> Anatole
>>
>> On Tue, Jul 15, 2008 at 3:34 PM, jmfillman <[EMAIL PROTECTED]> wrote:
>>>
>>> 404? I've had several visitors since posting and it's working. I did
>>> post an update to include the price of the component. You may have
>>> caught it while I was uploading the new file.
>>>
>>> --- In flexcoders@yahoogroups.com, "Pedro Sena" <[EMAIL PROTECTED]>
>>> wrote:
>>> >
>>> > 404
>>>
>>> >
>>> > On Tue, Jul 15, 2008 at 1:47 PM, javadmanx <[EMAIL PROTECTED]> wrote:
>>> >
>>> > > Looks good.
>>> > >
>>> > >
>>> > > --- In flexcoders@yahoogroups.com ,
>>> > > "jmfillman"  wrote:
>>> > > >
>>> > > > We have completed our initial work on a Flex Appointment
>>> Calendar. The
>>> > > > calendar features day, week, and month views. All views are
>>> fully drag
>>> > > > & drop enabled. The day and week view also are drag re-size
>>> enabled.
>>> > > > You have complete control over all styles, colors, and icons.
>>> > > >
>>> > > > To try out the component, please visit
>>> > > > http://www.imbizzi.com/imbizzi.html.
>>> > > >
>>> > > > For more information, including tutorials, styling guide, and
>>> technical
>>> > > > details, please visit http://www.imbizzi.com.
>>> > > >
>>> > > > For technical questions, please e-mail support [at]
>>> imbizzi "dot" com.
>>> > > >
>>> > > > JF
>>> > > >
>>> > >
>>> > >
>>> > >
>>> >
>>> >
>>> >
>>> > --
>>> > /**
>>> > * Pedro Sena
>>> > * Systems Architect
>>> > * Sun Certified Java Programmer
>>> > * Sun Certified Web Component Developer
>>> > */
>>> >
>>>
>>
>
> 


Re: [flexcoders] Re: How to get the reference to an item renderer given item index in dataProvide

2008-06-24 Thread Andrew D. Goodfellow
Hi Gordon,

I actually found a use-case where I think this is needed. If you are
interested I'd be happy to discuss it with you off-list.

-Andy

On Mon, Apr 28, 2008 at 8:12 PM, Gordon Smith <[EMAIL PROTECTED]> wrote:

>Can you please explain your use case for needing a reference to an item
> renderer? As Tracy said, "You are probably making a mistake". Item renderers
> are intended to render data items, not to be manipulated directly as visual
> components.
>
>
>
> Gordon Smith
>
> Adobe Flex SDK Team
>
>
>  --
>
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On
> Behalf Of *Marcin Glowacki
> *Sent:* Monday, April 28, 2008 1:37 PM
> *To:* flexcoders@yahoogroups.com
>
> *Subject:* [flexcoders] Re: How to get the reference to an item renderer
> given item index in dataProvide
>
>
>
> Thanks, I will give it a shut
>
> --- In flexcoders@yahoogroups.com , "Tracy
> Spratt" <[EMAIL PROTECTED]> wrote:
> >
> > You are probably making a mistake, but, from the docs:
> >
> >
> >
> > indexToItemRenderer
> >
> > ()
> >
> > method
> >
> >
> >
> > public function indexToItemRenderer(index:int
> >  > t.html> ):IListItemRenderer
> >  > /controls/listClasses/IListItemRenderer.html>
> >
> > Get an item renderer for the index of an item in the data provider, if
> > one exists. Since item renderers only exist for items within the set of
> > viewable rows items, you cannot use this method for items that are not
> > visible.
> >
> > Parameters
> >
> >
> >
> > index:int
> >  > t.html> - The offset into the data provider for an item
> >
> > Returns
> >
> >
> >
> > IListItemRenderer
> >  > /controls/listClasses/IListItemRenderer.html> - The item renderer that
> > is displaying the item, or null if the item is not currently displayed
> >
> >
> >
> > Tracy
> >
> >
> >
> > 
> >
> > From: flexcoders@yahoogroups.com  [mailto:
> flexcoders@yahoogroups.com ] On
> > Behalf Of Marcin Glowacki
> > Sent: Monday, April 28, 2008 11:31 AM
> > To: flexcoders@yahoogroups.com 
> > Subject: [flexcoders] Re: How to get the reference to an item renderer
> > given item index in dataProvide
> >
> >
> >
> > OK, thanks for your input.
> >
> > However, I would appreciate any hints on how I could write a method in
> > MyDataGrid that will return reference to itemRenderer or itemEditor or
> > null at any given point in time.
> >
> > If a given row is not displayed on the screen this method should
> > return null, otherwise itemRenderer or itemEditor.
> >
> > protected function getItemRendererByPosition(dateProviderIndex:int,
> > columnIndex:int):IDataRenderer
> > {
> > // go through all item renderers and return the one I need
> > // where are the renderers stored? any protected member?
> > // how can you tell current position of an item renderer?
> > }
> >
> > --- In flexcoders@yahoogroups.com  flexcoders%40yahoogroups.com >
> > , "Tracy Spratt"  wrote:
> > >
> > > You cannot do that.
> > >
> > >
> > >
> > > Item renderers are recycled. Only the visible rows are
> > > instantiated(plus a few buffers) So if row 5 is not visible, it does
> > > not exist, and you cannot reference it.
> > >
> > >
> > >
> > > In almost all cases, work should be done on the underlying
> > dataProvider.
> > >
> > >
> > >
> > > Search archives or google for: itemRenderer recycle
> > >
> > >
> > >
> > > Tracy
> > >
> > >
> > >
> > > 
> > >
> > > From: flexcoders@yahoogroups.com  flexcoders%40yahoogroups.com >
> > [mailto:flexcoders@yahoogroups.com  flexcoders%40yahoogroups.com >
> > ] On
> > > Behalf Of Marcin Glowacki
> > > Sent: Sunday, April 27, 2008 3:21 PM
> > > To: flexcoders@yahoogroups.com   flexcoders%40yahoogroups.com >
> > > Subject: [flexcoders] How to get the reference to an item renderer
> > given
> > > item index in dataProvider?
> > >
> > >
> > >
> > > In Flex 3 DataGrid, how to get the reference to item renderer given
> > > item index in dataProvider and column number?
> > > I am extending DataGrid, and I need to access it in MyDataGrid.
> > >
> > > Lets say I want itemRenderer for item in dataProvider at index 5 and
> > > column 2.
> > >
> > > And
> > >
> > > how to get the array of all itemRenderers and/or itemEditor for a
> > > given index of an item in dataProvider?
> > >
> >
>
>  
>


Re: [flexcoders] Flex 3 / AIR: Creating a Timer and binding Text

2008-04-23 Thread Andrew D. Goodfellow
Hi Steve,

You need a [Bindable] meta tag in front of every property you need to
be bindable. You only have it on callID, not callStatus.

-Andy



On 4/23/08, Steve Good <[EMAIL PROTECTED]> wrote:
> (I sent this earlier, but it never made it through, so I apologize if it
> ends up being a double post)
>
>
>
> I'm trying to make a call to a remote script at regular intervals.  I can
> get it to make the calls, but I can't figure out how to apply a timer to the
> second call.  I thought I had figured out how to bind the data to a text
> object, but I'm not getting any results displayed.  Here's a sample of the
> code.
>
>
>
> http://domain.com/dir/script1.cfm";
> result="getCallID(event)"/>
>
>url="http://domain.com/dir/script2.cfm"; result="showStatus(event)"/>
>
>
>
>   
>
>   
>
>   
>
>
>
>   
>
>   
>
> 
>
> 
>
>   
>
>
>
> Also, the mx:text is giving this warning: "Data binding will not be able to
> detect assignments to "callStatus"."
>
>
>
> Any help is greatly appreciated.
>
>
>
> Thanks!
>
>
>
> ~Steve
>
> http://lanctr.com/
>
>
>
>
>
>
>
> ~Steve
>
> http://lanctr.com/
>
>
>
>


Re: [flexcoders] # sign in URL - how do I get rid of it?

2008-04-04 Thread Andrew D. Goodfellow
Hi Robert,

Just set historyManagment=false in your Application tag.

-Andy



On 4/4/08, Robert Csiki <[EMAIL PROTECTED]> wrote:
>
> After we switched to using Flex3, there's a "#" sign that occasionally
> appears in browser, on the URL that accesses the Flex app, right after
> the context root; how can I get rid of it?
>
> Sometimes there is other stuff coming after that # sign, which hampers
> our product usability.
>
> We're not using and deep linking nor history management in our app for
> now.
>
> Thanks, Robert
>
>


Re: [flexcoders] Average salary of a Flex Developer in the Silicon Valley

2008-03-22 Thread Andrew D. Goodfellow
For what time period?



On 3/22/08, heat_samurai <[EMAIL PROTECTED]> wrote:
> I've got an offer to join a reputed customized software firm in SF.
> I've got over 2 yrs of experience as a Flash Developer and migrated to
> Flex about 8 months back.
>
> They've offered me around $4,500. Is that good enough?
>
>


Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-17 Thread Andrew D. Goodfellow
No, I don't think so. Use the AS3 Core Libraries for that.
http://code.google.com/p/as3corelib/

On Feb 17, 2008 7:01 AM, Eduardo Dias <[EMAIL PROTECTED]> wrote:

>   Ok, and what about converting a Flex chart into a JPG or other image?
> Does ALDS do that too? Or, some other Adobe tool?
>
>
> On Feb 17, 2008 3:03 AM, Andrew D. Goodfellow <[EMAIL PROTECTED]>
> wrote:
>
> >   We used the AlivePDF library on one of our client projects to generate
> > PDF reports. I was very happy with the results.
> >
> > http://www.alivepdf.org/
> > http://code.google.com/p/alivepdf/
> >
> > -Andy
> >
> >
> > On Feb 16, 2008 9:40 PM, Eduardo Dias <[EMAIL PROTECTED]> wrote:
> >
> > >   Is there any way with Flex Charting (or some 3rd party tool
> > > integrated with Flex) to output a FlexChart as a PDF or an image for
> > > inclusion in a report?
> > >
> >
> >
>  
>


Re: [flexcoders]Flex Charting - Export to PDF and Images

2008-02-16 Thread Andrew D. Goodfellow
We used the AlivePDF library on one of our client projects to generate PDF
reports. I was very happy with the results.

http://www.alivepdf.org/
http://code.google.com/p/alivepdf/

-Andy

On Feb 16, 2008 9:40 PM, Eduardo Dias <[EMAIL PROTECTED]> wrote:

>   Is there any way with Flex Charting (or some 3rd party tool integrated
> with Flex) to output a FlexChart as a PDF or an image for inclusion in a
> report?
>  
>


Re: [flexcoders] Running a flex app from local file system

2008-01-28 Thread Andrew D. Goodfellow
Hi Greg,

I think if you go to "Project | Properties | Flex Compiler" and add "
-use-network false" to the Additional Compiler Arguments that might do the
trick.

You'll need to rebuild. I think the problem you are having is due to
security constraint built into the Flash player. It will allow the swf to
either load external resources via HTTP from the network OR from the local
filesystem. Both are not allowed, you have to choose a setting for one or
the other when you build/publish.

-Andy

On Jan 28, 2008 9:38 AM, Greg Hess <[EMAIL PROTECTED]> wrote:

>Hi All,
>
>
>
> I am working with a remote team and I need to send them the application
> prototype for review. I thought all I need to do is add all the files in the
> output dir to a compressed file and send via email ect… The prototype is
> loading a local XML file to populate an UI component to simulate a remote
> HTTPService call and it seems to be generating security violations accessing
> the local file system. The client workstations are Windows Vista.
>
>
>
> How do I build or configure the application so it can be launched from the
> local files system?
>
>
>
> Any comments much appreciated.
>
>
>
> Thanks,
>
>
>
> -Greg
>  
>


Re: [flexcoders] flex rich edit control with image support

2007-12-27 Thread Andrew D. Goodfellow
Please consider it. The Flex community could use it. If you don't have time
maybe you could give your code to the community to finish?

-Andy

On Nov 21, 2007 11:34 PM, DreamCode <[EMAIL PROTECTED]> wrote:

>   I started doing one a while back, but got too busy with other stuff
> and I never got back to it, I might consider it if there's enough
> demand from the community
>
> You can see a screenshot of how it looks in the skin i made at
> http://www.bimlab.net/allan/flexskin.jpg
>
> --a
>
>
> On Nov 20, 2007 5:39 PM, ohhmaagawd <[EMAIL 
> PROTECTED]>
> wrote:
> >
> >
> >
> >
> > I was disappointed when I tried out the rich edit control in FB3. There
> > appears to be no image support.
> >
> > A google search turned up nothing has anyone improved upon the
> standard
> > Rich Text Control?
> >
> > I love the Yahoo Rich Edit
> > control(http://developer.yahoo.com/yui/examples/editor/index.html ), it
> far
> > surpasses the flex one... tab works like a rich edit tab should (it
> > indents), nice keyboard shortcuts, excellent image support (with
> resize).
> > I'm hoping something equivalent exists in flex-land.
> >
> > thanks for any thoughts
> > phil
> >
>  
>


Re: [flexcoders] Are you going to MAX?

2007-09-21 Thread Andrew D. Goodfellow
I'll be there.

-Andy


On 9/21/07, ben.clinkinbeard <[EMAIL PROTECTED]> wrote:
>
>   Just curious how many people from the list will be in Chicago.
>
> Ben
>
> 
>


Re: [flexcoders] Flex / Flash specific search engine

2007-03-07 Thread Andrew D. Goodfellow

Steve,

At first glance it seems like this will be very useful! I especially like
the LiveDocs search. I'll add it to my daily work flow and see how it goes.

-Andy

On 07 Mar 2007 10:21:40 -0800, Steve Drucker <[EMAIL PROTECTED]> wrote:


   http://www.gotswf.com

Feedback appreciated.

Regards,
Steve Drucker
CEO
Fig Leaf Software
www.figleaf.com


 



Re: [flexcoders] Re: DB access in Apollo

2007-03-07 Thread Andrew D. Goodfellow

+1 sqlite for me as well. An embedded SQL database would add tremendous
value in the B2B custom app realm where I live.

-Andy


Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow

That did it, thanks so much for your help Doug.

Anyone know why the FlexLoader isn't in the docs anywhere?

-Andy

On 2/2/07, Doug McCune <[EMAIL PROTECTED]> wrote:


   Right, FlexLoader (which is pretty much just the same as the Loader
component) doesn't fire the complete event.

Do this and replace yourCompleteEventHandler with you event handler
function:
loader.contentLoaderInfo.addEventListener(Event.COMPLETE,
yourCompleteEventHandler);


-Doug


Andrew D. Goodfellow wrote:

 Thanks Doug! When I do that I'm getting the error:

Error: Error #2099: The loading object is not sufficiently loaded to
provide this information.
at flash.display::LoaderInfo/get width()
at mx.controls::SWFLoader/get ::contentHolderWidth()
at mx.controls::SWFLoader/::doScaleContent()
at mx.controls::SWFLoader/mx.controls:SWFLoader::updateDisplayList()
at mx.controls::Image/mx.controls:Image::updateDisplayList()
at mx.core::UIComponent/validateDisplayList()
at mx.managers::LayoutManager/::validateDisplayList()
at mx.managers::LayoutManager/::doPhasedInstantiation()
at Function/http://adobe.com/AS3/2006/builtin::apply()
at mx.core::UIComponent/::callLaterDispatcher2()

Does anyone know what event is fired when the load is complete? I can't
find any docs on FlexLoader and Event.COMPLETE doesn't seem to ever
fire...

-Andy

 On 2/2/07, Doug McCune <[EMAIL PROTECTED]> wrote:
>
>   Your problem is that you're calling addChild on the Image component.
> This won't work with how the ImageComponent works (or rather SWFLoader,
> which is the base class). But the SWFLoader should be able to load a
> DisplayObject, if you set that as the source. Also, BTW, you don't need the
> URLLoader in your code
>
> So try doing this:
> private var loader:FlexLoader = new FlexLoader();
> loader.loadBytes (imageByteArray);
> previewImage.source = loader;
>
>  id="previewImage"/>
>
> -Doug
>
>
>
> Andrew D. Goodfellow wrote:
>
>  (I have searched for this answer on the list and in the docs and can't
> find anything so I'm gonna go ahead and post. If I missed a previous post, I
> apologize, please point me towards it.)
>
> I have an image in a ByteArray and I want to display it within a
> specific width and height inside an Image object. Here is my logic:
>
> private var urlloader:URLLoader = new URLLoader();
> private var loader:Loader = new Loader();
>
> urlloader.dataFormat = URLLoaderDataFormat.BINARY;
> urlloader.data = ByteArray(imageByteArray);
> loader.loadBytes (ByteArray(urlloader.data));
> var child:DisplayObject = previewImage.addChild(genericLoader);
>
>  id="previewImage"/>
>
> When it displays it does not scale automatically, it simply displays at
> 1:1 of the original ByteArray image. If I set child.width and
> child.height to specific values (i.e. 215x260) the Image (or child) just
> doesn't display.
>
> I CAN change scale directly or use a Matrix to scale it, but the problem
> there is that the child.width and .height are returning 0 so I can't
> calculate the correct scale.
>
> Any ideas???
>
> -Andy
>
>
>


 



Re: [flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow

Thanks Doug! When I do that I'm getting the error:

Error: Error #2099: The loading object is not sufficiently loaded to provide
this information.
   at flash.display::LoaderInfo/get width()
   at mx.controls::SWFLoader/get ::contentHolderWidth()
   at mx.controls::SWFLoader/::doScaleContent()
   at mx.controls::SWFLoader/mx.controls:SWFLoader::updateDisplayList()
   at mx.controls::Image/mx.controls:Image::updateDisplayList()
   at mx.core::UIComponent/validateDisplayList()
   at mx.managers::LayoutManager/::validateDisplayList()
   at mx.managers::LayoutManager/::doPhasedInstantiation()
   at Function/http://adobe.com/AS3/2006/builtin::apply()
   at mx.core::UIComponent/::callLaterDispatcher2()

Does anyone know what event is fired when the load is complete? I can't find
any docs on FlexLoader and Event.COMPLETE doesn't seem to ever fire...

-Andy

On 2/2/07, Doug McCune <[EMAIL PROTECTED]> wrote:


   Your problem is that you're calling addChild on the Image component.
This won't work with how the ImageComponent works (or rather SWFLoader,
which is the base class). But the SWFLoader should be able to load a
DisplayObject, if you set that as the source. Also, BTW, you don't need the
URLLoader in your code

So try doing this:
private var loader:FlexLoader = new FlexLoader();
loader.loadBytes (imageByteArray);
previewImage.source = loader;




-Doug



Andrew D. Goodfellow wrote:

 (I have searched for this answer on the list and in the docs and can't
find anything so I'm gonna go ahead and post. If I missed a previous post, I
apologize, please point me towards it.)

I have an image in a ByteArray and I want to display it within a specific
width and height inside an Image object. Here is my logic:

private var urlloader:URLLoader = new URLLoader();
private var loader:Loader = new Loader();

urlloader.dataFormat = URLLoaderDataFormat.BINARY;
urlloader.data = ByteArray(imageByteArray);
loader.loadBytes (ByteArray(urlloader.data));
var child:DisplayObject = previewImage.addChild(genericLoader);




When it displays it does not scale automatically, it simply displays at
1:1 of the original ByteArray image. If I set child.width and child.heightto 
specific values (
i.e. 215x260) the Image (or child) just doesn't display.

I CAN change scale directly or use a Matrix to scale it, but the problem
there is that the child.width and .height are returning 0 so I can't
calculate the correct scale.

Any ideas???

-Andy


 



[flexcoders] ByteArray / URLLoader / Loader / Image / Size?

2007-02-02 Thread Andrew D. Goodfellow

(I have searched for this answer on the list and in the docs and can't find
anything so I'm gonna go ahead and post. If I missed a previous post, I
apologize, please point me towards it.)

I have an image in a ByteArray and I want to display it within a specific
width and height inside an Image object. Here is my logic:

private var urlloader:URLLoader = new URLLoader();
private var loader:Loader = new Loader();

urlloader.dataFormat = URLLoaderDataFormat.BINARY;
urlloader.data = ByteArray(imageByteArray);
loader.loadBytes(ByteArray(urlloader.data));
var child:DisplayObject = previewImage.addChild(genericLoader);



When it displays it does not scale automatically, it simply displays at 1:1
of the original ByteArray image. If I set child.width and child.height to
specific values (i.e. 215x260) the Image (or child) just doesn't display.

I CAN change scale directly or use a Matrix to scale it, but the problem
there is that the child.width and .height are returning 0 so I can't
calculate the correct scale.

Any ideas???

-Andy


Re: [flexcoders] Re: Loader.load(URLRequest) -> ByteArray ?

2007-01-29 Thread Andrew D. Goodfellow

That worked perfectly once I figured out to set the dataFormat to
URLLoaderDataFormat.BINARY. Thanks a bunch Doug!

-Andy

On 1/28/07, dougmccune <[EMAIL PROTECTED]> wrote:


  Use a URLLoader, which gives you the ByteArray as the data property
after it has been loaded.

Doug

--- In flexcoders@yahoogroups.com , "Andrew
D. Goodfellow"

<[EMAIL PROTECTED]> wrote:
>
> I feel like I must be missing something. I have a Loader object that
I am
> loading image data to, sometimes as a URLRequest and sometimes as a
> ByteArray. It depends on if I am getting the data from an upload or
from the
> database.
>
> How do I go about getting a ByteArray back out of the Loader object?
I have
> seen many posts on Loader and ByteArray, but I don't see a solution,
unless
> I am missing something obvious... Anyone?
>
> -Andy
>

 



[flexcoders] Loader.load(URLRequest) -> ByteArray ?

2007-01-28 Thread Andrew D. Goodfellow

I feel like I must be missing something. I have a Loader object that I am
loading image data to, sometimes as a URLRequest and sometimes as a
ByteArray. It depends on if I am getting the data from an upload or from the
database.

How do I go about getting a ByteArray back out of the Loader object? I have
seen many posts on Loader and ByteArray, but I don't see a solution, unless
I am missing something obvious... Anyone?

-Andy


Re: [flexcoders] Since flex 2.0.1

2007-01-17 Thread Andrew D. Goodfellow

On 1/8/07, John Kirby <[EMAIL PROTECTED]> wrote:


   Dave -

Thanks.  I have solved my problems thanks to this link:




Not sure this is only a Mac issue but I uninstalled then reinstalled
and everything worked except  I had to change  mx.effects.EffectInstanceto
mx.effects.IEffectInstance.  This was well documented.

The bottom line to Mac users going from Beta to 2.0.1... Uninstall beta
then reinstall 2.0.1

.j

Dave Carabetta said the following:

 John,

This link should give you all the info you need as far as what is changed
and fixed in the new release:

http://www.adobe.com/support/documentation/en/flex/2/releasenotes_flex201_sdk.html


Further, and I'm not saying it will definitely fix your problems, but you
may want to make sure you do a "clean" build just to make sure all remnants
of the 2.0 build are removed in favor of the 2.0.1 code base. That's found
under "Project -> Clean..." in Flex Builder.

Regards,
Dave.
Cynergy Systems, Inc.


 On 1/8/07, John Kirby <[EMAIL PROTECTED]> wrote:
>
>   I don't know the cause of these errors but I have my own recompile
> errors since moving to 2.0.1 (Mac).
>
> It would be nice if someone from Adobe would post documentation on what
> has changed in the API since the last release so we can all debug our
> "legacy" applications.
>
> I for one have an application which is "crippled" since moving to
> 2.0.1... moving back to 2.0.0 until I can debug what the solution should
> be?
>
> .j
>
> maikelsibbald said the following:
>
>  I've updated today to flex 2.0.1
>
> And now I suddenly get these errors? doe anybody know what the problem
> is.
>
> TypeError: Error #1009: Cannot access a property or method of a null
> object reference.
> at
>
> 
org.panda.gpn.view.workspace.results::OverView/__admin_sort_xml_collectionChange
> ()
> at
>
> 
flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction
> ()
> at flash.events::EventDispatcher/dispatchEvent()
> at mx.collections::ListCollectionView/dispatchEvent()
> at mx.collections::ListCollectionView/::internalRefresh()
> at mx.collections::ListCollectionView/refresh()
> at mx.collections::ListCollectionView/initialized()
> at
> org.panda.gpn.view.workspace.results::OverView/::_XMLListCollection1_i()
> at org.panda.gpn.view.workspace.results::OverView$iinit()
> at mx.core::Container/createComponentFromDescriptor()
> at mx.core::Container/createComponentsFromDescriptors()
> at mx.containers::ViewStack/createComponentsFromDescriptors()
> at mx.core::Container/mx.core:Container::createChildren()
> at mx.core::UIComponent/initialize()
> at mx.core::Container/initialize()
> at
> mx.core::UIComponent/
> http://www.adobe.com/2006/flex/mx/internal::childAdded()
> at
> mx.core::Container/
> http://www.adobe.com/2006/flex/mx/internal::childAdded()
> at mx.core::Container/addChildAt()
> at mx.core::Container/addChild()
> at mx.core::Container/createComponentFromDescriptor()
> at mx.core::Container/createComponentsFromDescriptors()
> at mx.core::Container/mx.core:Container::createChildren()
> at mx.core::UIComponent/initialize()
> at mx.core::Container/initialize()
> at org.panda.gpn.view.workspace::WorkspaceView/initialize()
> at
> mx.core::UIComponent/
> http://www.adobe.com/2006/flex/mx/internal::childAdded()
> at
> mx.core::Container/
> http://www.adobe.com/2006/flex/mx/internal::childAdded()
>
>
>  --
> *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

 



Re: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Andrew D. Goodfellow

Maybe I'm wrong, but I saw a bunch of tiling going on when Jobs was zooming
in and out. I also noticed the compression changes when the zoom-in finished
from low quality to high. All that makes me wonder if there isn't some
"faking-it" going on for the zoom feature. Almost like a mapping program for
a web-page, where the iPhone Safari browser renders the web-page into a
buffer off screen and then clones it to a bitmap and uses that to display
and scale up/down on the phone.

IF that is the case that will cause huge problems with motion graphics on a
web-page displayed in the iPhone (ie, they will not animate). I tried to
look for animations on his demo's of NYT and Amazon but I wasn't able to
spot any, Maybe someone else did?

Thoughts / other observations?

-Andy


On 1/10/07, Shannon Hicks <[EMAIL PROTECTED]> wrote:


   All that is, as far as Safari goes, is the ability to zoom in and out.
Do you have dual mouse events when someone uses User Accessibility to zoom
in on XP or OS X? :)

Through Safari, the flash movie wouldn't see anything special. Now, if
they opened up widgets to use FP9, then I'm sure there's going to be some
new mouse events.

Shan

Ian Thomas wrote:

 Pretty sure. Watch the 'image zoom' movie - putting two fingers on the
screen and moving them apart zooms the image...

Ian

 On 1/10/07, Merrill, Jason <[EMAIL PROTECTED]> wrote:
>
>  The same way Safari does.  (but are you sure there are multiple
> simutaneous mouse events in the iPhone?)
>
>
> Jason Merrill
> Bank of America
> Learning & Organizational Effectiveness
>
>


 



Re: [flexcoders] Flex/Flash on The iPhone ?

2007-01-10 Thread Andrew D. Goodfellow

If y'all haven't seen this you should. The iPhone is not the first interface
to show this kind of multiple gesture behavior...

http://www.youtube.com/watch?v=PLhMVNdplJc

-Andy

On 1/10/07, Michael Tuminello <[EMAIL PROTECTED]> wrote:


  I think they have no choice but to introduce something new here.  there
is currently no way to track the position of 2 or more pointers in relation
to each other (at least not that I am aware of).

Michael

On Jan 10, 2007, at 10:35 AM, Merrill, Jason wrote:


Cool.  Either way, I bet the mouse event for the Flash player would be the
same one that comes from Safari - unless they are pushing a special version
of Safari for the iPhone which has two mouse events. Even if there were two,
I'm sure there's a primary and secondary, and they wouldn't change the API
for the primary because they know it would break too many web apps.


Jason Merrill
Bank of America
Learning & Organizational Effectiveness



 



Re: [flexcoders] Re: FLV Thumbnail

2007-01-08 Thread Andrew D. Goodfellow

I basically do the same thing but I use a Windows server, PHP and Apache2
header rewriting to make it really pretty. If that setup is something you
are interested in seeing the code for I would be glad to share it. I almost
posted it here but I'm afraid of what might happen to me if I submit PHP
code to an MXML/AS3 list. Worlds Colliding! ;o)

-Andy

On 1/8/07, Collin Peters <[EMAIL PROTECTED]> wrote:


  This is the command that I use:
ffmpeg -v 0 -y -i $OUTPUT_FILE -f mjpeg -an $HEADSHOT_DIR/$BASE_DIR/$jpg
2>&1

I run that in a bash shell script which is invoked by the flash client via
remoting


On 1/8/07, john_69_11 <[EMAIL PROTECTED]> wrote:
>
>   --- In flexcoders@yahoogroups.com ,
> "Andrew D. Goodfellow"
> Ya, I had heard about that. I was trying to offload some of the
> processing to the user by doing it in AS. I have found that unless
> you are getting the FLV from a server you control you will run into
> crossdomain issues when trying to process it in AS. It looks like
> I'll be following suit and using ffmpeg as well. Do you have any
> suggestions/links on how to set it up? I want to process remote flvs
> for now and eventually using it to convert avi/other video formats to
> flv.
>
> Thanks for the help,
>
> -John
>
> <[EMAIL PROTECTED]> wrote:
> >
> > John,
> >
> > I don't do it in AS. I always process the flv on the fly (with
> caching of
> > course) with an open source tool called ffmpeg (
> > http://sourceforge.net/projects/ffmpeg/) and load the thumbnail via
> url just
> > like an external image. It's tricky to get it working, but once you
> do it
> > works wonderfully.
> >
> > -Andy
> >
> > On 1/8/07, john_69_11 <[EMAIL PROTECTED]> wrote:
> > >
> > > I'm trying to generate an image thumbnail of an FLV and can't
> seem to
> > > find any way to do it. Only thing that people seem to be doing is
> > > creating a player for the flv, then pausing and stopping the stream
> -
> > > I want to grab an image of the one of the flv frames. I found a
> piece
> > > of code here:
> > >
> > > http://www.flash-db.com/Tutorials/snapshot/snapshot.php?page=2
> > >
> > > which i tried to implement with code like this in onFrameEnter:
> > >
> > > //Here we will copy pixels data
> > > pixels = new Array()
> > > //Create a new BitmapData
> > > snap = new BitmapData(_video.width, _video.height);
> > > //Matrix to scale the new image
> > > var myMatrix:Matrix = new Matrix();
> > > myMatrix.scale(0.5, 0.5)
> > > //Copy video image
> > > snap.draw(_video, myMatrix);
> > >
> > > var w:Number = snap.width, tmp
> > > var h:Number = snap.height
> > > var a:Number = 0
> > > for(var b=0; b<=h; b++){
> > > tmp = snap.getPixel32(a, b).toString(16)
> > > trace(tmp)
> > > pixels.push(tmp.substr(1))
> > > }
> > > a++
> > > if(a>w){ //Finish capturing
> > >
> > > //sendData(pixels, h, w)
> > > //free memory
> > > snap.dispose()
> > >
> > > }
> > >
> > > Now, it seems like the pixels are being captured, but I'm not
> certian
> > > and I can't seem to display the captured image at all. I've tried
> > > using an image object and a Bitmap set to the BitmapData (variable
> > > snap) but it doesn't display. Anyone know of how to make this work,
> > > or a better way?
> > >
> > > Thanks,
> > >
> > > John
> > >
> > >
> > >
> >
>
>


--
Collin Peters
Lead Software Developer
InTouch Technology

 



Re: [flexcoders] Re: How can we achieve this effect in flex??? Any Ideas???

2007-01-08 Thread Andrew D. Goodfellow

Omkar,

Have you made any progress with this? Maybe I missed it? Otherwise I'm going
to try to create it myself.

-Andy

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


  Thanks Brian, That are really valuable inputs. I am thinking of
creating that effect as my RnD pro. As soon as I finish it I'll post
it over here.

Omkar

--- In flexcoders@yahoogroups.com , "Brian
Dunphy" <[EMAIL PROTECTED]>
wrote:
>
> 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.php
>
> Also, 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,
>
> Brian
>
> On 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!
> >
> > g
> >
> > On 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 Costa
> > > www.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
>

 



Re: [flexcoders] FLV Thumbnail

2007-01-08 Thread Andrew D. Goodfellow

John,

I don't do it in AS. I always process the flv on the fly (with caching of
course) with an open source tool called ffmpeg (
http://sourceforge.net/projects/ffmpeg/) and load the thumbnail via url just
like an external image. It's tricky to get it working, but once you do it
works wonderfully.

-Andy

On 1/8/07, john_69_11 <[EMAIL PROTECTED]> wrote:


  I'm trying to generate an image thumbnail of an FLV and can't seem to
find any way to do it. Only thing that people seem to be doing is
creating a player for the flv, then pausing and stopping the stream -
I want to grab an image of the one of the flv frames. I found a piece
of code here:

http://www.flash-db.com/Tutorials/snapshot/snapshot.php?page=2

which i tried to implement with code like this in onFrameEnter:

//Here we will copy pixels data
pixels = new Array()
//Create a new BitmapData
snap = new BitmapData(_video.width, _video.height);
//Matrix to scale the new image
var myMatrix:Matrix = new Matrix();
myMatrix.scale(0.5, 0.5)
//Copy video image
snap.draw(_video, myMatrix);

var w:Number = snap.width, tmp
var h:Number = snap.height
var a:Number = 0
for(var b=0; b<=h; b++){
tmp = snap.getPixel32(a, b).toString(16)
trace(tmp)
pixels.push(tmp.substr(1))
}
a++
if(a>w){ //Finish capturing

//sendData(pixels, h, w)
//free memory
snap.dispose()

}

Now, it seems like the pixels are being captured, but I'm not certian
and I can't seem to display the captured image at all. I've tried
using an image object and a Bitmap set to the BitmapData (variable
snap) but it doesn't display. Anyone know of how to make this work,
or a better way?

Thanks,

John

 



[flexcoders] Allowing text to follow a curve

2007-01-02 Thread Andrew D. Goodfellow

Hey, has anyone out there ever made text that follows a curve in flex2? Like
a besier curve or even a circle? I've searched but can't find any examples
of where to start. TIA.

-Andy


Re: [flexcoders] Flex help on IRC

2006-11-28 Thread Andrew D. Goodfellow

Great idea Louie! I've been using this channel for about a day now and I'm
finding it very useful.

I'd definitely encourage everyone on the list to come and participate, or at
least lurk. :o)

-Andy


On 11/27/06, Louie Penaflor <[EMAIL PROTECTED]> wrote:


   Hey everyone,



For those of you who would like to attempt a different way of
getting help, we have started a flex channel on IRC Chat called #flex.
It's on efnet.  Hope to see you there.



Louie



 



Re: [flexcoders] security issues when capturing flex screens that contain other domain bitmaps

2006-11-03 Thread Andrew D. Goodfellow



I literally just hit this problem now too. Did you ever receive a solution Hank? Anyone else?-AndyOn 9/26/06, hank williams <

[EMAIL PROTECTED]> wrote:












  



I have a flex screen that I want to capture into a bitmap using the
technique that Andrew Trice described earlier this week.

it works as so:



private function getUIComponentBitmapData(target:UIComponent):BitmapData{
var bd : BitmapData = new BitmapData( target.width, target.height );
var m : Matrix = new Matrix();
bd.draw(target,m);
return bd;
}


I am feeding that function a UIComponent that contains an image that
looks like this:




	verticalAlign="middle"
	horizontalAlign="middle"
	source="{model.picture_http}" width ="200" height="200"/>



The problem is that the model.picture_http is on another domain.

The error I get is as follows:


SecurityError: Error #2122: Security sandbox violation:
BitmapData.draw:
http://localhost:8080/elroyServer/songmail/songmail-debug.swf cannot
access http://storage.elroynetworks.com/0922337203685477580744.


A policy file is 
required, but the checkPolicyFile flag 
was not set
when this media was 
loaded.


This seems to suggest that I need a crossdomain.xml file, which 
is
fine. I have that, and I believe it is in the right place. The problem
is I am supposed to set a checkPolicyFile 
flag. The doc's explain how
to do this, but not in the context of Flex. 
The docs say:


When you load the image using the load() method of the
 Loader class,
you can specify a context parameter, which is a LoaderContext object.
If you set the checkPolicyFile property of the LoaderContext object to

true, Flash Player checks for a cross-domain policy file on 
the server
from which the image is loaded. If there is 
a cross-domain policy
file, and the file permits the domain of 
the loading SWF file, the
file is allowed to access data in the Bitmap object; otherwise, access
is denied.

You can also specify a checkPolicyFile property in an image loaded via
an  tag in a text field. For details, see Loading SWF files and
images using the  tag in a text field.


I dont know how one would use the "load() " command from MXML.
Moreover, I would really like an MXMLish way to deal with cross domain
issues.

Has anybody dealt with this?

Hank

  
















__._,_.___





--
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] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-11-02 Thread Andrew D. Goodfellow



All the features everyone has mentioned are very exciting. However right now I am only excited about one single Apollo feature. IMHO It's the most important feature, for me at least, of Apollo bar none. What could that feature be? It's the Apollo Public Release Date feature! ;o)
You better cluster and load balance the web servers once you announce it's download location, because that address is gonna get buried with requests about 5 minutes later...-Andy
On 10/31/06, Gordon Smith <[EMAIL PROTECTED]> wrote:













  













Just wondering, 
since I'm working on 
it...
what features of Apollo are people most excited about?

 

- Gordon

 









From:
[EMAIL PROTECTED]ups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of Andrew D. Goodfellow
Sent: Tuesday, October 31, 2006
6:15 AM
To: [EMAIL PROTECTED]ups.com
Subject: Re: [flexcoders] Isn´t
there any release of Adobe Apollo yet? Alpha maybe



 







Yep, I know how you feel. The suspense is brutal. I
could have already built and sold like 8 products built on it.

There are probably too many holes in it still, or at least that's what I keep
telling myself. :o)

-Andy



On 10/31/06, arianrechia
<[EMAIL PROTECTED]>
wrote:










Hi people,
I´m very exciting about Adobe Apollo, and I´ve been looking for some
download to try the Apollo SDK, but with no success =(

anyone already have a apollo alpha realease??

thanxs











 












  















__._,_.___





--
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] Isn´t there any release of Adobe Apollo yet? Alpha maybe....

2006-10-31 Thread Andrew D. Goodfellow



Yep, I know how you feel. The suspense is brutal. I could have already built and sold like 8 products built on it.There are probably too many holes in it still, or at least that's what I keep telling myself. :o)
-AndyOn 10/31/06, arianrechia <[EMAIL PROTECTED]> wrote:













  



Hi people,
I´m very exciting about Adobe Apollo, and I´ve been looking for some
download to try the Apollo SDK, but with no success =(

anyone already have a apollo alpha realease??

thanxs


  















__._,_.___





--
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: [DateChooser] Emphasize specific days

2006-10-11 Thread Andrew D. Goodfellow



Tom,I appreciate your response, thanks. However this does not answer the question posted. I obviously was not clear enough. I do not want to "select" multiple dates, I want to "indicate" there is some data on certain dates _if_ one of those dates were to be selected by the user.
If you've already answered that question as well then I apologize and humbly ask you to point us all back to a different answer. I believe I have searched the forums thoroughly and came up empty.-Andy
On 10/11/06, Tom Chiverton <[EMAIL PROTECTED]> wrote:
On Wednesday 11 October 2006 04:56, Andrew D. Goodfellow wrote:> I'm really interested in this type of thing as well. Searching the list I> see one other question about this with no response from Syed Mazhar Hasan
> Qadri on August 6.Maybe people got tired of pointing people at the livedocs web site.I've already answered this question once, but here we go again:
http://livedocs.macromedia.com/flex/2/langref/mx/controls/DateChooser.html#selectedRanges--Tom ChivertonHelping to authoritatively empower network customers
This email is sent for and on behalf of Halliwells LLP.Halliwells LLP is a limited liability partnership registered in England and Wales under registered number OC307980 whose registered office address is at St James's Court Brown Street Manchester M2 2JF.  A list of members is available for inspection at the registered office. Any reference to a partner in relation to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law Society.
CONFIDENTIALITYThis email is intended only for the use of the addressee named above and may be confidential or legally privileged.  If you are not the addressee you must not read it and must not use any information contained in nor copy it nor inform any person other than Halliwells LLP or the addressee of its existence or contents.  If you have received this email in error please delete it and notify Halliwells LLP IT Department on 0870 365 8008.
For more information about Halliwells LLP visit www.halliwells.com.--Flexcoders Mailing ListFAQ: 
http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txtSearch Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 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/

__._,_.___





--
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: [DateChooser] Emphasize specific days

2006-10-10 Thread Andrew D. Goodfellow



I'm really interested in this type of thing as well. Searching the list I see one other question about this with no response from Syed Mazhar Hasan Qadri on August 6.Has anyone done anything like this with the Flex 2 DateChooser? It seems like this would pretty a pretty common use-case for this component...
-AndyOn 9/5/06, Xavier Agnetti
 <[EMAIL PROTECTED]> wrote:














  



On 9/3/06, Xavier Agnetti <[EMAIL PROTECTED]> wrote:
> Hi !
>
> Is there a way to emphasize (set a background color by example) some
> days with Flex 2.0.
> This was pretty easy with Flex 1.5 by using dateGrid attribute, but I
> did not find a similar attribute in Flex 2.
>
> Any idea ?

No one has an idea ?

-- 
Xavier Agnetti

  
















__._,_.___





--
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] XMPP AS3 class libraries on Labs

2006-09-13 Thread Andrew D. Goodfellow



Hi Danny,Any word on an update? There are several issues that are not compatible with the full release. StringBuilder and flash.util are a few. I have corrected all the errors and warnings, however many of the tests are failing and if there is an imminent update I will wait on debugging the old code in favor of new. Thanks!
-AndyOn 8/16/06, Daniel Dura <[EMAIL PROTECTED]> wrote:













  



Hi Joao,Those libraries should work with the release version of Flex Builder. I will double check and make sure though. What errors are you running into?Also, I will be making an update to these libraries very soon. They are still under development and the next update should be much more stable.
- DannyOn 8/16/06, João Fernandes <
[EMAIL PROTECTED]> wrote:













  



Hi there,

I started playing around with the available XMPP(Jabber) classes on Labs but I've got some errors.

Are those still under development or can already be used?

Thanks,

João Fernandes

  















  















__._,_.___





--
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] Flex 1.5 - How can I make a ColumnSeries always show datatips?

2006-05-03 Thread Andrew D. Goodfellow



Hi all,

I've scoured the forums and don't see a way to make the dataTips
always show for a ColumnSeries chart. I'd like them always on instead
of just on mouse over... Anyone know how? TIA!

-Andy






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

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  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] Flex 1.5 Box container component that wraps?

2006-04-23 Thread Andrew D. Goodfellow



We're all super familiar with the HBox and VBox containers. Has anyone
extended one of these to get a wrapping behavior? Almost like an
HVBox? :) I want to create a tag cloud using Link components to look
like: http://www.flickr.com/photos/tags/ I don't think Grid or Tile
will give me the functionality I'm looking for because it will be
really hard to cluster them up together when they have differing
heights and widths.

I guess I'm looking for some suggestions for the best way to tackle
it. Anyone have any? Thanks in advance...

-Andy






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

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  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] Flex 1.5 HTTPService Fault: An XML element was malformed

2005-12-30 Thread Andrew D. Goodfellow



Thanks Tracy, that did help. Now I'm getting a wierd fault back that says it can't parse the HTTP response, but everything is posting ok. I'll just catch the fault for now. Thanks again!-Andy
On 12/30/05, Tracy Spratt <[EMAIL PROTECTED]> wrote:



















Probably the returned xml is malformed. ;)

 

Seriously, call the HTTPService url
directly from a browser.  What you get back will probably show the problem.

 

Ah, also, I am not sure that adding
querystring data to the url is supported.  Instead, put your data into a
request object and then call the naked url.  This way you can use POST, which
can carry more data, more securely, and with less issues with escaping.

 

It is partially supported.  I found this
in the docs:

url

url
:
String   

Location of the service. The specified URL should not contain any query
parameters (? followed by name/value pairs), unless the HTTP method is GET and
the 
 tag contains no request parameters.
Currently you can only add parameters to the URL if you set it through
ActionScript, not the tag. Use either the url
 property or the serviceName
 property, not both.

 

Still, it is an ugly way to do it.  Use
the request Object.

var sReqParam:String = "SEL_EVENT"
+ sWhatever;

var oRequest:Object = new Object({sql: sReqParam
})

eventHTTP.send(oRequest
);

 

Tracy


 









From: 
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] 
On Behalf Of Andrew D, Goodfellow
Sent: Friday, December 30, 2005
1:30 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex 1.5
HTTPService Fault: An XML element was malformed



 

Does anyone know why when I run this code I get an error that says:
"HTTPService Fault: An XML element was malformed."? It seems to only
happen when I escape things like & and # into the URL.



http://www.macromedia.com/2003/mxml">

    
    
    
    
     


TIA

-Andy








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


Web site design development
  
  

Computer software development
  
  

Software design and development
  
  



Macromedia flex
  
  

Software development best practice
  

   
  







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








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  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] Flex 1.5 HTTPService Fault: An XML element was malformed

2005-12-29 Thread Andrew D, Goodfellow



Does anyone know why when I run this code I get an error that says: "HTTPService Fault: An XML element was malformed."? It seems to only happen when I escape things like & and # into the URL.http://www.macromedia.com/2003/mxml">                    
TIA-Andy






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



   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.