Subscribe For Free Updates!

We'll not spam mate! We promise.

Showing posts with label Smart Phone. Show all posts
Showing posts with label Smart Phone. Show all posts

Aug 22, 2012

iPhone development in Flash CS5 on Windows and Mac

Views:

iPhone development in Flash CS5 on Windows and Mac
To day i will show you how we Develop iPhone Apps on Flash CS5 in Windows OS and on Mac.
Before This for Developing iPhone Apps on Windows XP and Windows 7 you must read the Article How to Instal iOS SDK and Xcode on Windows 7 and VM ware
Adobe's Flash CS5 comes the ability to compile iPhone apps inside of Flash and then export them into .IPA files with the ability to distribute them into the App Store or into Cydia. Weather you don't want to pay Apple's $100 registration fee or you don't have a Mac, this guide will show how you can create your own iPhone app and be able to distribute them on to other devices.
For this tutorial  does not assume any AS3 knowledge as no ActionScript is required to export or install the application on your iPhone.

Aug 17, 2012

The Best Phone's Of All Time:Top Rated List

Views:


Cellphones are almost carried everywhere now in restrooms too [:P] which clearly depicts the importance of having the right cellphone, here you are with the best cellphones ever out in the market in their respective category. Have a look at it to choose “the ONE”.
Topping all of them is "Samsung Galaxy s3 “the Smartphoneking” being the complete package cellphone.

SamsungGalaxy S3 (the smart phone king)

Samsung S3
The Samsung Galaxy S3 comes fully loaded with Android 4.0 Ice Cream Sandwich, 4G LTE/HSPA+ 42 capability, a zippy dual-core processor, and a strong 8-megapixel camera. S Beam is an excellent software enhancement, and the handset's price is right. The Galaxy S3's screen is too dim, and Samsung's Siri competitor, S Voice, disappointed.
Pumped with high-performing hardware and creative software features, the Samsung Galaxy S3 is an excellent, top-end phone that's neck and neck with the HTC One X

Iphone 5 Release & Review: Before You Buy

Views:


Iphone 5 Logo
Although widely expected upgrade to iPhone in 2011, there was no big change in the iPhone arsenal, SIRI did play a good part but the people were expecting to have an iPhone 5, rather than that company did announce the iPhone 4S the not so physically advanced version.
 
But this time Apple is back to the developments labs to create the iPhone 5 recipe “the smart phone king as it is rumored and also expected to be with the leaked updates and pictures

Aug 12, 2012

The Smart Phone King Of 2012- S3 Vs iPhone 5

Views:

S3 vs iphone5
It’s hard to believe that any one at the moment can suggest which phone is best. The iPhone 5 isn’t out and when it does come out then you can state the claim of a winner. The Samsung Galaxy SIII is out there and currently is ruling the market with approximately $10 million sales. 
The iPhone 5 currently has not been released and Apple has not officially released the stats on this phone. You can not compare, suggest or determine a winner as well as compare both phones. But let us compare the facts:-

The Highest Mega Pixel Camera Phone Ever Made

Views:


The Highest Mega Pixel Camera Phone Ever Made
Are you a photo enthusiast?? If yes, then here is parcel for you from heaven.
Nokia 808 PureView
                   The Nokia 808 PureView's excellent, envelope-pushing 41-megapixel camera will satisfy photo enthusiasts. It also has strong battery life, an HDMI port, and steady call quality. But the sad part is that even if you're only interested in its sharp, innovative camera, the Nokia 808 PureView's weak Symbian Belle OS and slower processor make it a pricey investment, especially since Symbian's days are numbered.

Aug 11, 2012

Smartphones To Look For This Fall

Views:


Smartphones To Look Up to This Fall
Going through an upgrade this fall ?? Better read this before…
1. Samsung Galaxy s III
Samsung Galaxy S III is a beast in smartphones a stunning and massive screen, fast dual-core performance, and Android 4.0 Ice Cream Sandwich. It comes fully loaded with Android 4.0 Ice Cream Sandwich, 4G LTE/HSPA+ 42 capability, a zippy dual-core processor, and a strong 8-megapixel camera. S Beam is an excellent software enhancement, and the handset's price is right. Pumped with high-performing hardware and creative software features, the Samsung Galaxy S3 is an excellent, top-end phone that's neck and neck with the HTC One X.

May 16, 2012

iPhone First Program Hello world Example on Xcode

Views:

iPhone First Program Hello world Example  on Xcode
To day I show you how to make First hello world Program in iPhone on mac or on windows XP .
 In previous Post I show you how to install Mac OS on Windows Xp or Windows 7 and How to install Xcode on windows Xp and Windows 7 .

To go to day Post you must Knowledge About these Previous Posts. 
If you donot know then plase read it or view it first.
To day i show you hello world Program with Screen Shorts.

I am going to execute the Hello World example in a new version of Xcode. So many things are new in this Xcode 4.
Xcode is IDE (Like Visual studio ) for developing iPhone Apps . Xcode 4 is the complete toolset for building Mac OS X and iOS applications, the tools have been redesigned to be faster, easier to use, and more helpful than ever before.

STEPS

Step 1: Open a Xcode, select Create a new Xcode project (See fig 1) and click open button.




Figure 1

Now select ViewBase application and click next (See figure 2)




Figure 2

Next page you need to define Product name and Identifier name, the identifier is the name of your application. It’s the same name used when you register your application at Apple’s website and release it to the AppStore. The Product name “HelloWorld Xcode4” and the Identifier name “com.mycompany.APPLICATIONNAME” (See figure 3). Select the Device Family into iPhone. Now select next and save the application in your disk.




Figure 3

Step 2: Xcode automatically creates the directory structure and adds essential frameworks to it. You can explore the directory structure to check out the content of the directory (See the figure 4).




Figure 4

Step 3: Expand classes and notice Interface Builder created the HelloWorld_Xcode4ViewController class for you and generated a separate nib, HelloWorld_Xcode4ViewController.xib, for the “HelloWorld_Xcode4”.

Step 4: Select the HelloWorld_Xcode4ViewController.h file from the Project Navigator. We have added UILabel for display the text and added IBAction buttonPressed; in the file, so make the following changes in the file.
#import <UIKit/UIKit.h> @interface HelloWorld_Xcode4ViewController : UIViewController {
 
    IBOutlet UILabel *label;
       
}
@property (nonatomic, retain) IBOutlet UILabel *label;
-(IBAction)buttonPressed;
@end
Step 5: Double click the HelloWorld_Xcode4ViewController.xib file from Project Navigator. Now the .xib window will look like (figure 5).




Figure 5

a) Now drag the label and RoundRect button from the object (See figure 6).




Figure 6

b) Select Label from the Window and change the label Text name from the Attribute Inspector (See figure 7). Give the Text name “Hello World!!!”.




Figure 7

c) Next select the RoundRect Button from the window and select Attribute Inspector (See figure 8). Give the Title “Click Me”.




Figure 8

d) Now connect File’s Owner icon to the “Hello World!!!” label and select label (See figure 9).




Figure 9

e) Select “Click Me” button and bring up Connection Inspector (See figure 10) and connect Touch up Inside to the File’s Owner icon and select buttonPressed: method.




Figure 10

f) Select File’s Owner icon to the View window and select view (See figure 11).




Figure 11

Now save it and open the HelloWorld_Xcode4ViewController.m file from the Project Navigator.
Step 6: In the HelloWorld_Xcode4ViewController.m file make the following changes.
#import "HelloWorld_Xcode4ViewController.h"
@implementation HelloWorld_Xcode4ViewController
@synthesize label;
-(IBAction)buttonPressed{
        if ([label.text isEqualToString:@"Hello World!!!"])
                label.text = @"Hello iPhone!!!";
        else
                label.text = @"Hello World!!!";
}
- (void)dealloc
{
    [super dealloc];
}
- (void)didReceiveMemoryWarning
{
    // Releases the view if it doesn’t have a superview.
    [super didReceiveMemoryWarning];
   
    // Release any cached data, images, etc that aren’t in use.
}
- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
@end
Step 7: Now Compile and Run the application and see the Output in the Simulator.

You can download source code from here HelloWorld_Xcode4

May 14, 2012

Virtual Tongue For Mute Published On Market Place Freely Available

Views:

Virtual TongueVirtual Tongue is a Windows Phone 7  Application for Dumb Peoples.Now Freely Available On Market Place .Develop by Team 4PRO.This is an amazing App.Some Interesting feature of this app is as Fellows.

1). This App Provides Virtual  Voice for For Dumb and Mute Peoples through images , Text and Sign Languages.
2). By Using Over Application Dumb peoples can Speak and Understands to other normal person.

3). Virtual Tongue support of 26 different languages to speak.(This feature is not only for dumb or mute a normal Person can be use this For Example Mr.A only Know English or Urdu Or Hindi Or HAZARA But By using over App Mr.A Can Speak  Chines , German,Japaneses etc  ).
4). Virtual Tongue provides templates or sign languages for Uneducated dumb peoples (Who don't know how to write ).
5). Virtual Tongue provide text template ,Vocabulary and Dictionary  for fast writing.
6).  Now dumb peoples only Write or select a template or sign languages and Virtual Tongue (application) produce voice  which is easily under stand by normal peoples.
7). Voice Amplifier Feature is also an interesting feature it has two Purposes.
i) Those Person who's listen loudly Voice Amplifier Feature  of Virtual Tongue  Provides This facility .
ii). By using Virtual Tongue we can recode or Listen some voice of discussion without his Knowledge  just simply place Windows Phone 7 near to this person Hidden.

 This is Virtual Tongue Fist Version and 2nd version is coming soon with more extra features.

4PRO  Team member
 Mohammad Zain Farooq (PROJECT manager and Team Leader)
 Sajjad Ashraf (Logical Programmer  )
Sherish Fahim (Junior Programmer and QA)
Aliya Ahasn(Designer)


SOME SCREEN SHORTS 

FOR DOWNLOAD and MORE INFORMATION.



May 13, 2012

How to Instal iOS SDK and Xcode on Windows 7 and VM ware

Views:


How to Instal iOS SDK and Xcode on Windows 7 and VM ware
iPhone is a fast growing mobile Technology and almost every developer wants to develop apps on iPhone. But for iPhone you must have a mac PC and a mac OS. This is a problem for developers because most of them want to develop on Different Platforms. Since Windows Support all Development Platforms today we will learn How to Instal iOS SDK and Xcode on Windows 7 and VM ware.


In Previous Post i Showed you how to Install Mac OS on Windows XP or windows 7
Please read Previous post before proceeding.

Instructions

1). Follow the steps how to Install Mac OS on Windows XP or windows 7 or Virtual Pc

2). If you don't have a free Apple Dev Account, create one here. You'll need this to be able to download Xcode 4.1 for free. In OS X, open the App Store and download Xcode. You can view progress of the download under the Purchases tab.



How to Instal iOS SDK and Xcode on Windows 7 and VM ware

3). Once the progress bar is finished, it will say it is installed but in reality it is'nt. Open the Applications folder from Finder. Double-click on the Install Xcode icon.


How to Instal iOS SDK and Xcode on Windows 7 and VM ware

4). Follow the on-screen directions then wait for the installation to finish.



How to Instal iOS SDK and Xcode on Windows 7 and VM ware

6). Once it's done, it should open by itself. If it doesn't, you will NOT find the iPhone SDK in your dock. You will need to open your hard drive. Then Click on Developer, then on Applications.


How to Instal iOS SDK and Xcode on Windows 7 and VM ware

7). You will now see an icon for Xcode, click it and you can start coding applications.

If the icons don't show up, you may not have enough virtual hard drive space to fit the program. Make sure you have at least 10 GB of free memory in the virtual machine. Restarting your machine may be another way to make the icon appear.

Now you can start coding an app for your personal use. The language you will be coding in is Objective-C. If you don't have any experience with Objective-C, TheNewBoston provides free tutorials on Xcode and Xcode iPhone development. I recommend following the Objective-C tutorials
first.

You will be able to test your app on the iPhone simulator in Xcode but you will not be able to add the app to your own device. To add an app that you've created to your device, see the two options below.

Option 1: If you want to submit your app to the App Store, you will need to pay Apple $100 for an official Developers Certificate. This will allow you to sell your app to a very large audience but Apple does place large restrictions on its approval of submissions.

Option 2: If you don't want to pay the $100, you can develop your application for Cydia (similar to the App Store). This option will also allow you to place your app on to your iPhone, not just only in the Xcode simulator.

Cydia is the unofficial App Store for users who have jailbroken and want to sell/share their apps. There are almost no restrictions as to what kind of apps that can be added to Cydia.

May 9, 2012

Start iPhone Development On Windows Xp and Windows 7

Views:

iPhone development on Windows xp or Windows 7iPhone development on Windows xp and Windows 7 is difficult work but more thrilling and a definite Amazing Experience. In Pakistan ,India and other 3rd world countries Windows Is Most widely used Operating system . Most of Developers Know only .Net . So i will be teaching you all Ways To develop iPhone app using Windows Xp or  7.

Hardware Requirements

A laptop or desktop computer that supports virtualization (most newer computers do).
1)At least 2 GB of RAM (the more, the better).
2) Processor is 3 Giga Hertz or more.






Software Required
1) Windows Xp or Windows 7
2) Virtaul Pc Or VM ware
3)VMWare Workstation (this is a paid program but a little research will get you it for free).
4) VMWare Hard Drive (vmx files, it is in a self-extracting .exe file)
5)OS X Lion (VMDK File)

Instructions
Before you start, make sure that you have enabled Virtualization in the BIOS of your computer. This is usually disabled by default by computer manufacturers.


An updated video has been made of all the new steps:
In Below Video You have to required Following Software
VMWare Workstation (this is a paid program but a little research will get you it for free).
VMWare Hard Drive (vmx files, it is in a self-extracting .exe file)
OS X Lion (VMDK File)






Some MORE VIDEOS 
SOFTWARE'S Required for Below Videos
The download links:
VirtualBox:https://www.virtualbox.org/wiki/Downloads
Empire EFI for Intel core processors:http://www.mediafire.com/?thd5nmo2oyn
Empire EFI for AMD Processors:http://www.mediafire.com/?m5wzzwyfg4m
Mac OS X 10.6.3 retail.iso:http://thepiratebay.se/torrent/5515580/

May 7, 2012

handle currently playing background music in Windows Phone 7

Views:

http://dhananjay25.files.wordpress.com/2011/05/clip_image035.png
In this Post i show you handle background music in windows Phone 7. This is an Important thing if you don't care about it (handle Already Playing music) then you cannot published you apps on Market Place.

Yalla App Publishing Requirement is that when ever an already play music file in Background and your app also have some musics sounds then Yor app should Prompt user to stop already  playing music or not . OR you can Just Prompt like "BACKGROUND SOUND IS STOP".

When the user is already playing music on the phone when the application is launched, the application must not pause, resume, or stop the active music in the phone MediaQueue by calling the Microsoft.Xna.Framework.Media.MediaPlayer class.
The application needs to prompt the user for consent to adjust the volume or stop the music that is currently playing in the Zune queue.

Expected Result by MARKET PLACE

Test Process Required:
1. Play audio and/or music media.
2. Launch the application.
3. The application must not pause, resume, or stop the active music on the device.
4. If the application plays its own background music, the application must prompt for user
consent to stop playing or to adjust the currently playing background music.


Using MediaPlayer.GameHasControl to fix the issue

 This is very simple to address by using MediaPlayer.GamehasControl which is part of Microsoft.Xna.Framework.dll with namespace Microsoft.Xna.Framework.Media. It will return false if there are some background music currently being played and you must prompt the user for the permission to stop the background music and play your own sound.


private void PlaySound(string soundFile)
{
    bool canPlay = false;

    FrameworkDispatcher.Update();
    if (MediaPlayer.GameHasControl)
    {
        canPlay = true;
    }
    else
    {
        if (MessageBox.Show(“Is it ok to stop currently playing
music and play our duck caller sound?”, “Can play duck caller?”,
MessageBoxButton.OKCancel) == MessageBoxResult.OK)
        {
            canPlay = true;
        }
    }

    if (canPlay)
    {
        btnPlay.Visibility = System.Windows.Visibility.Collapsed;
        btnPause.Visibility = System.Windows.Visibility.Visible;

        _updatingMediaTimeline = true;
        mediaDuckSound.Stop();
        mediaDuckSound.Source = new Uri(soundFile, UriKind.Relative);

        mediaDuckSound.Position = System.TimeSpan.FromSeconds(0);
        mediaDuckSound.Volume = 1;
        mediaDuckSound.Play();

        ShowBuyNow();
    }
}

 




May 6, 2012

Tap and Damage Published On Market Place

Views:

Tap and DamageThis App Is develop by Me (Sajjad Ashraf). Now Published On Market Place.This is amazing App.Some Interesting feature of this app is as Fellows.
1) Now you can damage your Mobile 
Screen By Simply Tap on it.It 
also Produces screen damaged 
sound.
2) This is an Amazing app That 
Show the experience when some one
see Your mobile Screen is damage.
 
 
3) It has 30 amazing Broken Screen Images
You Can Select Your Choice and Set to Screen
4) You can Set damage Screen On the start up of Damage 
Screen
5) There are two Bottom which are Hidden One is Lower 
Left Corner of Damage Screen and Second is On Lower right corner 
of damage screen for taking out you from Damage Screen.

SOME SCREEN SHORT ARE:


FOR DOWNLOAD AND MORE INFORMATION 

Apr 29, 2012

All Namaz Remainder Windows Phone 7 App By Sajjad Ashraf

Views:

All Namaz RemainderAll Namaz Remainder reminds is an smart
phone app made on windows phone 7.
This is amazing app give you namaz 
timing and more function define belwo.
This app above 2000 time downloaded 
from market place .
This is Published on market place.



 
All Namaz Remainder remands you daily namaz (pray)
timing .You can update namaz (pray) timing.It gives 
you namaz (pray) timing with respect to your 
current location.It also gives you Qibla Direction 
form your current location.You can create your own 
personal remainders and you can delete or remove
namaz (pray)remainder  and your own created  personal
remainders .
Below Some Screen Short Of this 
 
 
 
 You can Download This app From Market Place Free
For Download and Information CLCIK


Become a Fan

visual studio learn