Infuriating Aspects of Numbers Hyperlinks

In Numbers you can make a URL into a hyperlink by selecting the hyperlink text and choosing Inspector > Hyperlinks > Enable as a Hyperlink. You can get around the fidgety selection by double clicking in and empty part cell if the cell is big enough. So far so good.
If you want to kill all the hyperlinks, you can do so by choosing Inspector > Hyperlinks > Make All Hyperlinks Inactive.
What if you want to make a whole column of URLs into hyperlinks? Click click click click click click click click click click click click click click click click click click click click click click click click click click click click click click click coffee break click click click click click click click click click click click click click click click click click click toilet break click click click click click click ad infinitum.
Why can you make individual URLs into hyperlinks, but not a whole column or document's URLs into hyperlinks? What is the use case for having selective hyperlinks? When would you ever do that? 95 percent of the time you want then all or none of them. Why is there a "Make All Hyperlinks Inactive" but not a "Make All Hyperlinks Active" choice? Why is the application not smart enough to recognize that a cell contains only (or only one) URL and let you select a cell rather than text? Why can you select multiple cells and change them?
I've had this sense about all Apple software that there is never really a dedicated team working on it continuously. They get out a release and then they're off to some iPhone work or something. Then Steve decides he needs a new release and they make some upgrades. The bug report queue is never looked at. The forums are never looked at. Ten-minute fixes just sit for years without being remedied.

Here is an easy way to apply the wanted change.
--[SCRIPT URLtoHyperlink]
Enregistrer le script en tant que Script : URLtoHyperlink.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.
Vérifiez que la préférence
"Détecter automatiquement les adresses électroniques et celles de pages web"
est activée.
Sélectionnez une colonne de cellules contenant les URLs à convertir.
Aller au menu Scripts , choisir Numbers puis choisir URLtoHyperlink
--=====
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: URLtoHyperlink.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.
Check that the preference :
"Automatically detect email and web addresses"
is activated.
Select a column of cells storing URLs to convert.
Go to the Scripts Menu, choose Numbers, then choose "URLtoHyperlink"
--=====
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/02/19
--=====
on run
run script doyourduty
end run
--=====
script doyourduty
set {dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
tell application "Numbers" to tell document dName to tell sheet sName to tell table tName
set les_URLs to value of cells rowNum1 thru rowNum2 of column colNum1
repeat with r from 1 to count of les_URLs
clear cell (rowNum1 + r - 1) of column colNum1
set selection range to cell (rowNum1 + r - 1) of column colNum1
my type_string("Numbers", item r of les_URLs & return)
--delay 0.1
end repeat
end tell
end script
--=====
on type_string(a, t)
local k
tell application a to activate
tell application "System Events" to tell application process a
set frontmost to true
keystroke (t as text)
end tell
end type_string
--=====
set {rowNum1, colNum1, rowNum2, colNum2} to my getCellsAddresses(dname,s_name,t_name,arange)
on getCellsAddresses(d_Name, s_Name, t_Name, r_Name)
local two_Names, row_Num1, col_Num1, row_Num2, col_Num2
tell application "Numbers"
set d_Name to name of document d_Name (* useful if we passed a number *)
tell document d_Name
set s_Name to name of sheet s_Name (* useful if we passed a number *)
tell sheet s_Name
set t_Name to name of table t_Name (* useful if we passed a number *)
end tell -- sheet
end tell -- document
end tell -- Numbers
if r_Name contains ":" then
set two_Names to my decoupe(r_Name, ":")
set {row_Num1, col_Num1} to my decipher(d_Name, s_Name, t_Name, item 1 of two_Names)
if item 2 of two_Names = item 1 of two_Names then
set {row_Num2, col_Num2} to {row_Num1, col_Num1}
else
set {row_Num2, col_Num2} to my decipher(d_Name, s_Name, t_Name, item 2 of two_Names)
end if
else
set {row_Num1, col_Num1} to my decipher(d_Name, s_Name, t_Name, r_Name)
set {row_Num2, col_Num2} to {row_Num1, col_Num1}
end if -- r_Name contains…
return {row_Num1, col_Num1, row_Num2, col_Num2}
end getCellsAddresses
--=====
set { dName, sName, tName, rname, rowNum1, colNum1, rowNum2, colNum2} to my getSelParams()
on getSelParams()
local r_Name, t_Name, s_Name, d_Name
set {d_Name, s_Name, t_Name, r_Name} to my getSelection()
if r_Name is missing value then
if my parleAnglais() then
error "No selected cells"
else
error "Il n'y a pas de cellule sélectionnée !"
end if
end if
return {d_Name, s_Name, t_Name, r_Name} & my getCellsAddresses(d_Name, s_Name, t_Name, r_Name)
end getSelParams
--=====
set {rowNumber, columnNumber} to my decipher(docName,sheetName,tableName,cellRef)
apply to named row or named column !
on decipher(d, s, t, n)
tell application "Numbers" to tell document d to tell sheet s to tell table t to ¬
return {address of row of cell n, address of column of cell n}
end decipher
--=====
set { d_Name, s_Name, t_Name, r_Name} to my getSelection()
on getSelection()
local _, theRange, theTable, theSheet, theDoc, errMsg, errNum
tell application "Numbers" to tell document 1
repeat with i from 1 to the count of sheets
tell sheet i
set x to the count of tables
if x > 0 then
repeat with y from 1 to x
try
(selection range of table y) as text
on error errMsg number errNum
set {_, theRange, _, theTable, _, theSheet, _, theDoc} to my decoupe(errMsg, quote)
return {theDoc, theSheet, theTable, theRange}
end try
end repeat -- y
end if -- x>0
end tell -- sheet
end repeat -- i
end tell -- document
return {missing value, missing value, missing value, missing value}
end getSelection
--=====
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
--=====
on decoupe(t, d)
local oTIDs, l
set oTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to d
set l to text items of t
set AppleScript's text item delimiters to oTIDs
return l
end decoupe
--=====
--[/SCRIPT]
Yvan KOENIG (VALLAURIS, France) samedi 19 février 2011 11:38:39

Similar Messages

  • Change in anamorphic pixel aspect ratio numbers?

    http://support.apple.com/kb/HT1796
    This gives LiveType anamorphic number for DV NTSC as 1.19 as the pixel aspect ratio. The number that has always been given prior to this is 1.25. They seems to produce exactly the same results when imported in Final Cut. No scaling or distortion takes place in either project file when composited in FCP. Why the change in numbers, and why do they both work?
    Thanks.
    All the best,
    Tom

    Tom, are you certain the NTSC value was given as something other than 1.19?
    At least that's what it's always been according to an older Knowledge Base document link for the same issue, last modified date in 2004.

  • How do I delete pages on a sheet in Numbers?

    How do I delete pages on a sheet in Numbers? I have 6 pages, and only need 2.

    "Totally unintuitive" is often a way of saying "not the way I've become accustomed to."
    In the Numbers Help menu, you will see "Numbers '09 User Guide." Choosing this item downloads a searchable PDF file containing the guide—a much better and easier to use resource than the indexed, but not fully searchable Help files.
    Numbers uses a model sufficiently different from "what you've been accustomed to" that I'd recommend reading at least the first two (or three) chapters straight through. The rest of the guide can be left to read on an 'as needed' basis.
    You'll also find a link to the iWork formulas and functions User Guide in the Help menu. If you're going to write formulas in your spreadsheets, you'll want to download that as well, and keet it available as a reference guide.
    Regards,
    Barry
    PS: I found this particular aspect of Numbers (what you see on the screen is what you get, but you can scale it to fit on fewer—or more—pages if you want) a fairly 'intuitive' (read: 'familiar') concept, since I'd been using the similar 'resize' feature with copy machines to make copied originals fit the page size to which I was copying them for as long as it has been available.
    B.

  • New to Numbers - best Tax organization?

    Hi All,
    I am new to Numbers. I am self-employed and unfortunately terrible at organization! I very simply need to keep track of all my expenses throughout the year, including home office expenses, flights, meals, materials, etc. Most everything I do can be deducted and I have trouble keeping up and staying orderly. Any suggestions for me on which aspect of Numbers might be most fruitful? Thanks and enjoy your afternoons.

    I am in a similar situation to you.
    Keep it simple and just list items under groups, subtotal those and then use another list which consists of nothing but the subtotal items with calculations on them to work out the tax.
    Then work those into the Totals of major categories.
    eg Take Stationery. Just list every purchase that is stationery in one table and total it.
    You may have another which is software/computer and another which is Rent/Heating/Power etc.
    The totals of all these would go into an *Office Expenses* heading.
    Depreciated items would be in their own table which would run across years and give yearly results that would be picked up under a major heading etc.
    Often it pays to mimic the tax form, I'm not American so I don't know what yours looks like, but I use ours as the model. That way it makes it very easy to simply transfer over the results.
    Peter

  • How to Learn to use Numbers?

    Hey everyone,
    I always want to learn, and understand what I don't understand, and Numbers really stumps me. I look up functions in the help menu, but have no clue what the instructions even say! Is there any way to learn the basics of the functions aspect Numbers well (at the one-to-one i had to request someone special to teach mea bout functions and technical aspects of numbers)?
    Honestly, if I am able to tackle Functions and think about it intuitively it would be like conquering the final frontier for me. Should i look into experienced people, books, videos? What do I need to do?

    PeterBreis0807 wrote:
    Start with downloading both the User Guide and Functions pdfs from under the Help menu.
    Also if you look at the start up screen there is a link to some excellent Apple tutorials.
    The problem with these tutorials is that there are only available in English.
    It seems that Apple forgot that there are other languages used on earth.
    Money from non_English users is good to take but as far as the program is paid, we no longer exist
    Yvan KOENIG (from FRANCE mercredi 13 mai 2009 16:38:03)

  • Nokia Photos & Lifeblog

    PC Platform : Windows XP pro with SP3
    Nokia Phone N76
    Nokia PC Suite Ver 7.0.9.2
    Nokia Photos Ver 1.5.242
    Nokia Lifeblog Ver 2.5.224
    Nokia Ovi Ver 1.1
    Hmmmmmm Where to start ...... Lets start with Ovi Suite - I downloaded this new software on the basis that it was the recommended product in preference to Nokia PC suite which I had been using prior to this download on the 4th Nov 2008.
    1. Ovi Suite is NOT a replacement for PC Suite. I have an email from Nokia support telling me so and that its OK to run BOTH sets of software. BUT the POINT of MY email to them was I DO NOT WANT to cluter my PC up with 100s of 'ragtail' Nokia software products - I want all the functionality encapsulated in one product which is why both these Nokia products are supposed to do by NAMING their products ' Nokia xxxx SUITE ' (the key word being SUITE)
    2. I used Nokia LIFEBLOG under Nokia PC suite extensively. All my SMS text messages are saved and stored because I use this DATA for business communications. SMS is a record just like an email. It is invaluable to me to have an accurate record of ALL my SMS text messages. I was experiencing problems with Lifeblog NOT transfering ALL my SMS messages from the phone to Nokia PC suite. New messages not previously transfered to my PC were not picked up by the Lifeblog software as being needed to be transfered to my computer. I still dont know why it doesnt recognise these messages. Is there some sort of 'flag' put on the message in the phone data ? Why cant I CHOOSE which INDIVIDUAL Messages that I want transfered. AND why cant I set a control to transfer the message from the phone to the PC MORE than ONCE. (For instance I may inadvertantly have deleted a record of an SMS message on Lifeblog but the message is still in the phone memory and I want to transfer that message again - but there is NO way that I can see to do this
    3. Lifeblog as a seperate application (add on) to PC Suite was great in is concept BUT under Ovi Suite it NO longer shows as an application in its OWN right but MYSTERIOUSLY it is part of Nokia Photos!!! WHY WHY WHY - what the heck has SMS text messages got to do with Photos ???? I do not know how many BILLIONS of SMS text messages are sent around the world each day using NOKIA phones but I would guarantee that the number of SMS text messages out numbers the number of Photos stored on an individual phone by at least 100,000 to 1 - (ie 100,000 SMS text stored per 1 Photo) SO COME ON Nokia put some priority BACK into SMS Text message data storage, retrival and dta management
    4 Because Ovi Suite is new software (and by the way it CONVERTS Lifeblog SMS text messages before storing them under 'Nokia Photos Timeline' This implies that the file format for Nokia Lifeblog and Ovi Photos Timeline are DIFFERENT and therefore INCOMPATIBLE with each other. There is NO way that I KNOW OF to copy the SMS text messages to Nokia Photos Timeline AND then copy the same messages to Nokia PC Suite Lifeblog. - Why would I want to do that ? - well quite simply if I decide that Ovi Suite is a BAD product then I will want to continue to use Nokia PC Suite Lifeblog WITHOUT loosing ANY stored data.
    5 My overriding concern with BOTH products is that I have an ACCURATE and DEFINATIVE record of my SMS text messages. And if you think this is stupid or odd then just think what you would do if you had NO RECORD of IMPORTANT emails. You would be pulling your hair out especially as the MOBILE phone is as important to businesses as is the computer - SO NOKIA please please get your act together. It seems to me that 2 different sets of Nokia software programmers are developing 2 DIFFERENT products that supposed to do and achieve the SAME thing for the end USER. WHAT A COMPLETE WASTE OF TALENT AND RESOURCE AND MONEY = GIVE THE USER CHOICE and MANAGEMENT Capabilites OF all THEIR data AND allow THE user TO store, backup AND KEEP AN accutrate record of THEIR PERSONAL information store BOTH on the PC and on the Nokia Phone. IF it is NOT your mission statment to do this then WHY o WHY do you produce Nokia PC Suite and Nokia Ovi Suite programs - PC to Phone Syncronisation should be effective and accurate and MANAGEABLE for ALL STORED DATA where on the phone OR on the PC - COME ON make your product work for your clients
    6 Perhaps one of the most infuriating aspects of bespoke software development is the way software programmers from ALL providers insist upon having background system task loaded into PC memory utilising VITAL PC resouces even if that software program is not being used by the PC user at that precise moment in time. Now that I have loaded OVI Suite if I look at my background system processes on my PC I find that I have multiple Nokia Software programs hogging PC resources and MEMORY even when I am NOT using them - COME ON YOU LAZY programmers there must be a better way to develop your software. After all its OUR MONEY your playing with forcing us to buy MORE memory/harddisk storage space when in actual fact WE DONT NEED IT - AT LEAST give the USER the choice to have these background programs loaded and running or NOT to have them running.
    This post is all negative which is a REAL REAL pity but it states the FACTS and NOKIA need to do something about there product implementation - RIGHT NOW

    Hi,
    I dont have answers for all your queries, but still i want to share a little.
    1) OVI Suite is not a replacement for PC suite.
    Yes atleast for near future till nokia comes up with all applications bundled under one umbrella (Having all the applications of Nokia PC Suite + Nokia OVI Suite). As of now not all the devices are supported by Nokia OVI Suite except NSeries and some other phones. It has to think of Users who are using Mac too.
    2) If storing messages safely on your PC is the main concern means then, you can install Nokia Communication Centre which is part of Nokia PC Suite 7.0.x.x and above, which will store your messages to the PC. You can also use Content copier to backup the messages and install Noki software to view what exactly got stored on backup file(.nbu). It is unwritten law (Correct me if i am wrong), data(image/video/Text message/Multimedia message/Sound files) which is synced with Nokia lifeblog will not sync again with Nokia photos and vice versa Reason behind this could may be to avoid redundancy (Chances are there files may be duplicated twice which may lead to more memory space on your PC) This is my assumption. To conclude data synced once with Nokia lifeblog cannot be (re)synched again with Nokia Photos and vice versa as well as with same software which you have synced already. One way of doing this for images and videos could be sync images with lifeblog and then mark those as favorites and then sync it again with nokia photos, then it may sync twice.
    3) Lifeblog is not shown in Nokia OVI Suite. OVI Suite do have option to import the data from lifeblog, this may be because, nokia lifeblog is going to be replaced by Nokia photos. If you observe earlier Nseries phones will have lifeblog on the phone N73, N76 etc, but Nokia N 78 has got Nokia photos built in along with the device instead of lifeblog(device). Yes i do agree about sms part, as i mentioned earlier, if storing the messages safely on your pc is your main concern means, you can use Nokia communicaton centre.
    These are my comments as an user of Nokia pc softwares. Sure your comments will be a constructive feedback for those who are developing nokia softwares.

  • Here's a fix for slow iPhoto 5.0.4 (burst the beachball!)

    Hi all,
    I've been scanning my back catalogue of photos from about the end of last year. I've never really used iPhoto before, so have no previous with earlier versions. Without a digital camera, I'm forced to use an HP scanner. Owing to the fact that the Cube only has USB 1, this is already not the fastest job in the world, but patience is on my side.
    Despite the fact that I've chosen to put the iPhoto library on my ext HDD, I'm faced with one of the infuriating aspects of the HP scanning application, which is its need to put all scanned input into a folder within /home/documents on my Cube HDD. I only discovered this when I poked around after a system warning that my startup drive was nearly full.
    I think this critical point caused a few permissions conflicts, because ever since, iPhoto has been screwing (that's less harsh here in the UK) my Mac. I got all the symptoms others have been complaining about with regard to slow system performance after having used iPhoto at all. This was true when switching between applications, as well as using applications after having used iPhoto, not to mention during the use of iPhoto itself. The only way to correct this degradation was with a restart, which itself would take forever, because of the slow system performance.
    I had a fairly small library.iPhoto file, so was not assured that the bloat was the same as others had with certain cameras. In looking through the posts, however, I found one which suggested trashing iPhoto 5.0.4 and reinstalling version 5.0. The respondent stated that he/she was at the point of trying something 'as drastic as that'.
    So I got to thinking: if the application iPhoto has caused system-wide damage, then that's the damage to treat. I did an archive and reinstall of OSX and the difference is phenomenal. So many have reported massive amounts of RAM in use, as well as GIGABYTES of swap memory. Have we forgotten the background of the Mac as a graphic artist's tool of choice?
    I'm here to tell you that a properly seated operating system will run iPhoto quite happily with a gig of RAM, and whilst a 450Mhz processor won't put the fear of god into many in this day and age, it's perfectly adequate for image manipulation in iPhoto.
    If you'd asked me this a week ago, I would have concurred that I obviously needed to upgrade to a G5 twin 1.8 or some such animal, but having noticed colleagues in these forums with systems that should eat this kind of workload, I'm at the conclusion (like I'm an expert) that a system reinstall should be at the beginning of the troubleshooting with such huge differences between expected and actual performance.
    Go on, give it a try. What's to lose, apart from half an hour installing OSX?
    Best of luck,
    Matt
    G4 Cube 1GB RAM/G3 iBook 640MB RAM; AirPort Express/G3 iMac Rev B 640MB RAM/iPod   Mac OS X (10.4.4)   iMac OSX 10.2.8

    Never should have been a question - sorry.

  • EPub Output Questions

    We recently upgraded to FM 12, and I am playing around with the ePub output function. I have two questions:
    1. We use track text edits to show our audience recent changes to our publications. When I publish to ePub, it essentially accepts all of our edits (we lose the visibility - i.e. different colors/strikethrough). Any thoughts on how to keep our tracked edits showing in the ePub?
    2. We are having issues with anchored frames. One anchored frame contains an image (a jpeg, I believe), and it is not carrying over into the ePub (i.e. it is blank where the anchored frame/image should be). The other anchored frame we have contains a flowchart with hypertext markers linking to various URLs. None of the links are carrying over into the ePub. Thoughts?
    Any help is always greatly appreciated!

    2. Anything different about the JPG that you're using? From what application was it created (or is it a camera image) and what are it's specifics?
    I also don't think that image maps are supported in ePub, especially jumps to URLs or external files (as there's no guarantee that an eReader device can access those). You could try to create simple numbered callouts on a test graphic and then add a list of numbered hyperlinks after the image to see what ePub will support.
    You might want to have a look at some of Scot Prentice's (Leximation) presentations on ePubs and their limitations. You can find the links to his papers and presentations at: Leximation: About Scott Prentice

  • Linking to another page (sheet) in the same workbook?

    Hi,
    Can somebody please confirm that Numbers does NOT offer the possiblity to have a hyperlink linking to another sheet within the same workbook?
    I have a few switchers at my office who couldn't get it to work, and I couldn't find any info about it either, so now they have to work in Office 2003 within Windows, just because of this
    Thanks.

    In the current version of Numbers, hyperlinks are limited to opening web pages in browsers & email messages in email client applications. Even if a new, enhanced version honored a wider range of URL's, say of the "file://" type, they would probably open a new window in an appropriate application.
    As I don't believe individual sheets in a Numbers document have URL's (or URI's?), it is unlikely that an enhanced hyperlink feature would be suitable for what you want to do.
    You can, of course, quickly move between sheets by clicking on their names in the "Sheets" pane, so perhaps a combination of descriptive sheet names & text boxes in selected sheets saying something like "Click 'Sales' to see more' would be an acceptable workaround.

  • Need help working out a percentage

    Hi guys,
    I'm new to numbers and this is my first post on apple forums too. My question is this, as a total newbie with numbers & excel, I am trying to work out my friends attendance to a meeting I hold. The data looks like this:
    2 Feb 2011 1
    6 Feb 2011 0
    8 Feb 2011 1
    9 Feb 2011 1
    13 Feb 2011 0
    16 Feb 2011
    20 Feb 2011
    22 Feb 2011
    23 Feb 2011
    27 Feb 2011
    Where one signifies attendance and zero shows they did not attend.
    I want to use a cell below this to show their total attendance for the month in total. I am aware the month hasn't finished so showing their attendance for the month as it is so far is fine.
    I know its probably very easy but I can't work out how to do it. Any help would be appreciated.
    Many thanks,
    hardtofin

    Hi hardtofin,
    Welcome to Apple Discussions and the Numbers '09 forum.
    As a spreadsheet newbie, your absolutely best first step is to download and read at least the preface and first chapter of the Numbers '09 User Guide, then read the other chapters as you start to work with various aspects of Numbers.
    Apple also provides a second excellent reference, the iWork Formulas and Functions User Guide. Use this one as a source for the functions available in Numbers, including a description and at least one example for each function.
    Both may be downloaded through the Help menu in Numbers. Both are very useful to have handy.
    To your question:
    Start by adding two Footer rows to your table, one to hold the current total attendance, the other to hold the attendance expressed as a percentage of the meetings that have been held to date.
    I'm assuming the dates are in column A and the attendance in column B.
    In B11, the total attendance is a simple SUM:
    =SUM(B)
    In B12, we want to divide the same SUM by the number of meetings it has been possible to attend. That number can be obtained using COUNTIF:
    =SUM(B)/COUNTIF($A,"<"&TODAY())
    Use the (Cell Format) Inspector to format the cell as Percentage and adjust the number of decimal places shown.
    The three functions used are all discussed in the iWork Formulas and Functions User Guide.
    Regards,
    Barry

  • Prefered Vendor Serach Help

    Hi All,
    I am facing a problem in using the prefered vendor search help.
    When I create a SC and go to sources of supply serach help and on click on start I get few BP numbers.
    The problem comes when on selecting on any BP numbers (hyperlink)...it does not transfer to SOS screen ,prefered vendor field
    Kindly Suggest what could be the problem .
    Regards
    Bidyut

    Hello,
    You can verify if note 1391524 helps you.
    In this case, an External Service Staff- Order has been inserted in the cart and assigning a vendor via search help does not work.
    Kind regards,
    Ricardo

  • Infuriating Hyperlink Behavior

    Hello,
    I have to constantly battle with Pages wanting to make a website or email address into a link in spite of the fact that:
    1. Enable as Hyperlink is NOTselected, and
    2. Make all hyperlinks inactive IS selected.
    This text is going into media that I do NOT want to be underlined and in blue text. I want this feature turned completely turned off but cannot seem to do so on a consistenat basis. I select the text, check/uncheck the appropriate boxes, and the text will either revert back or not. At other times, it simply ignores the selections and simply retains its hyperlink characteristics.
    Any help in this regard will be GREATLY appreciated. Pages is an awesome progam and fits my workflow perfectly, but this is driving my nuts.
    Phillip
    17 PowerBook, 1.33 Ghz   Mac OS X (10.4.6)   2 GB Ram, iWeb 1.1.1

    Hello, Steve!
    Thank you so much for helping me out.
    Yes, that link provides a lot of information for me. I found it somewhat humorous that the word 'infuriating' was also used in that thread. Describes the feeling exactly. I'm laughing now, but earlier was ready to have smoke spewing out of my ears. Bad day: the Epson R2400 is giving me fits, Pages is in defiance mode, and the day in not yet half over. Ha, ha ...
    And, oddly enough, it is a Pages template that I am working with. I have a line of greeting cards and use the same template over and over to simply paste in my card image. But, the hyperlink was driving me to drink.
    Here's my not quite done website. I will be adding the e-commerce aspect of it this week.
    http://redristracards.com/
    You have been a great help. I appreciate all your help.
    Phillip

  • Hyperlinks from Numbers open incorrectly

    In Numbers' document I define a hyperlink to a csv file. That link opens in Safari (my default browser) as a text web page. So I have to save it as a file, then go and open that file manually in Numbers (and still later manually delete that file to avoid the disk clutter) . This is unacceptable, Firefox for example gives me an option of directly opening that link in Numbers (saves it in temp directory, and tells Numbers to open it).
    So how do i get the Safari to do that?
    Here is the link generated by Numbers:
    http://download.finance.yahoo.com/d/quotes.csv?s=FNMIX,FCNTX,FNORX,FIREX,FCYIX,F BALX,FSLBX,FIEUX,MINDX,&f=sl1d1t1c1ohgv&e=.csv
    The idea here is this. My Numbers' document contains some stock symbols and the hyperlink to Yahoo to download a csv file with the latest prices. The idea was, click on the hyperlink which will open in a browser which will in turn download the file and automatically open it in Numbers so I can paste the most recent numbers back into my original worksheet. This is how Firefox works but not Safari.

    ok
    >
    I have a table in database that has files uploaded from front-end like XLS, DOC, PDF,TXt etc.
    >
    in my humble opinion it's not good solution
    why in table? why not use bfile?
    if you want select blob from your table you must always download it to some directory on server in sql/plsql way
    or if you use, as example, c#client then you can download it as byte stream to client side
    if you use bfile then your file stored on some server directory and you can work with by ftp, http as for ebs sample
    so in this case you can't have problem with attachment, you can use url+filename in your report
    --add
    >
    Iam looking for a solution where I can show attachments in BIP report from Database directly.
    >
    i not sure as it looks like
    one big report with embedded many other files?
    or how?
    Edited by: AlexAnd on Sep 19, 2012 11:21 PM

  • Is it possible to create an internal hyperlink in a Numbers doc?

    I have a large document with over 50 sheets, the first one being a recap of the main data of the others. From the first sheet (summary one), I would like to be able to click on a cell harboring a sheet number to get directly to this sheet, rather than to scroll through the sheets until i get to the right one, which is cumbersome and a waist of time.
    Would you know if such a possibility exist? Would you be kind then to share?
    Thank you

    Phillippe,
    Numbers on provides hyperlinks to files, emails, and actual websites.  There is no concept of an anchor in a document to which you could like.  You can provide feedback to Apple using the menu item 'Numbers > Provide Numbers Feedback"

  • How to create a clickable hyperlink in iCloud Numbers?

    How to create a clickable hyperlink in iCloud Numbers?

    There is no such thing. All you could do is create an HTML e-mail, but many users won't even view it in that mode for security reasons and it may get filtered. Similarly, Flash-based content may get removed/ not show up. So at best, if you really want to get a clickable document, you could use a PDF file containing a link. but did i mention that the user can suppress those, too? Well, sorry, but you are SOL. You want something that for a million reasons nobodyy can give you. The best you can do, as always, is host your content on a proper website and send peopel a link to it...
    Mylenium

Maybe you are looking for