Skip to content

Instantly share code, notes, and snippets.

View 7interactivestudio's full-sized avatar

Rodrigo López Peker 7interactivestudio

View GitHub Profile
@7interactivestudio
7interactivestudio / ProgressiveDownload
Created January 11, 2014 02:27
ProgressiveDownload allows to download a file by chunks of data (useful for mobile devices, and memory friendly) and has the ability to pause/resume downloads saving download information for later usage. You can close the app ,and resume the download whenever you want. The API needs to be polish a lot... this is an "alpha version".
/**
* Code by rodrigolopezpeker (aka 7interactive™) on 1/9/14 12:30 PM.
*/
package rodrigolopezpeker.net {
import flash.events.Event;
import flash.events.ProgressEvent;
import flash.filesystem.File;
import flash.filesystem.FileMode;
import flash.filesystem.FileStream;
@7interactivestudio
7interactivestudio / BitmapChar.as
Last active March 14, 2016 01:49
Bitmap Chars for Genome2D Font created with Littera ( http://kvazars.com/littera/ ) GBitmapFont Topic and Demo: http://forum.genome2d.com/viewtopic.php?f=6&t=111
/**
* Created by rodrigo on 12/14/13.
*/
package rodrigolopezpeker.genome2d.text {
import com.genome2d.textures.GTexture;
import flash.utils.Dictionary;
public class BitmapChar {