Help on Help - is there any way to code "\n" on help information

I'd like to be able to format the help information by adding newlines as well as forcing it to appear at a certain column
I'd like to put a "\n" in my help; is there any way to do so?
I also notice that when you have multiple dictionaries in 1 AFC, the help information is pre-determined based off of some criteria, and some dictionaries have their help aligned on 1 column, while another dictionary has their help aligned on another. This looks very unsightly to a user who doesn't 'see' the different dictionaries. How can we intentionally adjust these help margins?
And is there a way to play with the margins for the prompts as well? some of my labels are very long and when they wrap, especially if I've used &nbsp, the first line is indented, but all subsequent lines go back to the same margin and it looks quite bad.

I haven't found a way to make the help text from different dictionaries  line up.  One workaround is to set the field display width the same for  the fields in both dictionaries.  The help is lined up with the longest  field in each dictionary.  As for the new line in the help text, the  help text is HTML, so a break tag "
" will create a new line.   You can put any valid HTML in the help text and it will be rendered.

Similar Messages

  • I've received an email of an unauthorised access which states it was done in Canada, is there any way I can request Apple to inform me what the IP address that made unauthorised access was?

    I've received an email of an unauthorised access which states it was done in Canada, is there any way I can request Apple to inform me what the IP address that made unauthorised access was?
    I want to know as it possibly relates to other security issues I've had of late and it would help further my investigation. Would a subject access request possibly allow me to recieve this information? As far as I know there's no way to see a list of when and where I sign in using my Apple ID?

    Sorry but no, Apple cannot give you that information. The only way they could give anyone such an IP address would be if they received a court order to do so, if even then; I don't know what sort of tracking and logs they do.
    However, if this email claimed that someone had tried to reset your password and in any way gave you a link to click to confirm your account information, the email was almost certainly a phish. Such phishing messages have been quite common over the last two or three weeks and should be deleted without responding. You may wish to manually type in the URL for Apple's page for managing an Apple ID and change your password, just as a precaution, and make sure you've set good security questions using responses that can't just be looked up for you (they don't have to be real information; you can use any response you wish as long as you can remember what you entered).
    Regards.

  • HT1267 Hi, I had bought an iPhone 4s 3 days ago & unfortunately it's been stolen at the day only,So it's a unregistered,seal peace only. What I have with me is the bill and on that the IMEI no of the iPhone. Is there any way to track it or getting informa

    Hi, I had bought an iPhone 4s 3 days ago & unfortunately it's been stolen at the day only,So it's a unregistered,seal peace only. What I have with me is the bill and on that the IMEI no of the iPhone. Is there any way to track it or getting information.
    Please help me out of this,,,,,....

    No, there is nothing you can do if you had not setup Find my iPhone on it.
    The bill and IMEI are useless for tracking a phone.

  • Is there any way to find out the dependency information for column of view?

    Does Oracle provide some view / table / pl/sql pkgs to find out the dependency information for column of view ?
    For example, there are two table mytable1 (col1 varchar2(10), col2 date) & mytable2 (col1 varchar2(10), qty int), and there is one view myView as
    select mytable1.col1, col2, qty from mytable1 inner join mytable2 on mytable1.col1 = mytable2.col
    Can I get some information such as myView.col1 is come from mytable1.col, myView.col2 is come from mytable1.col2, myView.qty is come from mytable2.qty
    ?

    I can get the information about the columns list in table/view from ALL_TAB_COLUMNS table, but I wish to know the column in the view is come from which original table's column.
    Is there any way to find it out from Oracle meta data / through any PL/SQL packages ?

  • Is there any way to gain the log in information for a deceased family members account?

    My common law spouse passed away a few weeks ago, his apple products are all gone but I was curious if there was absolutely any way I could gain access to his icloud account

    Table SGOSHIST contains the records viewed by any user.
    SAP menu path System>Object history
    To enable or disable object history tracking for a user, R/3 uses the user parameter SOBJHIST. When a user selects the “switch on/off object history” option, SAP inserts the SOBJHIST user parameter in that user’s own user profile. A parameter value of X is inserted to disable object tracking, while a blank entry in the parameter indicates tracking is active. Users can also change this user parameter if they have access to change their own user profile via transaction SU3.
    Regards
    Ravikumar

  • Is there any way to code via Extendscript "Make Compound Shape"?

    Hey there Adobe Community,
    tl;dr - How do you get ExtendScript to call "Make Compound Shape". It's to make comic book word bubbles.
    Full version:
    I'm trying to create a script that would create a word bubble based on a single line. The intended use should speed up the comic book lettering process. For this particular iteration, I'm trying to grab the pathPoints of one line, and use that to create the word bubble. However, I was really hoping to find a way to execute the code to "Make Compound Shape", so I can modify the balloon tail later, ie - non-destructive.
    Here's what I have so far.  Thanks to everyone in advance!
    D
    if ( app.documents.length > 0 ) {     var doc = app.activeDocument;     var artLayer = doc.layers[0];     // CURRENT ITERATION: Find the one and only line, and extract it's begin and end point.     var pointEnd = doc.pathItems[0].pathPoints[1].anchor;     $.writeln("pointEnd" + pointEnd + "\n");     var pointBegin = doc.pathItems[0].pathPoints[0].anchor;     $.writeln("pointBegin = " + pointBegin + "\n");     //CREATE ELLIPSE     var ellipse = artLayer.pathItems.ellipse(pointBegin[1], pointBegin[0], 225.0, 225.0, false, true ); //([top] [,left] [,width] [,height] [,reversed] [,inscribed])     ellipse.stroked = true;         var data = {             "anchors": [                 [pointEnd[0]+2, pointEnd[1]+2],                 [pointBegin[0], pointBegin[1]],                 [pointEnd[0]-2, pointEnd[1]-2]             ]     }        // CREATE BALLOON TAIL     var linez = doc.pathItems.add();     linez.stroked = true;    // loop thru the data.anchors     for(var i in data.anchors){         var point = linez.pathPoints.add();        point.anchor = data.anchors[i];        // if it's not the first or the last...whatever, it's only 3 points, so just say 2        //if((i != data.anchors.length - 1)&& i!=0)        if(i == 2){             point.rightDirection = [pointBegin[0]+2, pointBegin[1]-2];             alert("rightDirection: " + point.rightDirection);             point.leftDirection = [pointBegin[0]+2, pointBegin[1]-2]; //data.anchors[i];             alert("leftDirection: " + point.leftDirection);         } else {             point.rightDirection = data.anchors[i];             point.leftDirection = data.anchors[i];         }     }     ellipse.selected = true;     linez.selected = true;     //NEED HELP HERE!!! How do I call     //app.executeMenuCommand ("makeCompoundShape"); }

    Great question, Monika.
    I was looking to create one with where the balloon tail is angled at the top or bottom, depending on how the initial path is drawn.
    In later iterations, the balloon size would be generated based on the text going into it. I have already written code that pulls the dialogue into Illustrator. The hope was I could pull it directly into the word bubble. Specifically, a rounded balloon tail, angled up or down, with a round word bubble that's been 'scrunched' for lack of a better term. It should look something like the following examples:

  • Is there any way i can add my payment information in profile without credit card information.  The option "none" is not appearing for me

    I am unable to update my payment information in my profile without credit card information.  I do not see "None" option below Visa, Master, Amex & Discover.

    You would have to purchase a 3rd party program ( not supported by Apple).
    The ipod is not a storage/backup device.
    Copy everything from the old computer or your backup copy of your old computer.

  • My ipod touch 4 has been lost and it is offline is there any way to find it.if yes,then contact me at 918968447870.

    MY IPOD TOUCH 4G HAS BEEN LOST.I AM NOT ABLE TO FIND BECAUSE IT IS OFFLINE.IS THERE ANY WAY TO FIND IT?
    <Personal Information Removed by Host>

    You are not addressing Apple here we are all just users like yourself
    lost/stolen                                     
    No app on the iOS device is required.                           
    - If you previously turned on FIndMyiPod/iPhone/iPad on the iOS device in Settings>iCloud and wifi is on and connected or cellular data is on and connected for, on a computer browser go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up or continue to show off-line.
    - You can also wipe/erase the iOS device and have the device play a sound via iCloud.
    iCloud: Erase your device
    iCloud: Use Lost Mode
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the device and report to police and carrier if iPhone or cellular iPad
    - There is no way to prevent someone from restoring the erase (it erases it) using it unless you had iOS 7 or later on the device. With iOS 7 or later, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                               
    Reporting a lost or stolen Apple product                                              
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • HT204266 I erase all application of my iphone 4 with erase restore and now it's in restore mode. Now is there any way to restore my iphone without backup. Please help me. I have no need my previous file i just want my i phone ok and work smoothly as new p

    Hi,
    I erase all application of my iphone 4 with erase restore without any backup & i also lose the product serial number. Now it's in restore mode. Now is there any way to restore my iphone without backup. Please help me. I have no need my previous file I just want my iphone4 ok and work smoothly as like new ipone justlike i bought it at first time. I can't restore it. So Please help me to solv this proble.

    See Here  > without the Backup  >  http://support.apple.com/kb/HT4137

  • Is there any way to sync Outlook for Mac with iPhone? I have tried everything but not successful. Apple says it is not possible to sync contacts from Outlook for Mac to iPhone 5. Any help will be much appreciated.

    Is there any way to Sync contacts from Outlook for Mac to iPhone 5? Apple support says that only iTune can only sync contacts from "Contact" which is the default contact of Mac. If one is running Outllok on a Mac machine then it is not possible to sync the contacts with iPhone. It is strange that Apple distributors are promoting and offering machines with promise that Windows users can now run MS Office on Mac machines without any problem. While this is true, it is so strange that one cannot sync the contacts from MacBook Pro to iPhone5. If someone has found a way to sync contacts from Outlook to iPhone 5 please help as it is very frustrating to not be able to sync the contacts. Thanks, Amit.

    SEARCH!!!
    http://lmgtfy.com/?q=sync+outlook+mac+to+iphone

  • Help!  I just imported my vacation photos and now they are missing in iPhoto! Is there any way to retrieve them?

    I just "successfully imported" over 300 vacation photos.  It asked me if I wanted to delete them from my camera and I said yes.  I've done this hundreds of times over the past several years.  Afterwards, I got sidetracked looking in another photo event and then did something on my phone (unrelated) when I noticed my screen went black.  I figured I needed to charge my laptop, so I got the cord and plugged it in.  After restarting, I went back into iPhoto and under my events there is a thumbnail for each day from vacation, but a generic black and white picture of a palm tree and no pictures in any of the events.  My last import is of the pictures I loaded before this batch.  I've looked everywhere and can't find them!  This has never happened before!  Is there any way to find the photos and restore them to iPhoto?
    Thank you so much if you can help!!!

    a best practice to is to never have any computer program (including iPhoto) delete the photos from the card but to import the photos and keep them and then after at least one successful backup cycle has completed and then reformat the card --  I use three very large (32 GB) cards in rotation so I do not reformat for typically a year or more giving me one more long term backup of my photos
    You Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - from the resulting first aid window repair permissions and if necessary rebuild your database
    LN

  • Is there any way of exporting a clip (example 1 hour) into 4 seperate 15 min clips at the same time? Or does anyone have any ideas along the same lines to save time? Add my skype baconhousevidz if you can help or are unsure of what im asking

    Is there any way of exporting a clip (example 1 hour) into 4 seperate 15 min clips at the same time? Or does anyone have any ideas along the same lines to save time? Add my skype baconhousevidz if you can help or are unsure of what im asking
    thanks everyone

    BaconHouseVidz wrote:
    … at the same time…
    in hope to speed things up?
    no, no effect.

  • Can you help I was having problems with my iPod so I restored it but I accidentally set it up as a new iPod is there any way to restore it from an old  backup when I right click iPod in iTunes there isn't one anyway to recover one or find it on computer

    Hi can you help I was having problems with my iPod so I restored it but I
    accidentally set it up as a new iPod is there any way to restore it from an old
    backup when I right click iPod in iTunes there isn't one anyway to recover one
    or find it on computer

    The following says how to restore from backup.
    iOS: How to back up
    If you go to iTunes>Preferences>Devices you can see if you have an iTunes backup. You need one dated before or the exact time you started the restore.

  • My babysitter synced her iphone 4s on my computer and i didnt notice until i synced mine now all my contacts are deleted from my computer.  is there any way to get my contacts back on my phone? like a way to restore from before she synced her phone?HELP!!

    HELP!! my babysitter synced her iphone 4s with my computer and i didnt notice she deleted all my contacts when she did this. so when i synced mine it deleted all the contacts on my phone! is there any way to restore from before the sync? HELP!!!

    if you see the option to restore in itunes, click it.  Your phone will give you the option to restore as new, or restore from backup.
    http://support.apple.com/kb/HT1414
    The above article walks you through it, and has pictures. As for your contacts, if you had them saved to Outlook (windows contacts?) you can follow this other article for getting them back. I know it says ipod, but it will work the same.
    http://support.apple.com/kb/HT3191

  • Hi, plz can any one help me that is there any way to locate or find the stolen ipon nano???

    hi, plz can any one help me that is there any way to locate or find the stolen ipon nano???

    Other than physically looking for it, no. It does not have WiFi.

Maybe you are looking for

  • How to distribute my application with the smallest number of file

    Post Author: Ricolas CA Forum: General My application uses Crystal Report to generate reports (print function and PDF file). In fact my application only use the class "ReportClass". My application was developped with Crystal Report 9. Now, I am tryin

  • Cannot find symbol class ParseException

    I have this in my code how ever DateFormat formatter = new SimpleDateFormat("ddMMyyyy"); dDateStamp = (Date)formatter.parse(dateStamp); When I pass in say dateStamp=safsadssad sa; I get an error which is fine. I can not seem to catch this error with

  • Print attached document alongwith PO

    Hi All We have a following requirement. Please suggest suitable soultion. We would like to print the document attached to Purchase Order when we do the PO print. When we print the PO then attached document should also need to be printed. Any solution

  • My nokia e71 stuck up most of the time?

    hiya!        my phone stuck up most of the time so then the only solution is to take the battery out and then put it in..  is there any other solution for this problem, and is there any problem with the nokia e71 antenna system , because the signals

  • Prohibitory Sign on Mac OS 10.3.9 installed onto an iMac 350MHz

    Hi. Mi name is Jose Blanco. I have an iMac 350MHz which has the Mac OS 10.3.9. Six mounths ago I installled a new hard drive into this computer and I installed a fresh Mac OS 10.3 onto it. Yesterday (august, 9) this computer showed the prohibitory si