How can i make the text go vertically in numbers

How can I make the text vertical in numbers?  I have merged the cells and cannot find an option for making it go vertical as opposed to horizontal.

I already gave two tools to fit this kind of needs.
tip #1 :
--{code}
--[SCRIPT write_vertically]
Enregistrer le script en tant que Script : write_vertically.scpt
déplacer le fichier ainsi créé dans le dossier
<VolumeDeDémarrage>:Utilisateurs:<votreCompte>:Bibliothèque:Scripts:Applications :Numbers:
Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
Saisir dans une cellule le mot à écrire verticalement puis le sélectionner.
ATTENTION, il ne faut pas sélectionner la cellule mais le mot qui doit apparaitre surligné.
Aller au menu Scripts , choisir Numbers puis choisir “write_vertically”
Le script colle dans la cellule le mot apès avoir inséré un return entre tous les caractères.
Pour mon usage personnel j'associe un raccourci à ce script grace à FastScripts.
--=====
L’aide du Finder explique:
L’Utilitaire AppleScript permet d’activer le Menu des scripts :
Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case “Afficher le menu des scripts dans la barre de menus”.
Sous 10.6.x,
aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
--=====
Save the script as a Script: write_vertically.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
In a cell, type a word to write vertically then select it.
CAUTION, don’t select the cell but the word which must be highlighted.
Go to the Scripts Menu, choose Numbers, then choose “write_vertically”
The script insert in the cell the word after inserting a return between every characters.
For my own use, I link a shortcut to the script thank to FastScripts.
--=====
The Finder’s Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the “Show Script Menu in menu bar” checkbox.
Under 10.6.x,
go to the General panel of AppleScript Editor’s Preferences dialog box
and check the “Show Script menu in menu bar” option.
--=====
Yvan KOENIG (VALLAURIS, France)
2011/12/17
2012/01/01 no longer use a local variable, use result
--=====
on run
Clear the clipboard *)
  set the clipboard to ""
Copy the selection in the clipboard *)
          my raccourci("Numbers", "c", "c")
Loop waiting that the clipboard is really filled *)
          repeat
                    try
                              if (the clipboard as text) is not "" then exit repeat
                    on error
                    end try
          end repeat
Extract the clipboard's content *)
  the clipboard as text
Insert return between every characters *)
          my recolle(every character of result, return)
Fill the clipboard with the edited string *)
  set the clipboard to result
Paste in the cell *)
          my raccourci("Numbers", "v", "cas")
end run
--=====
on recolle(l, d)
          local oTIDs, t
          set oTIDs to AppleScript's text item delimiters
          set AppleScript's text item delimiters to d
          set t to l as text
          set AppleScript's text item delimiters to oTIDs
          return t
end recolle
--=====
on activateGUIscripting()
  (* to be sure than GUI scripting will be active *)
          tell application "System Events"
                    if not (UI elements enabled) then set (UI elements enabled) to true
          end tell
end activateGUIscripting
--=====
==== Uses GUIscripting ====
This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
on raccourci(a, t, d)
          local k
          tell application a to activate
          tell application "System Events" to tell application process a
                    set frontmost to true
                    try
                              t * 1
                              if d is "" then
  key code t
                              else if d is "c" then
  key code t using {command down}
                              else if d is "a" then
  key code t using {option down}
                              else if d is "k" then
  key code t using {control down}
                              else if d is "s" then
  key code t using {shift down}
                              else if d is in {"ac", "ca"} then
  key code t using {command down, option down}
                              else if d is in {"as", "sa"} then
  key code t using {shift down, option down}
                              else if d is in {"sc", "cs"} then
  key code t using {command down, shift down}
                              else if d is in {"kc", "ck"} then
  key code t using {command down, control down}
                              else if d is in {"ks", "sk"} then
  key code t using {shift down, control down}
                              else if (d contains "c") and (d contains "s") and d contains "k" then
  key code t using {command down, shift down, control down}
                              else if (d contains "c") and (d contains "s") and d contains "a" then
  key code t using {command down, shift down, option down}
                              end if
                    on error
                              repeat with k in t
                                        if d is "" then
  keystroke (k as text)
                                        else if d is "c" then
  keystroke (k as text) using {command down}
                                        else if d is "a" then
  keystroke k using {option down}
                                        else if d is "k" then
  keystroke (k as text) using {control down}
                                        else if d is "s" then
  keystroke k using {shift down}
                                        else if d is in {"ac", "ca"} then
  keystroke (k as text) using {command down, option down}
                                        else if d is in {"as", "sa"} then
  keystroke (k as text) using {shift down, option down}
                                        else if d is in {"sc", "cs"} then
  keystroke (k as text) using {command down, shift down}
                                        else if d is in {"kc", "ck"} then
  keystroke (k as text) using {command down, control down}
                                        else if d is in {"ks", "sk"} then
  keystroke (k as text) using {shift down, control down}
                                        else if (d contains "c") and (d contains "s") and d contains "k" then
  keystroke (k as text) using {command down, shift down, control down}
                                        else if (d contains "c") and (d contains "s") and d contains "a" then
  keystroke (k as text) using {command down, shift down, option down}
                                        end if
                              end repeat
                    end try
          end tell
end raccourci
--=====
--[/SCRIPT]
--{code}
tip #2 :
--{code}
--[SCRIPT rotate_cell_contents]
Enregistrer le script en tant que Script : rotate_cell_contents.scpt
déplacer le fichier ainsi créé dans le dossier
<VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
Sélectionner une cellule dont le texte doit être tourné de 90 degrés.
Aller au menu Scripts , choisir Numbers puis choisir “rotate_cell_contents”
--=====
L’aide du Finder explique:
L’Utilitaire AppleScript permet d’activer le Menu des scripts :
Ouvrez l’Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
Cochez la case “Afficher le menu des scripts dans la barre de menus”.
Sous 10.6.x,
aller dans le panneau “Général” du dialogue Préférences de l’Éditeur Applescript
puis cocher la case “Afficher le menu des scripts dans la barre des menus”.
--=====
Save the script as a Script: rotate_cell_contents.scpt
Move the newly created file into the folder:
<startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
Select a cell whose contents must be rotated for 90 degrees.
Go to the Scripts Menu, choose Numbers, then choose “rotate_cell_contents”
--=====
The Finder’s Help explains:
To make the Script menu appear:
Open the AppleScript utility located in Applications/AppleScript.
Select the “Show Script Menu in menu bar” checkbox.
Under 10.6.x,
go to the General panel of AppleScript Editor’s Preferences dialog box
and check the “Show Script menu in menu bar” option.
--=====
Yvan KOENIG (VALLAURIS, France)
2011/06/23
2011/06/26 -- No longer use an auxiliary text box. Now keep the text attributes.
2012/01/31 -- edited for Lion
--=====
on run
          local dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2
          local le_texte, la_largeur, la_hauteur, myNewDoc
          my activateGUIscripting()
Extract properties of the source/target cell *)
          set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
          tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
                    set selection range to range (name of column colNum1 & name of row rowNum1)
          end tell
Cut*)
          my raccourci("Numbers", "x", "c")
Trigger Preview *)
          tell application "System Events"
                    if "Preview" is not in (name of every application process) then launch application "Preview"
          end tell
  delay 0.2 -- required
New document from the clipboard *)
          my raccourci("Preview", "n", "c")
Rotate to left *)
          my raccourci("Preview", "l", "c")
Copy *)
          my raccourci("Preview", "c", "c")
Quit *)
          my raccourci("Preview", "q", "c")
          (system attribute "sys2") < 7
          if result then
Click the [Don't Save] button in the warning sheet *)
                    tell application "Preview" to activate
                    tell application "System Events" to tell application process "Preview" to tell window 1
                              name of buttons
                              repeat 50 times
                                        delay 0.1
                                        if exists sheet 1 then exit repeat
                              end repeat
                              tell sheet 1 to click button 2
                    end tell
          end if
Back to Numbers *)
          tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
  -- just reset the focus on the table
          end tell
Paste in the cell *)
          my raccourci("Numbers", "v", "c")
end run
--=====
set { dName, sName, tName,  rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
on get_SelParams()
          local d_name, s_name, t_name, row_num1, col_num1, row_num2, col_num2
          tell application "Numbers" to tell document 1
                    set d_name to its name
                    set s_name to ""
                    repeat with i from 1 to the count of sheets
                              tell sheet i to set maybe to the count of (tables whose selection range is not missing value)
                              if maybe is not 0 then
                                        set s_name to name of sheet i
                                        exit repeat
                              end if -- maybe is not 0
                    end repeat
                    if s_name is "" then
                              if my parleAnglais() then
                                        error "No sheet has a selected table embedding at least one selected cell !"
                              else
                                        error "Aucune feuille ne contient une table ayant au moins une cellule sélectionnée !"
                              end if

Similar Messages

  • How can I make the text bigger in iCal?

    How can I make the text bigger in iCal?  I've looked at Preferences and View. 

    Sorry, did not see that you are using 10.6.7

  • How can i make the text bigger?

    How can i make the text bigger?

    1. press "T" to bring up the text tool.
    2. click the text you want to edit
    3. highlight the text you want to change size with your cursur
    4. If it's not already up, press Command + T to bring up the text tool box and adjust the size under the character group. The value you want to change will have a "TT" next to it.
    If this doesn't help. More details will help us help you.

  • When I print a webpage from FF how can I make the text and images bigger?

    I am trying to print an eticket for a flight. The text on the schedule comes out too small and the UPC symbol's black lines look ganged together. I know I can view it zoomed up, but how do I make the text and images stay zoomed so they will print out that way?

    I upgraded but the problem remains. At least with Firefox I do have the option to print a selection even if it mangles the top and bottom lines. With Safari or Chrome I have no option to print a selection. At the moment the only way to get a complete copy of the selection is to copy to openoffice etc and print from there.

  • How can I make the text crisper and less blurry on my MacBook Pro?

    I just purchased my first MacBook Pro, and I absolutely love it, save for one potential deal breaker: The text displays blurry. Instead of stark, black on white text, there is a slight halo of grey (or whatever color the font is in) around every character. It makes the text look nice, but much harder to read. The characters are deliberately out of focus. Apparently this is normal, according to this article: http://seattletimes.nwsource.com/html/businesstechnology/2015823073_ptmrsh06.htm l
    Is there a way to fix (or work around) this? As a writer, I cannot type for eight hours a day on a computer that "softens" the text. I have tried adjusting my screen resolution (it's at the highest possible) and turning off "font-smoothing" (it's off). Nothing works. I called Apple support and they couldn't help me either. I can't believe there's not an easy fix for this.

    Humor me.
    Let's revisit the things you did, because they -should- have fixed the problems.
    !) to set screen resolution, you MUST use:
    System Preferences > Displays ...
    Use of the MenuBar item simply shows the last three chosen, not all available.
    And what is the screen resolution you are using now? 13" 15" or 17" display? Do you have the default glossy screen or the enhanced matte display?
    2) font smoothing.
    System Preferences > Appearance.
    I see no OFF. I see a checkbox to default to LCD smoothing, and I see   "turn off font smoothing for characters smaller than nn point", where nn is 4 to 12.
    How do you have these set?

  • How can I make the text larger in this flashing box from Old Toad?

    I'm trying to use flashing text here: http://web.me.com/phelpssculpture/Site/hands_on.html
    which I copied from OldToad's site here:http://web.me.com/toad.hall/Demo_1/Miscitems.html
    I can't figure out how to make the text larger.
    Any suggestions?
    Thanks, David

    At the end of the code, you can find
    document.write('You can add Blinking Text!');
    insert a "size" attribute to "font" tag (eg. size="10")
    document.write('You can add Blinking Text!');

  • How can I make the text larger... I cant read it anymore

    I need to have the text enlarged..how do i do that.
    I cannot read anything on my pages anymore

    There are some add-ons that can be used to change the zoom level on all sites, for example:
    * NoSquint - https://addons.mozilla.org/firefox/addon/nosquint
    * Default FullZoom Level - https://addons.mozilla.org/firefox/addon/default-fullzoom-level

  • How can I make the text insertion caret/cursor easier to see in InDesign?

    I'm using InDesign CS5, and it doesn't comply with Windows 7 Ease of Access settings regarding the text insertion caret/cursor thickness. Is there a fix for this?
    P.S. QuarkXPress has the same problem, so whichever software resolves it first wins!

    Interesting approach. I see how that could be useful for making things like text box guides easier to see depending on the chosen colors. Unfortunately, it has no affect on the text insertion caret/cursor. It remains the same size and thickness, and it is very difficult to find regardless of how much I zoom in.

  • How can I make the »Text Box« blend with the background?

    I have a problem that my document is almost finished, but still I cannot solve one basic problem. My “Text box” fields are still selectable (I get the blue select/resize buttons around the text) when I click on them when reviewing my document in the reader. In this “Text box” fields there is text that is not meant to be changed by the end user. It should just be shown (blend with the background) and not selectable. This resize buttons around the text box don’t work and don’t allow the end user to change the size but their presence alone drives me crazy.
    Should I use the “Stamp” tool in this case or is there a setting (with the text box tool) that I’m missing?

    It seems that I found the solution. Is the only way to avoid the before mentioned edit box that I use the TouchUp Text tool to add text?

  • How can I make the screen view larger in numbers?

    I'm working a large spreadsheet and the screen shot is so small. In Excel I could always choose to view the spreadsheet at more than 100%. Can I do this somewhere in numbers? I cannot find it anywhere.

    Numbers User Guide clearly explain how to do what you want but you must read it to get the info !
    Yvan KOENIG (VALLAURIS, France) vendredi 29 avril 2011 11:13:11
    Please :
    Search for questions similar to your own before submitting them to the community

  • Can I center the text in vertical direction in JTextArea

    for example , if the JTextArea is 50 pixels high, and the text 's height is 20 pixels,
    then how can I center the text in vertical direction in this JTextArea which means
    there is a extra space whose height is 15 pixels over and under the text?

    Exactly what are you trying to do?
    JTextAreas are usually in a scroll pane, you add multiple lines ie height can change
    are you going to make it uneditable etc
    if it is just for a display (uneditable), perhaps a 'tall' JTextField might give you the desired effect

  • How can I make the Label go on top of the Text box?

    How can I make the Label go on top of the Text box?
    Thanks again,
    Doug

    Set the Label Horizontal / Vertical Alignment property for the textarea to Above.

  • This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out?

    This is probably a dumb question, but I can't find an answer. How do I make the text on my calendar larger so I can actually read it when I print it out? I am using a MacBook.

    Press "Command P" and when the Print dialogue box comes up, towards the bottom there is an option allowing you to choose the text size, i.e: small, med, large.
    Hope this helps,
    NEIL

  • I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have a new iPhone 5C, have the sounds alerts set up. But I'm not getting sound alerts for new voicemail, only the red circle on the screen.  How can I make the sound alert work?

    I have had this same problem for weeks now with my 4S.  I just got a new 5S after being extremely frustrated and the same thing - no sounds.  After searching posts all over, I couldn't find a solution. I just told my friend of the issue and he asked "Do you have the Do Not Distrub on?"  I didn't even know such a function existed.  Upon looking that was exactly the issue.
    To resolve, go to Settings> Do Not Disturb> Manual.  If it is green, turn it off.  You will now get phone calls and text alerts.
    This functionality is also on your quick access utility menu (slide up menu).  I assume this is how it was enabled on my phone.
    I will post on other sites since I searched for weeks for this solution and didn't see it anywhere.  Good luck!

  • My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    My husband uses adobe cs5. The clone tool isn't working and after resetting the tools adobe bridge now goes to picasa. How can we make the clone tool work and have bridge go to cs5 not picasa?

    A lot more information about your hardware and software is needed.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CC", but something like CC2014.v.2.2) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    a screen shot of your settings or of the image could be very helpful too,
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

Maybe you are looking for

  • InDesign CS4 PDF Export Issue

    Hello everyone, I'm new to Adobe and this forum so if I screw something up, please let me know. My System: Intel Core 2 Duo E7500 2.93GHz, 3GB Ram, 7200rmp 320GB HDD, XP Pro SP3 Adobe Master Collection CS4 full installation. My Issue: Intermittenly,

  • Jsp and Presentation screen cache problem

    Hi, I have a existing presentation screen which i replaced it with our custom jsp. Now once again i am trying to go back to presentation screen, but my workspace is still showing the Jsp only. Is there anyway i can clear the engine cache or workspace

  • Printing problems after security update

    Any fixes to the printing problems (for me it is with Quicken) after the security update?? Don

  • How to Report on Hourly Basis from BW in HH-MM(not on 0calday)

    Hi Pals, I need suggestions as my current user wants to report on every 2 hours(and staged into BW ODS) based on Time(HH-MM). Though we can bring details in BW on every 2 hrs but the issue is how to bring the Time characteristics in HH,MM. Requiremen

  • Status 56 in receiving system

    Hi SDNers, By BD87 transaction, I have to catch the status in receiving system. To perform this task, I do the following steps: 1) Go to BD87 trx. 2) Select an idoc with status 3. 3) Execute the Tracing IDOCS system-wide (Trace IDOC). I should obtain