MisterSaisho.com

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>
Print
1 Comment more...

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.

  1. Turn on “USB debugging” in Sony Tablet S and P
  2. 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_01

    SONY Sony Tablet S
    %CompositeAdbInterface%     = USB_Install, USB\VID_054C&PID_05B4&MI_01

  3. 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…

Print
Leave a Comment more...

pre 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'];

Print
Leave a Comment more...

Mail to info for android and Ios

by MisterSaisho on Feb.14, 2012, under Uncategorized

MAILTO FOR:

Android – mailto:thisisgay@dumbshit.com

IOS – mailTo:camelCased@applesucks.com

Print
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;
 
Print
1 Comment more...

save mercurial user info

by MisterSaisho on Feb.10, 2012, under Uncategorized

[auth]
merc.username = actioncreations
merc.password = secretPassword
merc.prefix = https://bitbucket.org

Print
Leave a Comment more...

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/

Print
Leave a Comment more...

optimization info flash speed functions

by MisterSaisho on Feb.09, 2012, under Uncategorized

http://jacksondunstan.com/articles/413

Print
1 Comment more...

PHP 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/>’;
}

Print
Leave a Comment more...

Looking for something?

Use the form below to search the site:

Still not finding what you're looking for? Drop a comment on a post or contact us so we can take care of it!