Can't iPhone have Thai keyboard the same way as the PC keyboard?

I been using iPhone since 3GS, 4, and now 4S.
I been using WhatsApp communicating with my friend and family a lot.
Since I'm from Thailand, I use Thai keyboard in WhatsApp most of the time.
iPhone Thai keyboard is very difficult to type.
Can't iPhone have Thai keyboard the same way as the PC keyboard?
iPad already has it.  Why can't iPhone has it?
Many Thai people feel the same way as I am.
Many iPhone user in Thailand jailbreak their iPhone because they want the keyboard the same way as PC keyboard.
All iPhone user must use the keyboard everyday to communicate.
Imangine that Thai people have to use the keyboard everyday and having a hard time using it.
Please consider giving Thai people the keyboard that we can use with ease.

To turn on Thai keyboardin your iPhone with iOS4.0.2++, follow the steps below.
1. Go to settings
2. Select General
3. Select Keyboard
4. Select International Keyboards
5. Select Add Keyboard...
6. Search for Thai
This should add Thai keyboard to your iPhone.
In order to use Thai keyboard during text SMS/MMS,
Tap and hold on the lower left where there is a "Globe" like icon. You should see a small window with a selection of keyboards available. Without letting go, run you finger (still holding to the globe like icon) to Thai and you should be able to start typing in Thai.

Similar Messages

  • Does the iPad 2 pass through TV the same way that the iPhone 4s does ?

    Does the iPad 2 pass through TV the same way that the iPhone 4s does ? I have an Arcam rCube dock which allows the tv pass through from the iPhone 4s and I was wondering if the iPad 2 will do the same if I buy a dock extender and what should I check for in a dock extender ?

    No - that feature does not exist on the iPad2 and I know of no plans - nor would anyone else here - for that feature to be added with a software update in the future.

  • How to get pictures organised the same way on the iPad as they are on the PC?

    When syncing pictures from my PC to my iPad the same albums are shown on my iPad as on my PC, but the pictures seems to be organised in random order within the albums, i.e. they are not organised the same way as on my PC. I've named all pictures on my PC and organised them based on name. Does anyone know how I can get iTunes/the iPad to sync the pictures in the same order?
    Best regards,
    Cecilie

    Are you syncing the photos by selecting folders or by selecting a photo app that you have on your computer ? If you are syncing folders then they will be sorted by their 'date modified' fields (I assume that still applies on iOS 8), not by their filenames - so you will need to amend their 'modified' fields to be in the order that you want them to show in.
    Or there are third-party photo management apps such as Photo Manager Pro (help pages) - you can copy photos to/from that app and your computer, and you can change the sort order of albums within the app.

  • JTable - Resize rows the same way as the columns

    Hi!
    I have run into a very frustrating problem and have tried to solve this for many hours but can't come up with a good solution. If there is anyone that can help me on the right track I will be very grateful!
    When I'm using a JTable it provides good "graphical" functionality to handle resize of colums, but when it comes to resize rows it is not available.
    I have found a solution for the row height adjustment in the following post: [http://forums.sun.com/thread.jspa?forumID=257&threadID=453665]
    That solution only partially work in my case because of the following:
    The JTable exists inside a JInternalFrame and the JTable should not be able to get bigger then the actual size of the InternalFrame it is put in (so no scrollbar).
    The problem with the solution above is that the JTable total height will also expand when a row is resized (contrary to what happens when the columns are resized), ending up with a JTable that is bigger then the InternalFrame.
    So my question is:
    Is it possible to provide the same ("graphical") resize functionality for rows as for columns in a JTable? Or any row resize functionality that prevent the JTable from getting bigger then the container it is placed in?
    Thanks for your time!
    Best regards,
    Marcus

    Thanks for the fast answer!
    Yes, that would solve the height expanding problem. Thanks!
    It would be even better though if the row resize functionality would behave the same as the column resize (for consistency). For example: If a row is resized the other rows will get smaller so they all fit into the InternalFrame.
    It has to be some easy way to do this. I have started on a solution with component listeners etc. (to track resize) but it is quite hard to get it right and I keep getting the feeling I reinventing the wheel all over again:(
    Any ideas out there?

  • Why won't using 'Insert' work the same way on the Photos page?

    Because my images I edited in Photoshop don't appear in my iphoto Library or in the 'media' section (I have no idea why!!), I have to go to the toolbar at top, and use "Insert....Choose....pictures....etc" and insert the pics that way. But it won't insert into the photo grid and you can't add frames, and you can't click on it to enlarge. I guess I don't understand why you can 'drag' the pix in from the media section and it works fine, but when you manually insert the pics, it's just a plain pic, nothing else.
    Is there anything I can do?
    Thanks
    Kim

    Rather than use Insert, try dragging your edited images from their location on your HD into the photo grid.
    [ Visit here for iWeb Tips, Tricks and Hacks ]

  • Writing user defined function the same way as the oracle functions

    Hi Guys,
    In one of the interviews , I have attended the guy asked me to write a user defined function which will take the column name and list all the values .
    For example
    Table Name:Employees
    Column Name: Employee_Name
    Employee_name
    Scott
    Ivgun
    Jack
    Shane
    The query should be in this fromat
    SELECT col_agg(Employee_name) emp_name from Employees;
    The output shoulld be
    Emp_names
    scott,ivgun,jack,shane
    Please let me know if this is possible
    Any suggestions will be highly appreciated.
    Thanks,
    Ranjan

    You could certainly write a user defined aggregate function if you like...
    e.g. this function will aggregate strings into a CLOB...
    create or replace type clobagg_type as object
      text clob,
      static function ODCIAggregateInitialize(sctx in out clobagg_type) return number,
      member function ODCIAggregateIterate(self in out clobagg_type, value in clob) return number,
      member function ODCIAggregateTerminate(self in clobagg_type, returnvalue out clob, flags in number) return number,
      member function ODCIAggregateMerge(self in out clobagg_type, ctx2 in clobagg_type) return number
    create or replace type body clobagg_type is
      static function ODCIAggregateInitialize(sctx in out clobagg_type) return number is
      begin
        sctx := clobagg_type(null) ;
        return ODCIConst.Success ;
      end;
      member function ODCIAggregateIterate(self in out clobagg_type, value in clob) return number is
      begin
        self.text := self.text || value ;
        return ODCIConst.Success;
      end;
      member function ODCIAggregateTerminate(self in clobagg_type, returnvalue out clob, flags in number) return number is
      begin
        returnValue := self.text;
        return ODCIConst.Success;
      end;
      member function ODCIAggregateMerge(self in out clobagg_type, ctx2 in clobagg_type) return number is
      begin
        self.text := self.text || ctx2.text;
        return ODCIConst.Success;
      end;
    end;
    create or replace function clobagg(input clob) return clob
      deterministic
      parallel_enable
      aggregate using clobagg_type;
    SQL> select trim(',' from clobagg(ename||',')) as enames from emp;
    ENAMES
    SMITH,ALLEN,WARD,JONES,MARTIN,BLAKE,CLARK,SCOTT,KING,TURNER,ADAMS,JAMES,FORD,MILLER
    SQL> ed
    Wrote file afiedt.buf
      1  with t as
      2    (select 'PFL' c1, 0 c2,110 c3 from dual union all
      3     select 'LHL', 0 ,111 from dual union all
      4     select 'PHL', 1, 111 from dual union all
      5     select 'CHL', 2, 111 from dual union all
      6     select 'DHL', 0, 112 from dual union all
      7     select 'VHL', 1, 112 from dual union all
      8     select 'CPHL', 0, 114 from dual union all
      9     select 'WDCL', 1, 114 from dual union all
    10     select 'AHL' ,2 ,114 from dual union all
    11     select 'NFDL', 3, 114 from dual)
    12  --
    13  -- end of test data
    14  --
    15  select trim(clobagg(c1||' ')) as c1, c3
    16  from (select * from t order by c3, c2)
    17  group by c3
    18* order by c3
    SQL> /
    C1                                     C3
    PFL                                   110
    LHL CHL PHL                           111
    DHL VHL                               112
    CPHL AHL NFDL WDCL                    114Ok, it's more than just a function as it uses an object type linking into the internals of the ODCI... but it does what you ask. :)

  • Is Firefox Beta affected in the same way as the latset edition of Firefox 16

    Is it vunrable to exploits?

    By the end of day today there will be a Firefox 16.0.1 which fixes the security issue. Please note that this vulnerability isn't being exploited in the wild, so the real threat is very little.

  • I have 2 iphones and 1 ipod touch. how do i use the same itunes on the home computer for each? all we use the home computer for is one big music database.

    i have 2 iphones and 1 ipod touch. i want to use the same itunes music database for each device. we did this before with our older ipods, by just sycing what was checked. does this work the same way with the new devices?

    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    http://support.apple.com/kb/HT1495

  • I repeatedly get "error during rendering/encoding of menus/slideshow" message.  This process is the same on my iMac, MacBook and another iMac.  I have been burning dvd's int he same way for the past 12 months using the exact same steps successfully.

    I keep getting "error during rendering/encoding of menus/slideshows" message.  I have been burning DVD's in exactly the same way for the past 12 months and mostly on my MacBook which is 3 years old.  Obviously I'm using iDVD.  I purchased an iMac about a year ago and moved to use this for dvd burning without problem.  A few months ago (approximately) I started to experience problems with burning with the error message above.  I tried everything including starting the whole process from scratch right down to capturing the movie clips from my video recorder into iMovie, then using them in iDVD.  Still the same message came up.  I lost count of how many times I repeated the process with different clips and variations and the same thing happened.  This was also the case with my MacBook and my husband's iMac.
    After taking both of mymac's tothe service centre, having new optical thingys put it and even a new hard drive on my iMac along with a new DVD burner the same thing happened.  They told me it must be the process that I am using that is incorrect!
    I took my 27" iMac to an apple shop and asked them to assist me while I use the same technique as I always had.  The same message came up so they tried using my clips in one of their mac's.  The same message. They tried it with different clips and the same message.  The only way we could get theirs to work was with a magic DVD which did not produce what I needed and was limited with only one page. 
    I now cannot use any of my Mac's for the intended purpose that I bought them for - to produce good media for my work!  It was suggested that I purchase some non Mac software to burn DVDs which defeats the object of having a mac with iDVD in my opinion.  I have a book on iDVD which is very informative and have followed the process to the letter and checked all the trouble shooting and still no remedy.  It was mentioned that an up-date may have caused the problem on all my macs.
    I feel that this issue should be addressed by Apple as a matter of correctness.
    I now find that on the net there are many posts in forums and such like with exactly the same (almost word for word) problems.  Please Apple, keep/regain your good name and sort this out.
    Jayne Connelly

    Thanks Bengt W for your attention to this matter.  So much appreciated.  And thanks for putting me right on the aim of forums (new to this).  Although, you may regret asking for more information.  I've added everything I can below.
    The process I used is as follows:
    Import recorded clips of between 5 and 15minutes each from my video recorder into i
    Edit the clips (remove unwanted start and endng)
    Add title to front of clips
    ‘Share’ them to ‘movie’ (export using QuickTime)folder in .mov format individually
    Open iDVD and ‘create new project’
    Select ‘favourite’ theme that I have set up forall my work dvd’s (this has been used successfully many times and I’ve triedwithout using the favourite them).
    Add 2 submenus for each group of clips
    Select submenu  - drag and drop between 3 – 6 clips in each of the twosubmenus
    Change title colours on clips
    Dragand drop image into drop zones where required
    In‘map’ view I check for any yellow warnings before burning to disc
    In an attempt to remedy the problems I’ve tried the following:
    Try new DVD discs
    Try different themes (favourites and standardones)
    Change images in drop zones
    Start whole process again even from importingfrom camera again
    Two other completely different computers (iMacand MacBook) with iDVD
    Go to apple shop and use their computers to doin iDVD
    Try with one clip and no menu pages added
    Use a clip that I already have that did notoriginate from my camera
    Turn computer off and restart
    New hard drive
    New optical lense (thing)
    New DVD burner
    Saving to disc image rather than dvd disc
    Other points:
    I also have a ‘flip’ and ‘iPhone’ whereI’ve imported footage camera which, although limited, records and makes videoclips and burns them to DVD through iDVD without problem.
    For example, I have just gone through steps 5 - 11 using some clips that were already imported from my iphone to iPhoto and dragged across.  I used a theme that I've used before which has failed and added one sub menu page where the clip went.  It burned to disc image successfully.
    The startup disc, I believe will have no space issues asit’s a new hard drive with no use apart from this.  That could have been an issue before (I didn’t check it) butnot now.
    Other technical stuff that I don't understand but you may:
    I have…… Mac OS X Version 10.6.7 with all updates onit.  Processor 2.8 GHz Intel Corei7.  Memory 4GB 1067 MHz DDR3.
    iDVD version 7.1.1
    HardwareOverview:
      Model Name: iMac
      Model Identifier: iMac11,1
      Processor Name: Intel Core i7
      Processor Speed: 2.8 GHz
      Number Of Processors: 1
      Total Number Of Cores: 4
      L2 Cache (per core): 256 KB
      L3 Cache: 8 MB
      Memory: 4GB
      Processor Interconnect Speed: 4.8 GT/s
      Boot ROM Version: IM111.0034.B02
    SMC Version (system):            1.54f36
    OPTIARCDVD RW AD-5680H:
      Firmware Revision:     3AHB
      Interconnect:    ATAPI
      Burn Support:   Yes (AppleShipping Drive)
      Cache:    2048KB
      Reads DVD:    Yes
      CD-Write: -R, -RW
      DVD-Write:   -R, -R DL,-RW, +R, +R DL, +RW
      Write Strategies:  CD-TAO,CD-SAO, CD-Raw, DVD-DAO
      Media: Toshow the available burn speeds, insert a disc and choose View > Refresh
    If you can solve this you are better than the 'apple geeks' in the shop and the service technicians in the service centre (and of course me but that's no achievement). 
    Eagerly awaiting your reply.
    Jayne

  • I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    I have family plan of 5 iphones and all them have the same apple id, the q. is how I can set each one with their own apple id? please advise...

    See How to Stop Sharing an Apple ID.
    (Note that I am affiliated with that site, and some pages contain ads).

  • I have an iphone 4 connected to my imac/itunes using a designated email address.  However, I also have an 80gb ipod classic which is connected to my general email account. How can I transfer my ipod to the same account as the iphone

    I have an iphone 4 connected to my imac/itunes account using its own designated email address. However, I also have an 80gb ipod classic which is connected to my general email address. How can I delete this and transfer the ipod to the same account as the iphone 4. Thankyou

    iPods, iPhones, and iPads aren't tied to one particular iTunes accout/Apple ID.  So there are no special instructions to follow to allow you to sync it with your newer account.  Simply sync it as you would your iPhone 4. 
    B-rock

  • Can two Iphones have the same account/email address?

    Can two iphones have the same account/email address? I bought two phones-one for my wife and the other for myself. They are both under the same account /itunes account /email address-Would this cause a conflict with the two phones?

    No, as long as you want to share the same account for iCloud's services like Mail, Calendars, Contacts, Reminders, Notes, iCloud, Documents etc.
    I personally would create two accounts so that everyone could have and use  heir own mail account, address book, create meetings, reminders etc. without reading and deleting stuff of the other person.

  • I cannot connect my iPhone 4S to my home wifi. When trying to connect it says I have the wrong password, but I can connect my MacBook to the same network with the same password. I have tried to restart my router, reset my network settings, fail!

    Hello, I am having some major troubles connecting my iPhone 4S to my home wifi. When I try to connect on my phone, it says I have an incorrect password. That's not possible because I can connect my MacBook to the same network with the same password. I have reset my network settings on my phone, reset my router, called apple support, triple checked I was trying it in correctly, I have no clue what's going on.
    The only thing different is I just moved, but I have the same router/phone/internet provider.
    I've seen some discussions of router security options being the problem, I have my router connected to : WPA-PSK [TKIP] + WPA2-PSK [AES].
    The other options are: WEP , WPA-PSK[TKIP] , WPA2-PSK [AES] , WPA/WPA2 Enterprise.
    My troubleshooting and understanding of all this is pretty limited, my applecare service did not help, please can anyone help me?
    Thanks!

    If the issue happened after an update, you may want to go into an Apple Store. Be sure to let them know exactly what's wrong with the device.

  • HT4461 If I have purchased an app on my iPhone, can I download the same app from the same Apple ID on my Mac?

    If I have purchased an app on my iPhone, can I download the same app from the same Apple ID on my Mac?

    Mac Apps and iOS apps are not the same.

  • I have an old iPhone (3s) that I've now replaced with a newer one.   I would like to use the old iPhone in the same way I do an touch.   When I plug it into my Mac laptop, there is no recognition on my computer of this old iPhone.   What can I do?

    I have an old iphone that I've replaced with a newer one :-) and I'd like to use the old one in the same way I do an itouch.   When I plug it into my Mac laptop, there is no recognition of it as a device.   Help!   What do I do????

    http://support.apple.com/kb/ht3406

Maybe you are looking for