Circling a word by clicking on it

Is there a way to click on a word in a PDF document and have that word circled (or boxed in with a border)? A friend asked me to work on a Character sheet for his game and a few of the selections aer made by "circling" a choice. Example: Good / Evil (the player would circle one or the other). As an alternate...it would be cool if the player could click on one word and have the other word striked-through (Example: The player chooses "Good" so the sheet would look like this... Good / Evil
I'm pretty good with all of the other calculations on this sheet but this one has me stumped. They didn't want a radio select.
Thanks for looking at this with me
Jack

You can set up a button so that it appears to circle a word, though it's really an ellipse. It's a lot easier to toggle the button's border, however, which would be a rectangle. You could use a similar technique to do a strikethrough.  Here's some code you can use in a button's Mouse Up event to toggle the border color from nothing (transparent) to red:
// Mouse Up script for button
(function () {
    // Get this button's current border color
    var cc = event.target.strokeColor;
    // Toggle this button's border color between transparent and red
    event.target.strokeColor = color.equal(cc, color.transparent) ? color.red : color.transparent;
To toggle a strikethrough instead, you could do this:
// Mouse Up script for button
(function () {
    // Define a string to use for the strikethrough text
    var strikethrough_text = "------";
    // Determine this button's new label
    var nc = event.target.buttonGetCaption() === "" ? strikethrough_text : "";
    // Toggle this button's label
    event.target.buttonSetCaption(nc);
You can change the number of hyphens to match the word you want to strikethrough and change the size of the button to suit.
If you really want to encircle a word, post again and I can provide a link to a demo.

Similar Messages

  • Some applications are not opening, including mail and Word.  Clicking on the icon stirs it on the dock, but will not open it.

    Some applications are not opening, including Mail and Word.  Clicking on the icon stirs it on the dock, but will not open it.  Any suggestions?  Thank you!

    Ok, that's plenty of space.
    Check the S.M.A.R.T. status on your HD: Boot from install disc (insert disc > restart > immediately hold down the c key and keep holding it until you see “Preparing Installation”) > at first screen select the language and click Continue > click on the Utilities Menu in the menu bar > select Disk Utility > select your HD in the panel on the left side (the name of the HD’s manufacturer and the model number, usually the top item in the list) > look at the bottom of the main window next to S.M.A.R.T. status and see if it says “Verified” (good) or something more ominous like “Failing.”
    If S.M.A.R.T. status is "Verified," run Repair Disk > click Repair Disk at bottom of main window. Run this at least twice, and keep running it until it says “appears ok” twice in a row. If that doesn’t happen, you may need a stronger utility (such as DriveGenius, TechToolPro, DiskWarrior) or if the directory is damaged beyond repair, you may need to reinstall the OS, or you may have a damaged HD which will need to be replaced (repair utilities can only repair the directory structure, not the HD itself). When this is finished, quit Disk Utility, quit the installer, and restart. Once booted normally, go to Applications > Utilities > Disk Utility and run Repair Permissions.

  • When I select the file to export from pdf to word, thens click the Export button, nothing happens.

    When I select the file to export from pdf to word, thens click the Export button, nothing happens.

    Firefox 19 was just released.  You may want to consider upgrading, then trying again.
    Glad to hear IE worked though!
    -David

  • Microsoft Word, right click in document-how make text larger in menu?

    Microsoft Word, right click in document-how make text larger in menu?
    Microsoft Word 2010 , right click in document-how make text larger in menu?
    I have a hard time reading some of the smaller fonts in context menus but this is not really a context menu. If I open Word and then right click anywhere you see a menu. Is there any way to make the fonts IN THIS MENU larger?
    Not in the document but in the right click menu?
    Thanks so much
    Peter

    The font size of the context menu is controlled by Windows, not by Word.
    For Windows 7, see
    http://www.sevenforums.com/tutorials/1175-fonts-change.html
    For Windows 8, see
    http://www.eightforums.com/tutorials/6932-advanced-appearance-settings-change-text-size-items-windows-8-a.html
    The context menu font is the same as the menu font.
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Making image change according to what words are clicked without page reload

    So I had all the ideas for my web page laid out and I finally
    started building it and got stuck in one area. I wanted to make two
    boxes next to each other... one with text and the other with just
    large image that changes according what text in the other box is
    clicked. I wanted all of this to happen without the page actually
    loading again. I saw something similar to it on
    Barackobama.com below the
    navigation on the left. I'm sure it involves some kind of script
    that I am not familiar with, but if anyone has any ideas of how to
    go about doing this please let me know. Thanks.

    DW's SetText behavior is one way to make that happen.
    Clicking on a word in
    the text area would rewrite the HTML in the image area to
    load a new image.
    Perhaps more simply, this would also be very easy to do with
    DW's Swap Image
    behavior. Click on the text, and that image swaps to another
    image.
    Do some homework by studying both of those behaviors and what
    you can do
    with them.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "This Is An Essay" <[email protected]> wrote
    in message
    news:g74ndu$soh$[email protected]..
    > So I had all the ideas for my web page laid out and I
    finally started
    > building
    > it and got stuck in one area. I wanted to make two boxes
    next to each
    > other...
    > one with text and the other with just large image that
    changes according
    > what
    > text in the other box is clicked. I wanted all of this
    to happen without
    > the
    > page actually loading again. I saw something similar to
    it on
    >
    http://www.barackobama.com
    below the navigation on the left. I'm sure it
    > involves some kind of script that I am not familiar
    with, but if anyone
    > has any
    > ideas of how to go about doing this please let me know.
    Thanks.
    >

  • Textflow word right click

    Hi,
    I am using TLF in my application. the textflow contains text & inlinegraphics. I am trying to implement spell checker on my own. So I want to add the suggested words for the miss-spelt word. For that I want to know the word I have right cliked on. After that fetching it from library & getting the suggested words part is done.
    So I need to add a right click event to the miss-spelt words and to know the word I have to look for(the word on which I have right clicked).
    Thanks in advance.

    Hi Robin thanks for the reply after a long time. I tried to do this in manner.
    Here is the code, what i worked around.
    public   var _textContainer:Sprite = null;
    _textContainer =
    new Sprite();
    _textContainer.addEventListener(MouseEvent.CLICK, setCurrentCell);
    _canvasTarget.rawChildren.addChild(_textContainer); // Added the container to the object of TLF.
    SetCurrentCell Function :
    public  
    function setCurrentCell(e:MouseEvent):void{
    var currentChar:String; 
    var currentWord:String; 
    var currentIndex:int; 
    var tmpIndex:int; 
    var tmpChar:String; 
    var left:String=''; 
    var right:String=''; 
    Application.application.mainF.currentCell = _textFlow;
    //Get the current word 
    if(rightClickFlag){
    rightClickFlag =
    false; 
    //setBlinking(e); 
    //trace(_textFlow.interactionManager.activePosition)currentIndex = _textFlow.interactionManager.activePosition;
    //trace(_textFlow.getCharAtPosition(_textFlow.interactionManager.activePosition))currentChar = _textFlow.getCharAtPosition(_textFlow.interactionManager.activePosition)
    //Traverse backtmpIndex = currentIndex;
    tmpChar = currentChar;
    while(1){
    //Also need to consider for images in between 
    if(tmpChar == ' ' || tmpIndex<0 || tmpChar == ''){
    startPos = ++tmpIndex;
    break;}
    tmpIndex--;
    tmpChar = _textFlow.getCharAtPosition(tmpIndex);
    if(tmpChar.charCodeAt() == 65007 || !(tmpChar.charCodeAt() is Number))//65007 char code of image as a block in plain text format{
    startPos = ++tmpIndex;
    break;}
    left += _textFlow.getCharAtPosition(tmpIndex);
    trace(tmpChar.charCodeAt());}
    var tmpLeft:String = ''; 
    for (var i:int = (left.length - 1); i >= 0; i--)tmpLeft+= left.charAt(i);
    left = tmpLeft;
    //Traverse aheadtmpIndex = currentIndex;
    tmpChar = currentChar;
    while(1){
    //Also need to consider for images in between 
    if(tmpChar == ' ' || tmpChar == ''){
    endPos = tmpIndex;
    break;}
    tmpIndex++;
    tmpChar = _textFlow.getCharAtPosition(tmpIndex);
    if(tmpChar.charCodeAt() == 8233 || !(tmpChar.charCodeAt() is Number)){
    endPos = tmpIndex;
    break;}
    right += _textFlow.getCharAtPosition(tmpIndex);
    //trace(tmpChar.charCodeAt());}
    currentWord = StringUtil.trim(left + currentChar + right);
    //Alert.show(currentWord) 
    //_textFlow.interactionManager.setFocus(); 
    //_textFlow.interactionManager.setSelection(startPos, endPos);}
    But still i am not able to blink the cursor on right click.
    Can you help me furthere, that where i am going wrong.

  • When i highlight a word, right click and select "search google for "x"" how do i not get directly into the new tab? i want to stay in the old tab

    i want to stay in the current tab and go to the new ones by myself later.

    * '''Ctrl+C''' to copy selected text to clipboard.
    * '''Ctrl+T''' to open a new tab.
    * If focus is not automatically set on the address bar, press '''Alt+D to''' set focus on the address bar OR '''Ctrl+E''' to set focus to the search box.
    * '''Ctrl+V''' to paste text from the clipboard.
    * Smack '''ENTER''' to jump right into a google search if your browser is configured to search through google from those boxes (which it probably is by default).
    * '''Ctrl+Shift+Tab''' to jump backwards through tabs.
    Much, much, much quicker then going through the rigmarole point-click-point-click.

  • Informational message when an unlinked index word is clicked

    I was looking at the index information in Tips and trix (by RoboWizard) and I noticed that if I clicked on an index heading that wasn't linked that I received an informational message telling me to click on a subentry below the index heading. How do I make that happen in my help file?  Is it easy to do or learn for a rookie?

    It is as simple as not having any topics assigned to the keyword. For example if you have a keyword of Project and a subkeyword of Create, add the topics to the Create subword. When you view the help, clicking on Project dets the message you describe.
    Read the RoboColum(n) for mutterings on RoboHelp, Technical Communication Suite and technical communication.

  • When I used to highlight words- Right click- "Search google for ...." it used to open the search in a new tab while keeping current page. Now, the search opens in the current tab as well as a new tab. Is there any way to revert this back?

    Searching google on highlighted words

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • When I type key words and click search it does not open

    When I type keywords in search, it does not open. Browser bar has go to website.

    Home page Mozilla search bar. Browser does not change to the URL. It show only 'go to website'

  • How can I cut and paste from a webpage to a Word document without the document taking me to the web address when I click on a word in the document?

    How can I cut and paste from a webpage to a Word document without the document taking me to the web address when I click on a word in the document?

    You are trying to copy a link, it is most likely in a different color such as the words "Microsoft's own forums" in his post. In Word highlight the word or words, control click on them, select Hyperlink, then Edit Hyperlink, then delete the link from the top box. It will then have a button asking if you want to "Remove Link", click on it.

  • Mouse-click with red circles

    In many tutorial videos (Photoshop or Lightroom) you can see red circles appear after mouse clicks.
    When I use the software it didn´t show up.
    Do I need a special mouse software ? Is it on Mac or Windows ?

    Some of the screen recording applications used to create demonstration videos can highlight the pointer during the recording. There are also utilities that highlight the pointer live, for example when you do a classroom presentation. On the Mac, you can use the Mouseposé utility for this.

  • HT1414 iphone 4S problem.  When the phone finally comes on the apple logo shows, then a cable has a pointed arrow to the words iTunes under a blue circle with a music note symbol.  I tried holding the on button & search at the same time.  It did not work,

    How is a 4S iphone reset when it is stuck on a picture of a blue music circle, the word iTunes under it, and a cable pointing to the circle.

    It's trying to tell you to plug it into your computer running iTunes. It's in recovery mode and needs to be restored.

  • Autocorrect right-click in Word 2013

    Dear Microsoft,
    I understand that, for aesthetic purposes, you have removed right-click functionality for autocorrect.  However, many people (specialists in their fields, writers, etc.) have previously depended on this tool, though mostly for time efficiency purposes. 
    Given this and that those users generally know their way around office programs, would it be possible to return the right click functionality?  This would not be by default, per your design choice, but rather as an option the user can enable through the
    autocorrect option.  This way, both parties are satisfied. 
    Sincerely,
    An SF/fantasy writer way too dependent on autocorrect

    Hi Matthew,
    Thanks for the kind suggestion, although our product team is already aware of this issue, I passed this information to them again to let them know this is still a pain point. Unfortunately, I haven't heard any plan to changing it so far, since
    this feature was removed on purpose as a low use feature to clean up the interface - yes "we" know "low use" is debatable.
    The workaround for those that need it is to either add it to the QAT or hover over the word and click AutoCorrect Options when the SmartTag icon appears. Neither exactly duplicates the older behavior but it gets them closer.
    Max Meng
    TechNet Community Support

  • Why doesit just copy the words and not the whole selection?

    whenever I select a few objects in my illustrator document (for example a circle, a texture and a word) and click on copy+paste, it only copies the word and not even with the size and typo I had chosen for it. How can I fix this problem without having to select the objects one by one and re-doing the format of the words?

    Hello,
    I'm facing the same problem and I would like to give all the details.
    I operate:
    -Illustrator CS5 Version 15.1.0
    -Windows 7 64b (professional)
    The problem is about selecting and copying an object with a text from Illustrator and pasting them into Word.
    Here are the details about the problem:
    -First I have drawn 2 objects: one is a rectangle with a hatching pattern and the other is the typo "A" around the rectangle. See the photo below "Illustr_doc_orig.png".
    -Secondly I'm only selecting the rectangle. I'm copying and pasting it into a Word document:
    No problem (see the photos below "Illustr_rect_select.png" and the "word_doc_image.png")
    -Secondly I'm selecting and copying both objects: the rectangle plus the typo "A" around it (see the photo attached "Illustr_both_select.png").
    Then I'm pasting them into the previous Word document. The problem is that only the typo is pasted in the Word document!!! (see the previous "word_doc_image.png")
    How to copy and paste the rectangle AND the typo altogether in the Word document?
    Many thanks for any help.
    Kind regards,
    Jean-Paul
    Photos:
    Illustr_doc_orig.png
    Illustr_rect_select.png
    Word_doc_image.png
    Illustr_both_select.png

Maybe you are looking for