By using Inspector, i found the way to create and insert a scrolldown list ; however the list has to be created from  inserting each line at a time; what i am looking for is a way of creating a scrolldown  large(30 to 100 lines) list.

By using inspector, i found a way to create and insert a scrolldown list (*) in a cell ; however it can only be done one line at a time .what i am looking for is to create a bigger scrolldown list ( from 30 to 100 lines ) and in excel we can do it by copy and paste from an other doc...there must be a way with Numbers !!! any ideas ?
(*)...go to inspector/4th icon to he left/format/local menu/and then input the list one by one...and it creates a scrolldown list where you cursor was located in numbers.
please help....

If you need to use this kind of objects, my guess is that it would be better to use an other application like libreOffice.
At an user request, I wrote an AppleScript grabbing the list from a table embedded in the Numbers document.
Here is an enhanced version.
--{code}
--[SCRIPT fake-scrolldown-list]
Enregistrer le script en tant que Script : fake-scrolldown-list.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.
Sélectionner une cellule dans une table d'un document Numbers.
Aller au menu Scripts , choisir Numbers puis choisir “fake-scrolldown-list”
Le script extrait la liste d'articles de la table « la_liste » de la feuille contenant la table ci-dessus.
Il demande de choisir un article puis dépose celui-ci dans la cellule sélectionnée.
ATTENTION : À la demande d'un utilisateur, Le script utilise un nom de table localisé.
Je n'aime pas cela parce que de ce fait, lorsque le script est utilisé sur un système Français,
il requiert une table nommée "la_liste" mais lorsqu'il est utilisé sur un système Anglais il requiert la table "the_list".
--=====
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: fake-scrolldown-list.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 in a table of a Numbers document.
Go to the Scripts Menu, choose Numbers, then choose “fake-scrolldown-list”
The script extract the list of allowed items from the table “the_list” which must sit in the same sheet that the table embedding the selected cell.
It urge to choose an item then insert it in the selected cell.
CAUTION : I use different names for the required table according to the language in use on user request.
I dislike this feature because a document built by a French user sent to an English one will fail.
On the French system the script ask for the table "la_liste" but it ask for the table "the_list" on an English system.
--=====
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/31
--=====
on run
          local dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2, myListe, maybe
          set {dName, sName, tName, rowNum1, colNum1, rowNum2, colNum2} to my get_SelParams()
          tell application "Numbers" to tell document dName to tell sheet sName
Extract the list of allowed values from the dedicated table *)
                    if my parleAnglais() then
                              "the_list"
                    else
                              "la_liste"
                    end if
                    tell table result
                              set myListe to value of every cell of column 1
                    end tell
                    set maybe to choose from list myListe
If we select the Cancel button, exit silently *)
                    if maybe is false then error number -128
Fill the selected cell with the choosed value *)
                    tell table tName
                              set value of cell rowNum1 of column colNum1 to (item 1 of maybe as text)
                    end tell
          end tell -- Numbers…
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
                    end if
                    tell sheet s_Name to tell (first table where selection range is not missing value)
                              tell selection range
                                        set {top_left, bottom_right} to {name of first cell, name of last cell}
                              end tell
                              set t_Name to its name
                              tell cell top_left to set {row_Num1, col_Num1} to {address of its row, address of its column}
                              if top_left is bottom_right then
                                        set {row_Num2, col_Num2} to {row_Num1, col_Num1}
                              else
                                        tell cell bottom_right to set {row_Num2, col_Num2} to {address of its row, address of its column}
                              end if
                    end tell -- sheet…
                    return {d_Name, s_Name, t_Name, row_Num1, col_Num1, row_Num2, col_Num2}
          end tell -- Numbers
end get_SelParams
--=====
on parleAnglais()
          local z
          try
                    tell application "Numbers" to set z to localized string "Cancel"
          on error
                    set z to "Cancel"
          end try
          return (z is not "Annuler")
end parleAnglais
--=====
--[/SCRIPT]
--{code}
Yvan KOENIG (VALLAURIS, France) samedi 31 décembre 2011
iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
My iDisk is : http://public.me.com/koenigyvan
Please : Search for questions similar to your own before submitting them to the community
For iWork's applications dedicated to iOS, go to :
https://discussions.apple.com/community/app_store/iwork_for_ios

Similar Messages

  • Looking for a simple way to convert a string to title case

    New to LiveCycle and Javascript.  Looking for a simple way to convert a string to title case, except acronyms.  Currently using the the following, it converts acronyms to lower case:
    var str  =  this.rawValue;
    var upCase = str.split(" ");
    for(i=0; i < upCase.length; i++) {
    upCase[i] = upCase[i].substr(0,1).toUpperCase() + upCase[i].substr(1).toLowerCase();
    this.rawValue = upCase.join(' ');

    Thanks for the reply.
    Found the following script in a forum, which works fine as a "custom validation script" in the.pdf version of my form.  However, it will not work in LiveCycle?  The problem seems to be with
    "return str.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g"
    function toTitleCase(str) {
    var smallWords = /^(a|an|and|as|at|but|by|en|for|if|in|nor|of|on|or|per|the|to|vs?\.?|via)$/i;
        return str.replace(/[A-Za-z0-9\u00C0-\u00FF]+[^\s-]*/g, function(match, index, title){
    if (index > 0 && index + match.length !== title.length &&
      match.search(smallWords) > -1 && title.charAt(index - 2) !== ":" &&
    (title.charAt(index + match.length) !== '-' || title.charAt(index - 1) === '-') &&
    title.charAt(index - 1).search(/[^\s-]/) < 0) {
    return match.toLowerCase();
    if (match.substr(1).search(/[A-Z]|\../) > -1) {
      return match;
      return match.charAt(0).toUpperCase() + match.substr(1);
    event.value = toTitleCase(event.value);

  • I use lightroom with the soft proofing feature for my printing. I used to make a copy proof, but all of the sudden something changed, and even if I'm on the copy in the developing mode it prints the original. Also, If i chose a file that was already in li

    I use lightroom with the soft proofing feature for my printing. I used to make a copy proof, but all of the sudden something changed, and even if I'm on the copy in the developing mode it prints the original. Also, If i chose a file that was already in light room to print, even though I have the chosen file up in the developing mode, it will instead print the most recent file that I added to lightroom. If found a way to work around these problems, (check make this the copy in the soft proofing, and copy my settings and delete and reload the old files) but it's a slight hassle and it didn't use to do this. Not sure why it changed. Could I have accidentally changed a setting?

    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • My cd drive on my mac w/ itunes is busted, so i'm looking for an alternative way to get mp3 files (large, for an audiobook) from a cd to my iphone. Any suggestions? Thanks

    My cd drive on my mac w/ itunes is busted, so i'm looking for an alternative way to get mp3 files (large, for an audiobook) from a cd to my iphone. Any suggestions? Thanks

    Copy them to a thumb drive using a different computer then use that to transfer them to your machine. Over a network from a machine with a working CD drive...
    What does this have to do with using the iPhone in an enterprise environment?

  • I cant connect to my wifi due to the fact that it says its a wrong password and ive tried resetting all the ways i can and it still says i have the wrong password what can i do

    i cant connect to my wifi due to the fact that it says its a wrong password and ive tried resetting all the ways i can and it still says i have the wrong password what can i do

    Do other devices connect to the same wifi router?
    Have you tried powering off and then back on the router?
    Did you connect before OK?
    Have you reset the iPod?
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    Reset network settings: Settings>General>Reset>Reset Network Setting
    -The troubleshooting here:
    iPhone and iPod touch: Troubleshooting Wi-Fi networks and connections

  • HT1711 When I am in the iTunes store site and listening to samples of music the songs stop playing after 12 seconds. Does anyone know a way to get it to play the full one and one half minutes?

    When I am in the iTunes store site and listening to samples of music the songs stop playing after 12 seconds. Does anyone know a way to get it to play the full one and one half minutes?

    I have a similar problem with at least two songs that I know of, one is an iTunes download (encrypted) the other was imported from a CD using iTunes (no encryption). Both songs play 2-3 seconds then immediately go to the next song. The "weird" thing -- I plugged my iPod into my new MacBook which has no songs other than what are on my iPod (i.e., not playing the song from another source) and both songs play fine. Unplug the iPod from the computer, plug in headphones and the songs skip again.
    I've gone through the 5 R's as well, with no luck.

  • HT5706 I have not used my apple tv in a few years, and just got it out of the bag. I connected it up, and it cannot set date, time.  it also does not interact with the remote.  Could it be as simple as a new batter is needed for remote?

    I have not used my Apple TV in a few years, and just got it out of the bag to use on a new TV.  I connected it up to power and with an HDMI cable toTV.  It attempts to set date and time and cannot.  I cannot get the remote to interact with the box also.  Could it be something as simple as needing a new battery?

    Hi kybriar,
    Thanks for using Apple Support Communities.  This article has steps you can take to troubleshoot the remote itself:
    Troubleshooting the Apple Remote
    http://support.apple.com/kb/ht1722
    For the issue of setting the date and time, these articles may help:
    Apple TV: Basic troubleshooting
    http://support.apple.com/kb/ht1551
    Reset Apple TV by unplugging it from the power outlet, waiting about five seconds, then plugging it in again.
    Power off your TV, wait five seconds, then power it back on.
    Apple TV (2nd and 3rd generation): Troubleshooting Wi-Fi networks and connectionshttp://support.apple.com/kb/TS4546
    Ensure that Apple TV is within range of your Wi-Fi router or base station.
    Confirm that your Wi-Fi router and cable/DSL modem are connected to power and turned on.
    Make sure other devices (computers, iPhone, iPad, for example) are able to connect to the Wi-Fi network and access the Internet.
    Check your Wi-Fi network settings on Apple TV:
    Select Settings > General > Network > Wi-Fi and press the center button on the remote to display nearby networks.
    Choose your Wi-Fi network from the list.
    If your Wi-Fi network uses a password, make sure you are entering it correctly.
    Restart your Apple TV by selecting Settings > General > Restart.
    Try restarting your Wi-Fi router or modem by turning it off and then on again.
    If possible, connect an Ethernet cable and verify your Internet connection. If you can connect to the Internet using an Ethernet connection, verify that your Apple TV is using the latest software by selecting Settings > General > Software Update. If your Apple TV can be updated, install the update and then try the steps again.
    Cheers,
    - Ari

  • I recently discovered my ipod touch would no longer turn on. All it does is show the low battery sign, and that is if it's connected to a computer. No matter how long I leave it charging, it does that. Is there a way to fix it?

    Hi, I recently discovered my ipod touch would no longer turn on. I've tried everything! All it does is show the low battery sign, and that is if it's connected to a computer. No matter how long I leave it charging, it does that. Is there a way to fix it? All I want are my contacts and my old calendar back. These did not sync with iTunes like my photos, music, and video. I can probably get an older, replacement iPod, but I don't want to have to readd all my important dates and reminders, as well as contact information. I guess I have two questions:
    1) is there a way to get my ipod to start working again?
    2) is there a way to get my old contacts and calendar back again?

    Try here:
    iPod touch: Hardware troubleshooting
    iOS: Not responding or does not turn on
    To get the calender and contacts back if you can't get the iPod working is to restore the new iPod from the backup of the old one.

  • Hi just done some up dates on my i phone three it got half way through sync with my phone then the phone turned of and came back on again with the i tune picture and the end of the usb cable. but my phone is plugged into my computer can anyone helphi just

    hi just done some up dates on my i phone three it got half way through sync with my phone then the phone turned of and came back on again with the i tune picture and the end of the usb cable. but my phone is plugged into my computer can anyone help

    Try to force your phone into recovery mode. Disconnect it from the computer's USB cord. Turn it off if you can by holding the sleep/wake switch until you see the red slide to off. If you can't turn it off, please continue. Press and hold the home button while plugging it into the computer's USB cord. Continue holding the Home button while iPhone starts up. While starting up, you will see the Apple logo. When you see "Connect to iTunes" on the screen, you can release the Home button and iTunes will display the recovery mode message.  http://support.apple.com/kb/HT1808
    Then you can restore your phone:  http://support.apple.com/kb/HT1414

  • I am using an Mac PPC version 10.5.8 and I am trying to download the correct version of Flash Player.  I did once but I had to install a "Clean Install" of my computer and when finished I had put back the new Flash Player I just installed well every time

    I am using an Mac PPC version 10.5.8 and I am trying to download the correct version of Flash Player.  I did once but I had to install a "Clean Install" of my computer and when finished I had put back the new Flash Player I just installed well every time I try install the new player it is place in my Trash Folder and I can not get Player to work.  I did everything I was to install it correctly but it still does not install it correctly.  Can some help me.  Bob

    Some MacBook Pro versions cannot be upgraded past 10.6.8; others are maxed out at 10.7.5. newer models can go all the way to 10.10. So it is important to know exactly what version you have--there may be close to 40 variants produced since the MB made its debut in 2006.
    You can safely give us a snapshot of your model and its current config that will allow us to deternmmine your model and its upgrade potential, plus show it you have any software that may impede any upgrades. Please download and install this free utility:
    http://www.etresoft.com/etrecheck
    It is secure and written by one of our most valued members to allow users to show details of their computer's configuration in Apple Support Communities without revealing any sensitive personal data.
    Run the program and click the "Copy report to clipboard" button when it displays the results. Then return here and paste the report into a response to your initial post. It can often show if any harmful files/programs are dragging down your performance.
    Remember that, on leaving OS10.6.8, you lose the ability to run older softare written for older PowerPC Macs (yours in Intel-based). Programs such as Office 2004 will no longer work (min of Office 2008 needed to work on newer OS versions), and AppleWorks will stop working completely

  • I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes a

    I am using Indesign cs5 version 7.0.4 with a mac OS X version 10.9.4. I am having an issue where the save and save as option disappears. I am exporting the file as .idml and then resaving to avoid losing work but has to import all the images which takes ages. Any help out there?

    I believe there are a couple of similar threads about CC or CC2014 behaving this way that might give yo some hints, but CS5 is not supported on your OS and may not run properly regardless of what you do. An in-place OS upgrade or an attempt to migrate the application would both be major problems for ID, so if you did either of those things you'll want to uninstall, run the cleaner tool (CS Cleaner Tool for installation problems | CCM, CS6, CS5.5, CS5, CS4, CS3) and reinstall.

  • Looking for a proper guide on creating services

    Hi,
    We're looking into creating our own Enterprise Services using all the capabilities of PI 7.1 and our ERP system (ECC 6.03) . When we create services now we basically create our flow in PI and then expose the start of it as a Service, so you can start it from anywhere (we've mostly done this in Composite Applications and with Adobe Interactive Forms).
    I'm looking for a how-to guide to create your own ES from scratch. Using the official building blocks provided in SAP (instead of creating our own data types) and the creating the proxies, and exposing those as a service.
    We're thinking about a flow to retrieve certain information from the ERP, starting and ending in a Service.
    I've looked through the documentation availible here, skimmed through all the TechEd 08 presentations and exercises but haven't found anything that covers creating a new service. I have however found extensive information on enhancing one, though this is not what I'm looking for.
    Any help would be greatly appreciated,
    Cheers,
    Frederik-Jan

    Hi Frederick,
    You cah check the following links for the step by step creation of web services hope  they are helpful to you in proceeding
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50b63e8f-a4bb-2a10-e9b1-ba803fd06739
      https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b0f3cf81-e6da-2a10-6891-ef321fdc1a6b
        http://help.sap.com/saphelp_nw70/helpdata/en/44/b7f7e1354135e7e10000000a1553f7/frameset.htm
    Webinar on creating webservice in ABAP environment..
      https://www.sdn.sap.com/irj/scn/advancedsearch?cat=sdn_media&query=creating+webservices&adv=false&sortby=cm_rnd_rankvalue#
    Thanks,
    Ram.

  • HT1918 i have recently moved from the uk to australia and cancelled my uk debit before the payment was processed for songs i bought in itunes. i have tried to edit my billing info with australian debit details but the site says 'invalid card' how can i fi

    i have recently moved from the uk to australia and cancelled my uk debit before the payment was processed for songs i bought in itunes. i have tried to edit my billing info with australian debit details but the site says 'invalid card' how can i fix this?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    The drop-down list displays items from your History and/or Bookmarks.
    You can control what shows (or nothing at all): Options > Privacy, "Location Bar" section. Options are:
    *History and Bookmarks
    *History
    *Bookmarks
    *Nothing
    See --> https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • I charged my nano on my work PC, when i went to use it at home it is now unresponsive and I get a message that the device cannot be recognized by windows?

    I charged my nano on my work PC, when i went to use it at home it is now unresponsive and I get a message that the device cannot be recognized by windows? How do I restore it

    Try placing the iPod in recovery mode (I think that is what you were try to do) and then try to restore the iPod.  For recovery mode see:
    iPhone and iPod touch: Unable to update or restore

Maybe you are looking for

  • How to create combobox to display more than one columns

    I need kind help with the following question. As the combobox includes two pieces--textbox and the combobox list. Then how to create a combo box bean, which is based on table EMP(empno number(6), ename varchar2(40)) records for example, to achieve th

  • Music on iPod is showing as other & will not sync or restore

    Can someone please help?? I turned on my iPod & noticed that all the music was gone. I seen the same amount of space was being used but instead of showing as music storage it is showing as other storage. I didn't think this would be such a problem si

  • JDBC - how to handle insert that returns value (bind?)

    Hi, I'm trying to do an insert into a table in an Oracle database with an auto-incrementing primary key (using a trigger and sequence) and I need to retrieve the value after the insert. From SQL*Plus, I'd enter: var id number; INSERT INTO mytable (na

  • How to get CPU usage in the app?

    Is there any api that can get CPU usage through the code in an iphone app, thanks.

  • Script output Issue

    Hi All, I am working on script, Getting the output on Pdf as mentioned below, as per the requirement the credit entry CR1 should come as -96.00. I have debugged the report attached with it and I can see that the field SHKZG(Debit/Credit Indicator) of