shinu.s

shinu.s's page

29
Jul

First,
Add your image to the shared texture cache.

[[CCTextureCache sharedTextureCache] addImage:@”urimage.png”];

Second,

Create a variable and assign the image to it, like

CCTextureCache *urNewTexture = [CCTextureCache sharedTextureCache];

Now ‘urNewTexture’ contains the image.

, ,

15
Jul

For showing particle effects continuously in cocos2d,

CCParticleSystemQuad *effect = [CCParticleSystemQuad particleWithFile:@"rain_effect.plist"];

[self addChild:effect z:5];

,

15
Jul

For making a UITextField password protected,

IBOutlet UITextField *passwordTextField;

passwordTextField.secureTextEntry = YES;

15
Jul

For setting custom font to UITextView,

IBOutlet UITextView *commentsField;

[commentsField setFont:[UIFont fontWithName:@"Arial Rounded MT Bold" size:18]];

,

15
Jul

For showing a UITextField without borders,

IBOutlet UITextField *accountTextField;

accountTextField.borderStyle = UITextBorderStyleNone;

,

15
Jul

For showing particle effects only for a fixed time interval in cocos2d,

CCParticleSystemQuad *explosionGud = [CCParticleSystemQuad particleWithFile:@"ExplosionGud.plist"];

//Setting some parameters for the effect
explosionGud.position = ccp(location.x, location.y);
explosionGud.life =0.5;
explosionGud.duration = 0.5;

//Adding and removing after effects
[self addChild:explosionGud];
explosionGud.autoRemoveOnFinish=YES;

, , ,

15
Jul

For calling a function after a custom time interval in Cocos2D,

[self performSelector:@selector(notesDisplay) withObject:nil afterDelay:3.0];

this will call the function ‘notesDisplay’ after time 3sec

,

07
Jul

July 7, 2011. students from Cleveland State University, Ohio, visited Schogini Inc.. A group of 12 students from various disciplines, who are doing Majors, visited Schogini Systems along with their Professor Dr. Murali D. Nair, Professor and Director, School of Social Work CSU, Ohio.

Our guests spent a couple of hours chatting with the iPhone and Android developers of Schogini Inc. They have expressed their views on Mobile Application development in iOS and Android. The students were excited after checking out a few of our educational applications in iPhone and Android.

They have also suggested to build some educational applications in iPhone and Android for teaching students with disability. Schogini Inc. is ready to build those applications entirely with out any cost, because our first priority will always be for a noble social cause. What we always strive to achieve is technological perfection to meet our clients need.

As most of our guests are doing Majors in Social Work and working with Non Profit Organizations, they shared with us the type of educational applications that would be very useful to students with different learning disabilities.

We are pretty much impressed by their social commitment and desire to make a better world for those the society usually didn’t pay attention to.

We are ready to help them in their noble cause with all what we can do with our technology and expertise in Mobile application development.

Schogini Inc. has been awarded with a Certificate of Thanks for its assistance in making their 2011 India experience in Kerala a great success.

, , , , , , , , , , , , , , , , , , ,

27
Jun

For displaying the path at interface of what user selected.

[filePathDisplay setStringValue:filePathString];

‘filePathString’ contains the path of the selected item.

 

, , ,

27
Jun

For getting the file or folder path of what user selected from an NSOpenPanel,

NSString *filePathString = [openPanel filename];

‘filePathString’ will contain the file path of what user selected.

 

, ,