Re: [flexcoders] Flash Caching

2012-01-05 Thread ArunKumar Madas
Or use this in the  tags of index.template.html





~A

On Thu, Jan 5, 2012 at 6:00 AM, Rogerio Gonzalez  wrote:

> **
>
>
> Hello Michael!
>
> You can always use a serverside language to buildup the html wrapper,
> using a timestamp on the swf file to make the browser always think that is
> a new file.
>
>
> Regards
>
> Rogério Gonzalez
>
>
> On Wed, Jan 4, 2012 at 1:56 PM,  wrote:
>
>> **
>>
>>
>> I’m seeing an issue maybe some of you have run into.  IE 9 seems to be
>> caching our Flex app swf, even after clearing the cache.  I’ve confirmed
>> using Charles Proxy that sure enough, the SWF is never requested and IE 9
>> is using a cached version.  We can try clearing the cache all day, shutting
>> down all windows, no luck.  BUT, using the F12 Developer Tools in IE9 and
>> clearing the cache there DOES fix it.  Any idea why?  
>>
>> ** **
>>
>> * *
>>
>> * *
>>
>> *Michael J. Regert***
>>
>> Software Development Sr. Engineer
>>
>> *Dell* | Enterprise Systems Management**
>>
>> *office* +1 512 728 4483
>>
>> *fax* +1 512 723 1952
>>
>> Dell Inc. One Dell Way, MS RR5-32, Round Rock, TX 78682
>>
>> ** **
>>
>>
>  
>


[flexcoders] Re: flexx 4.6 DateSpinner component

2012-01-05 Thread tkraikit
What exactly doesn't work? Were you able to get the custom component to appear?

-- Tom


--- In flexcoders@yahoogroups.com, "markflex2007"  wrote:
>
> Please help. this solution doesn't work for me.
> 
> Thanks
> 
> Mark
> 
> --- In flexcoders@yahoogroups.com, "tkraikit"  wrote:
> >
> > I haven't fully tested this out, but you can try doing the following:
> > 
> > * create your own sub-class of DateSpinner
> > * override the createDateItemList() function and have it return null for 
> > DATE_ITEM date parts
> > 
> > e.g. something like this:
> > 
> > package components
> > {
> > import spark.components.DateSpinner;
> > import spark.components.SpinnerList;
> > 
> > public class DateSpinnerModified extends DateSpinner
> > {
> > public function DateSpinnerModified()
> > {
> > super();
> > }
> > 
> > override protected function createDateItemList(datePart:String, 
> > itemIndex:int, itemCount:int):SpinnerList
> > {
> > if (datePart != DATE_ITEM)
> > return super.createDateItemList(datePart, itemIndex, 
> > itemCount);
> > return null;
> > }
> > 
> > }
> > }
> > 
> > Now use your custom DateSpinner subclass in place of the Flex component.
> > 
> > HTH,
> > 
> > -- Tom
> > 
> > 
> > --- In flexcoders@yahoogroups.com, "markflex2007"  wrote:
> > >
> > > Hi,
> > > 
> > > I need a component that just input year and month. May I custom 
> > > DateSpinner component to do this.
> > > 
> > > How to build the new component?please give me a idea.
> > > 
> > > Thanks
> > > 
> > > Mark
> > >
> >
>




[flexcoders] FlexUnit - Generated XML

2012-01-05 Thread cuttenv
Hi everyone,
I noticed that flexunit generates a bunch of XML files I was wondering if 
anyone knows of any plugins or toolsets that can be used to generate a web page 
from all of the generated files. That way I can quickly see all of the tests 
that failed and passed.
Thanks!



Re: [flexcoders] Re: HTML component with PDF disappears on rotate/scale

2012-01-05 Thread dorkie dork from dorktown
I think the PDF is being displayed in the Adobe Reader plugin and layered
on top of your SWF. It doesn't support rotation at least not via component
rotation property. You may be able to talk to the Reader plugin and specify
a way to rotate it.

On Thu, Jan 5, 2012 at 10:37 AM, markflex2007 wrote:

> **
>
>
> Please help me. I need to fix it.
>
> Thanks
>
> Mark
>
>
> --- In flexcoders@yahoogroups.com, "markflex2007" 
> wrote:
> >
> > I have same issue like:
> >
> > http://forums.adobe.com/thread/712793?tstart=0
> >
> > I rotate 90 degree for , but it disappear .
> >
> > any way to fix the issue.
> >
> > Thanks
> >
> > Mark
> >
>
>  
>


[flexcoders] AIR: How to connect to external proxy

2012-01-05 Thread Matthew
Hi - 

I need my AIR app to connect to an external proxy via HTTPService call and I'm 
not using Blaze DS. 

How do I go about this? I can't figure it out. 

Any helpful tips are greatly appreciated. 

Thank you



[flexcoders] Re: HTML component with PDF disappears on rotate/scale

2012-01-05 Thread markflex2007
Please help me. I need to fix it.

Thanks

Mark

--- In flexcoders@yahoogroups.com, "markflex2007"  wrote:
>
> I have same issue like:
> 
> http://forums.adobe.com/thread/712793?tstart=0
> 
> I rotate 90 degree for , but it disappear .
> 
> any way to fix the issue.
> 
> Thanks
> 
> Mark
>




Re: [flexcoders] Flash Caching

2012-01-05 Thread Rogerio Gonzalez
Hello Michael!

You can always use a serverside language to buildup the html wrapper, using
a timestamp on the swf file to make the browser always think that is a new
file.


Regards

Rogério Gonzalez

On Wed, Jan 4, 2012 at 1:56 PM,  wrote:

> **
>
>
> I’m seeing an issue maybe some of you have run into.  IE 9 seems to be
> caching our Flex app swf, even after clearing the cache.  I’ve confirmed
> using Charles Proxy that sure enough, the SWF is never requested and IE 9
> is using a cached version.  We can try clearing the cache all day, shutting
> down all windows, no luck.  BUT, using the F12 Developer Tools in IE9 and
> clearing the cache there DOES fix it.  Any idea why?  
>
> ** **
>
> * *
>
> * *
>
> *Michael J. Regert***
>
> Software Development Sr. Engineer
>
> *Dell* | Enterprise Systems Management**
>
> *office* +1 512 728 4483
>
> *fax* +1 512 723 1952
>
> Dell Inc. One Dell Way, MS RR5-32, Round Rock, TX 78682
>
> ** **
>
>  
>


[flexcoders] Title window skinning [1 Attachment]

2012-01-05 Thread sony antony
Attached is a sample titlewindow skin class.. 
how do I add close button to it and how do I invoke close event for my popup..