Archive for February, 2012
FDT An internal error occurred during: “Compile”. java.lang.NullPointerException ERROR
by MisterSaisho on Feb.19, 2012, under Uncategorized
http://bugs.powerflasher.com/jira/browse/FDT-2472?page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel
WTF?
workaround
Luckily there is a easy workaround that will resolve the issue for you as well:
- Go to your flex 4.6 SDK
- edit the content of flex-sdk-description.xml from:
<?xml version="1.0"?> <flex-sdk-description> <name>Flex 4.6.0</name> <version>4.6.0</version> <build>23201</build> </flex-sdk-description>
to:
<?xml version="1.0"?> <flex-sdk-description> <name>Flex 4.5.0</name> <version>4.5.0</version> <build>23201</build> </flex-sdk-description>
How to update the google usb drivers to allow for the sony tablet s.
by MisterSaisho on Feb.17, 2012, under Uncategorized
http://genesis.sony-europe.com/instranet/ccil_sony/selfservice/searcher.jsp?DocId=57552&l=en_GB&m
In order to connect Sony Tablet S and P, please follow below procedure.
- Turn on “USB debugging” in Sony Tablet S and P
- Put following device descriptions into each sections [Google.NTx86] and [Google.NTamd64] in extras\google\usb_driver\android_winusb.inf.SONY Sony Tablet P
%CompositeAdbInterface% = USB_Install, USB\VID_054C&PID_04D2&MI_01SONY Sony Tablet S
%CompositeAdbInterface% = USB_Install, USB\VID_054C&PID_05B4&MI_01 - Please add 0×54c into .android/adb_usb.ini file under HOME directory by using following command from command prompt.echo 0×54c >> %HOMEPATH%\.android\adb_usb.ini
im not sure why sony doesnt provide any drivers…
Printpre populate vector as3
by MisterSaisho on Feb.14, 2012, under Uncategorized
btns = new <String>['btn_home', 'btn_setup', 'btn_videos', 'btn_specs', 'btn_quickStart', 'btn_fastFixes', 'btn_icore'];
PrintMail to info for android and Ios
by MisterSaisho on Feb.14, 2012, under Uncategorized
Leave a Comment more...stage Web View help info flash stageWebView
by MisterSaisho on Feb.11, 2012, under Uncategorized
http://forums.adobe.com/thread/784393
var source:File = File.applicationDirectory.resolvePath("output-html");//copy entire folder (with css)
var destination:File = File.applicationStorageDirectory;
source.copyTo(destination, true);//copy to the application storage
//get path to the html page within copied folder
var resultsPageUrl:String = "file://" + destination.resolvePath("result_html_pattern.html").nativePath;
Printsave mercurial user info
by MisterSaisho on Feb.10, 2012, under Uncategorized
[auth]
merc.username = actioncreations
merc.password = secretPassword
merc.prefix = https://bitbucket.org
opzomize video flash
by MisterSaisho on Feb.10, 2012, under Uncategorized
http://www.flashstreamworks.com/2012/01/09/the-ultimate-guide-to-understanding-advanced-video-delivery-with-air-for-mobile/
Printoptimization info flash speed functions
by MisterSaisho on Feb.09, 2012, under Uncategorized
http://jacksondunstan.com/articles/413
PrintPHP file searching glob
by MisterSaisho on Feb.07, 2012, under Uncategorized
this will go through a dir named ‘kalmah’ that has one level of sub dirs then move each file to a new dir.
foreach(glob(‘kalmah/*/*’) as $file){
$newName = explode(‘/’,$file);
$newNameLength = count($newName);
$newName = $newName[$newNameLength - 1];
if(rename($file,’songs/’.$newName))
echo’renamed success <br/>’;
else
echo’rename fial <br/>’;
}
THIS ONE IS BETTER: it will loop through everything at the current level of the script.
$di = new RecursiveDirectoryIterator(‘./’);
foreach (new RecursiveIteratorIterator($di) as $filename => $file) {
echo $filename . ‘ – ‘ . $file->getSize() . ‘ bytes <br/>’;
}