Sunday, October 10, 2010
Install Mac on Asus K42J
CD iBoot Supported http://www.insanelymac.com/forum/index.php?showtopic=219220
http://tonymacx86.blogspot.com/2010/05/iboot-supported-with-vanilla-kernel-for.html
File Update Mac 10.6.4, 10.6.5
File Driver
- Wifi AR9285 http://www.kexts.com/downloads.php?do=file&id=462
- Sound
- Chipset
- Graphic Card
- ...
Wednesday, October 06, 2010
Sprite Sheets Management
[[CCSpriteFrameCache sharedSpriteFrameCache] addSpriteFramesWithFile:@"runningman_coords.plist"];
// I presume this is where you load the first sprite?
CCSprite *sprite = [CCSprite spriteWithSpriteFrameName:@"runningman1.png"];
sprite.position = ccp( s.width/2-80, s.height/2);
CCSpriteSheet *spritesheet = [CCSpriteSheet spriteSheetWithFile:@"runningman_textures.png"];
[spritesheet addChild:sprite];
[self addChild:spritesheet];
NSMutableArray *animFrames = [NSMutableArray array];
for(int i = 1; i < style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; ">CCSpriteFrame *frame = [[CCSpriteFrameCache sharedSpriteFrameCache] spriteFrameByName:[NSString stringWithFormat:@"runningman%d.png",i]];
[animFrames addObject:frame];
}
CCAnimation *animation = [CCAnimation animationWithName:@"run" delay:0.2f frames:animFrames];
[sprite runAction:[CCRepeatForever actionWithAction: [CCAnimate actionWithAnimation:animation restoreOriginalFrame:NO] ]];
Wednesday, July 30, 2008
Create Plugin on Eclipse
The easiest way to create a plug-in is to use the Plug-in Development Environment (PDE)
http://www.ibm.com/developerworks/library/os-ecplug/
Tuesday, July 29, 2008
Tutorial of Dev Plugin Eclipse
http://www.vogella.de/eclipse.html
http://www.eclipsecon.org/2005/tutorials.php
http://www.eclipsepluginsite.com/
https://eclipse-tutorial.dev.java.net/
Sunday, July 27, 2008
Orangegear IDE Planing
-Code Completion
http://www.eclipse.org/articles/article.php?file=Article-BuildYourOwnDSL/index.html
-Syntax coloring
Resource:
http://www.eclipse.org/resources/?category=Plug-ins
http://www.eclipse.org/articles/Article-GEF-editor/gef-schema-editor.html
http://www.ibm.com/developerworks/opensource/library/os-eclipse-snippet/index.html?ca=dgr-eclipse-1
Wednesday, July 02, 2008
Monday, June 30, 2008
dd
http://www.howtoforge.com/mac4lin_make_linux_look_like_a_mac_p6