CategoryUncategorized

Converting Normal to Stateless Form in Zoho

C

Regular Form By default, when a Form is created, Zoho Creator will have a table generated at the back-end to store data submitted through the Form. These Forms are called Regular/Normal Forms. For example, when you create a  Form ‘Order Details’, a table named  ‘Order Details’ is created and  all data submitted through the form will be stored in this table. The ‘Order Details’ will display the...

How To create Stateless form In Zoho Creator

H

When you create a new form to your application, there is one check-box option “Data will be stored in creator“, De-selecting this option will create the Form as a Stateless Form with custome buttons that does not generate a table at the back-end as Normal form.  you can add custom buttons and write your own logic on  “on click” event of the form. Creating a Stateless Form...

How to play movie in iphone using unity3d

H

this is code used to play the video in iphone using unity 3d using UnityEngine; using System.Collections; public class IntroMovie : MonoBehaviour { void Start ()  { iPhoneUtils.PlayMovie(“CINEMATIC_WITH_MUSIC.mp4”,Color.black, iPhoneMovieControlMode.CancelOnTouch,iPhoneMovieScalingMode.AspectFit);   } } one important thing in order to play video files it should be placed in...

Screen Orientations Methods in unity3d

S

There are 3 types of orientation in Rotate only landscape public void AutoOrientToLandScape() { if(Vector3.Dot(Input.acceleration.normalized,new Vector3(1,0,0)) > 0.45)  { Screen.orientation=ScreenOrientation.LandscapeRight; } else if(Vector3.Dot(Input.acceleration.normalized,new Vector3(-1,0,0)) > 0.45)  { Screen.orientation=ScreenOrientation.LandscapeLeft; } } Rotate only Portrait public...

Converting Sencha Touch 2 in Android.

C

Requirement  –Android SDK Tools Steps to package your Android application 1-     Obtain an appropriate Android ready certificate (debug or release) for signing the application 2-     Install Sencha SDK Tools (SenchaSDKTools 2.0). 3-     Create a packaging configuration file to be use with the packager. 4-     Run the packager to create a packaged .apk. Create a packaging configuration file...

How to solve “extra qualification” compiler error of symbian 5th SDK

H

Error:extra qualification ‘CAknVolumeControl::’ on member ‘ScaledValue’ Solution: This problem is caused by CAknVolumeControl which is a part of the underlying Symbian SDK. The additional qualifier used on the ScaledValue() function does not compile with the GCCE compiler. This error should be reported to the Symbian Foundation so that they can change it in S60. In the...

How to create simple Tabs and Buttons in Sencha

H

Sencha Touch is used to create HTML5 based mobile apps that work on Android, iOS and Blackberry devices. – To develope  Sencha Touch Applications,  two things are needed: 1. Sencha Touch 2SDK 2. SDK Tools -There is a command to develop  Sencha Touch Application: E:wampwwwsencha-touch-2.0.1>sencha generate app  <Application Name >../<Application Name> -It will create a...

Category