Format function in Link Inspector

Hi,
May i know that how to fully utilize the Format function in the Link Inspector?I even unable to click on those format...mind to share the tips?!
Thanks

First that link format does not work for the navbar. It only works on text based links you add to the page. Once you've set up the URL in the Link pane you can go to the format pane and set the link, rollover, visited and disables formats. But you have to have the text link selected first. Thisdemo page may shed some light on it.
OT

Similar Messages

  • Websites are formatted incorrectly and links won't work, since last update

    Since I installed the latest updates for firefox certain websites such as : http://www.escapistmagazine.com/ and hotmail , are incorrectly formatted and the links on the pages don't work. I can load my inbox on hotmail but the links to the emails don't work ie. you click on it and nothing happens. On the Escapist many of the links don't match the boxes they should be in, sections of the page are in the wrong place with images not loading, and many of the links don't load the right page, if anything at all.
    I've tried to use the report broken website function but this gets stuck on sending report and if you click submit report again it shows the details etc as being blank.
    I've tried restoring FF to defaults and also reinstalling it with no success. I know the website are okay as IE loads them correctly.
    any help appreciated

    Hi Rick,
    Interesting thread on Quark's forums. Mark Douma posts here, too. Very knowledgeable with the how fonts work in direct relation to the OS.
    I just opened a bunch of OpenType fonts and launched Quark. No problems. But as Mark noted, you'll see the bug pop up after a restart and then try to open the document that uses the OpenType fonts.
    However, I created a simple document using a half dozen different OpenType fonts and saved it to the desktop. Going by Mark's assumption about the cache files, I shut down my Mac and turned it back on. Essentially the same as turning it on the next day. Per his thoughts, I left the font cache files alone, activated the fonts again in Suitcase Fusion and launched Quark 6.52 by double clicking the document I had just created. Quark and the document opened without a hitch.
    Per Mark's post at Quark's forums, Quark should have crashed since I'm doing this all under 10.4.10. That tells me that while the font cache files are the problem for those who need to keep clearing the cache files to get OpenType fonts to work each day, it's not due to OS 10.4.6+. Since I'm having no issues (and never have), I would have to believe it's more likely to be a damaged OS that's causing the problems. If the OS is damaged, then the likelihood that it will in turn write damaged cache files is high.
    Or, Quark is damaged. It writes its own font cache files in the /Applications/QuarkXPress 6.0/jaws/ttfont/ folder. If you cleared only those cache files out and relaunched Quark, it might work without clearing the system cache files. That would tell you for sure that Quark needs to be reinstalled rather than the OS.

  • What exactly is the function of code inspector

    Hi,
    Pelase let me know the function of code inspector and related transaction with it.
    Thanks in advance
    Regards
    Irfan Hussain

    Hi Irfan,
    The Code Inspector (transaction code SCI) is a tool for checking Repository objects regarding performance, security, syntax, and adherence to name conventions. You can also determine statistical information or search for certain ABAP words (tokens). In the Code Inspector, you can define inspections that, with the help of check variants, examine certain sets of objects. As the result of an inspection, you receive information messages, warning messages, or error messages on different properties of the examined objects.
    You can check the following link for details.
    http://help.sap.com/saphelp_erp2004/helpdata/en/56/fd3b87d203064aa925256ff88d931b/frameset.htm
    Thanks and Regards,
    Ashish.

  • Format of a link

    what is the format of a link?
    here is my code for wanting to set a link, but doesn't seem to work.
    <p><href ="showcookievalue.jsp"> Next Page to view the cookie value</p>

    Next Page

  • In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    Thanks for replying. I am converting from MS Office Word document to Adobe Acrobat Document and opening with Reader XI - sorry my mistake.
    I now notice another problem. On trying to open a specific hyperlink in the pdf version I get the message  'Acrobat does not allow connection to: www.biblegateway.com'.  Why would there be a restriction? 

  • How to make all hyperlinks in my document inactive, like you could in the old pages under link inspector

    In the pages 09 one could click inspector and the link inspector had a box, make all links inactive.  Where is this in the new pages?  It is needed for School papers. and editing. 
    Thx

    Hi Hans,
    Doesn´t anyone no a way to, at least, avoid getting automatic-underlined-coloured links?
    Try this:
    Untick Smart Links.
    Regards,
    Ian.

  • How do I fix the problems with text formating functions in hotmail and other text based sites?

    In a Mailing list provider site it disables the text formating functions, instead only showing a 'loading' message. The functions never appear. In Hotmail the scroll arrows on the right hand side does not work. Sometimes the email toolbar becomes 'grey' and the buttons do not work. When forwarding an email sometimes the email does not show in the new email message.
    == This happened ==
    Every time Firefox opened
    == Firefox was reinstalled March 2010.

    The only possible fix was turning the phone off immediately and burying it in a bag of dry rice for a week at least. That might...just might...have worked.  But you're way beyond that and I see no fixes.  In fact the phone is probably going to get more problems before finally gving up the ghost.  Continued use is just shorting out more and more of the circuitry.  For that reason I don't think repair is much of an option. Go to an Apple Store and buy an out-of-warranty replacement.

  • FORMAT function in SQL

    Can I use FORMAT function in SQL statement?
    If not, how to do it?
    Here is the SQL that I want to do.
       SELECT last_name, first_name, FORMAT(birth_date, 'mm/dd/yyyy') FROM customer

    Hi,
    To display the result as mm/dd/yyyy, you can use the code like below:
    DECLARE @d DATETIME = '10/01/2011';
    select FORMAT(@d,'d','en-US'  )
    To display the result as yyyymmdd, use CONVERT:
    DECLARE @d DATETIME = '10/01/2011'
    SELECT convert(varchar, @d, 112)
    Reference:
    http://www.sqlusa.com/bestpractices2005/centurydateformat/
    Thanks.
    Tracy Cai
    TechNet Community Support

  • Pad leading zeros in a string.Format function

    How could use the string.Format function and in the format text pad a leading zero? 
    Pseudo code is:
    string parm = “5”;
    string format = “Some number formatted as 3 dig: Format({0}, 000)”;
    string output = string.Format(format, parm);
    Where the output would look like this:
    “Some number formatted as 3 dig: 005”
    Thanks.

    Thanks everyone. Unfortuantly there's a constraint where the padding operation needs to be embedded in the format string. This entire operatin is being put together dynamically where the format strings are being pulled from a library of format strings stored
    in a database. at runtime we don't know how which format will be used and how many parameters will be passed in. we have logic to handle the unknown number of paramters as there is metadata which helps us with that.
    the need for leading zeros needs to be part of the overall format defined in the format string.  for example, a real format string stored in the database looks like this:
    "LINE_NO = '{0}',  AND GEO_LOCATION = 'T{1}, {2},  R{3}, {4}, , Sec. {5}'"
    and its output from the string.Function is:
    "LINE_NO = 'TG-G2469',  AND GEO_LOCATION = 'T155, N,  R93, W, , Sec. 5'"
    the last parameter (param 5) had a value of 5.  In another case the output requirement might need to look like this:
    "LINE_NO = 'TG-G2469',  AND GEO_LOCATION = 'T155, N,  R93, W, , Sec. 05'"
    note the "05" at the end...
    the logic of using the leading zero needs to be embedded in the overall format string text.
    Thank you.

  • Format functions.....

    Hi,
    I have detected something strange.....
    There are 2 different kind methods how i can write a format function:
    1. <?format-number:1234;'SOMESTRING'?>
    2. <?format-number(1234,'SOMESTRING')?>
    If i use the first kind the output format is sometimes wrong.
    example: <?format-number:1123.45565643;'0.00'?> should be: 1.123,45 in german and 1,123.45 in english local. But sometimes the result is: 1123,45565643 and nothing changed. (I think its some kind of error if I am combinating the sum() function)
    And if i use the second kind the output format is sometimes wrong. everything works fine. But the reportlocal of my client Page has no influence to the output and doesnt effect the seperators...
    I hope that helps to fix a bug.
    Or is it no bug?
    Greetings....

    no solution here?

  • Bug: Link Inspector   Enable as hyperlink doesn't lock

    How annoying is this:
    I have a URL that I'm using in copy for a flyer that is designed to be printed, not distributed electronically. I make sure to deselect the "Enable as hyperlink" in the Link Inspector.
    But every time I move, change the point size, or edit the copy block  that the non-enabled url sits, the enable as hyper link gets checked. So you see everytime I must modify that copy block, i must select the URL and go back to the inspector and unclick 'enable as hyperlink'. If I unchecked this same copy once, it should remain unchecked. Problem is that the URL changes to BLUE and then includes an underline.
    Not very productive to have to continuously go back. But more annoying is simply trying to select the copy is a challenge because the cursor changes to a hand and then if I don't get the selection exactly accurate, a browser window pops up, creating more clutter and wasting addtional time.
    This perhaps should be catalogues as a pet peeve and bug fix, but I'm not sure where to post that.

    MacMyDays wrote:
    still doesn't work, fruhulda.
    try it yourself.
    create a text box. type www.apple.com, the link won't be active until you deselect and move out of the text box. Once you do, the link will become active.
    Now select the www.apple.com link, go to the inspector and disable the enable as link.
    Now, go to the text www.apple.com and select it and change the font. Then deselect it and you'll see the link is once again active.
    Can you replicate this behaviour at your end?
    If your Autocorrection Preferences are set to recognize such links, wouldn't you expect them to re-activate? I would, but I don't think you have said anything about that preference setting.
    Jerry

  • Some worksheets missing the format and stoplight link in viewer

    I have a set of workbooks that are pretty simple. Each has from 1 to 4 worksheets. I have one workbook where two of the worksheets when run through viewer do not show a format or stoplight link, but the other two do show the links. Is there something that blocks these links from being displayed?

    This issue occurred in our system too.
    We are running Oracle BI 10.1.2 on a Windows 2003 Server machine. The "format" and "stoplight" link suddenly disappeared from Disco Viewer.
    Does anybody know what can have caused this?
    ps: moreover the font of the Viewer page is smaller since this happened

  • How to create menu function for link to open file

    Hi,
    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.
    Thank you.
    Regards,
    Wilson

    I need help how to create menu function for link to access file and allow user to save the file when click on it.
    The file will keep inside server.AFAIK, you have to write a custom code to achieve this and Oracle does not provide this functionality.
    If you want to store the file as an attachment, please see (How to Store Image/PDF Attachments on the File System in 11i and R12 (like Attachment File Directory) [ID 294525.1]).
    Thanks,
    Hussein

  • "My Pages" order in LINK Inspector

    In iWeb, the BLOG page automatically orders the entries by date.
    In the 'Inspector" for the hyperlinks "My Pages" are ordered in a different order. It looks Random.
    Is there a way to reorder them in the Link Inspector?
    This is an issue for me becase the "Next Page" link at the bottom of each blog entry is going to the next entry on the Inspector list, rather than the next one chronologically.
    thanks very much for your help.
    Clay
    PowerBook G4   Mac OS X (10.4.7)   iWeb 1.1.2

    Clay, there is a forum dedicated to iWeb in the Apple discussions -- you would probably have better luck asking your question there.

  • Book-Function/PDF: Links between documents in pattern pages...

    Hello,
    we try to use InDesigns book-function for a complex presentation. It should work like this: We habe a book-file that collects single indesign files with projects. At the beginning there is a "start" file with standard-content, followed by THREE pages with tables of content. These pages are followed by some (round about a houndred) project pages. There are three different types of headline-formats for dfferent types of projects. That is why there ae three tables of content: for each type of project one...
    All project pages have the same pattern pages with three links at the bottom that refer back to the three tables of content. So if you are on a project-pag you can choose to wih table of content you want to go back.
    From while to while there are new projects, so we want to duplicate older projects, insert them into the book file and update the tables of content.
    Thats the theorie!
    Now to our problem: If we make a PDF file from that book some of the links back to the tables of content area working, some are not. Sometimes Indesign tells us that some links ae broken, even if they are all the same. I once had a PDF document where everything was working. But as soon as I insert a new project file indesign telles again that links are broken - not only in the new file - even if I havent changed anything in other files. And what works and what not is differnt from time to time, for me it seems to be quite arbitrarily...
    Does anybody know about this problem?
    Thank you very much!
    Jan

    Are these links Hyperlinks, or Cross-references?
    Inter-document cross-refences are known to be extremely unreliable. I don't work with Hyperlinks, but are you sure they are actually pointing to the document that contains the three TOCs? ID doesn't do relative links, as far as I know, so you'd need to set up the links as absolute to the correct file. It's possible, too, that hyperlinks between files are just as unstable as cross-references.

Maybe you are looking for

  • Error after Patch 3 Install

    After installing .NET PDK 1.0 Patch 3 and deploying a newly created Hello World application with VS .NET (SAP Portal Add-in), I run the application from the Component Inspector in the Porta.  I receive the following error upon the loading of the new

  • JDBC receiver error:ORA-06550: line 1, column 7: PL/SQL

    Hi, I am geting this error in JDBC Receiver adapter. when  i call the stored procedure. Last week it works fine.But i today i faced this error. Error Unable to execute statement for table or stored procedure. 'spec_utilities.SP_DELETE(Structure 'unas

  • I have data under listed as other 8.4 gigs of it and i want to delete it.  what makes up that data and how do i get rid of it.

    I added an app from work "Good", give access to my work email on my ipad.  i think this is the culprit.  i now have 8.43 gigs of "other" on my storage capacity line and that leave little space for other things.  I deleted the ap and it did not reduce

  • Set environment variable in oracle 10g application server control rel3

    hi all, i am trying to connect to emc centera through 10g rel3 , here i am getting error . error name is: com.filepool.fplibrary.FPLibraryException: Error loading FPLibrary or one of its dependencies at com.filepool.fplibrary.FPPool.<init>(Unknown So

  • Block a form depending on XFA version

    Hi all, I'm authoring a form with scripts supported only from XFA 3.0/Acrobat 9.1 (see http://blogs.adobe.com/formfeed/2009/03/xfa_30_list_of_invalid_fields.html for details). I would like to alert the user if he/she opens the form with an older vers