[flexcoders] Re: RSL error after new deployment - player cache problem ? [fixed]

2012-01-04 Thread tom.chiverton


We're experimenting with adding 'Expires' headers to the .swf files, as well as 
the etag and last-modified we already send.
It appears just those two aren't always enough.

Tom



[flexcoders] Flash Caching

2012-01-04 Thread michael_regert
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] Repost: Adobe AIR 1.5.1: issue on opening encrypted DB

2012-01-04 Thread handitan
Hi all, 

  
I got a sqlite DB that's encrypted with AES256 using sqlite3 command line tool: 

sqlite3.exe -key test123Test test.db 

  
I able to do this encryption because I bought the SEE license. 

  
And I did test that the encryption does work, I could not view the DB content 
directly using the DB Admin Tool I have but I could view the content using the 
sqlite3 command line tool. 

I believe the reason why my DB Admin Tool couldn't work because it doesn't have 
the SEE license. 

  
Anyway, I tried to open this with ADOBE AIR and I did make sure passing the 
encryption key as part of the argument. 

But what I got is an error msg: 


Error message: Error #3125: Unable to open the database file. 

Details: An encryption key cannot be specified when the database is not 
encrypted. 


  
So this brings me to this question: 

- What kind of SQLite encryption does ADOBE AIR really supports? 

- Does ADOBE have SEE license? 

  
Please enlighten me. 

  
Thx! 



[flexcoders] Re: RSL error after new deployment - player cache problem ? [fixed]

2012-01-04 Thread tom.chiverton
we've now published a blog article with some details : 
http://www.extravision.com/blog/whats-wrong-caching

Tom




[flexcoders] Re: flexx 4.6 DateSpinner component

2012-01-04 Thread markflex2007
Please help. this solution doesn't work for me.

Thanks

Mark

--- In flexcoders@yahoogroups.com, tkraikit 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 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] HTML component with PDF disappears on rotate/scale

2012-01-04 Thread markflex2007
I have same issue like:

http://forums.adobe.com/thread/712793?tstart=0

I rotate 90 degree for mx:HTML , but it disappear .

any way to fix the issue.

Thanks

Mark