Can non-speaking characters appear in the outline view?

In the outline panel for a film script, I see little boxes that light up for each speaking character in a scene. Is there a way to have non-speaking characters show up in these boxes?

Hi,
According to your post, my understanding is that the “Description” column don’t appear when you view the items in a list.
Do you add the “Description” column from existing site columns in the “List Settings”?
By default, there are two “Description” columns in the existing site columns.
The first one is Multiple lines of text type in the “Status Indicators” group.
The second one is Single line of text type in the “Document and Record Management Columns” group.
If you add the first one site column in the list, you can see the “Description” field with the corresponding values when you view and edit the items.
If you add the second one site column in the list, the “Description” field won’t appear when you view the items, however, the “Description” field will appear when you edit the items.   
And, the “Description” column in the Workflow Tasks List is the first one site column with Multiple lines of text type.
I recommend that you can add the first one site column in the list to implement the results in your environment.
Best Regards,
Yumi Fu

Similar Messages

  • Is there a way to register non-speaking characters as characters?

    Last question for today, I promise:
    My script has a lot of non-speaking characters. I would like them to show up on the character reports. Obviously, whenever I highlight their names in the script and set them to "characters", their names are centered and formatted for dialogue, which makes the script totally confusing. Is there another way to mark these characters, whose names only appear in the "action", as characters?
    Thanks!

    You can manually enter "Non-speaking characters" for a scene from the "Scene Properties" panel on the right side.
    Also, if a word has been user as "Character" element at least once in the script, then in case it is appearing in Action element, it'll automatically be detected as a Non-speaking character.
    Thanks

  • Cannot rename file with non-ASCII characters when using the

    My application moves files from one directory to another by calling File[] srcFiles = srcDir.listFiles() to get a list of files in the source directory, and then calling srcFiles.renameTo(destFile) to rename each file.
    This does not work (renameTo returns false and the file is not moved) under the following circumstances:
    - the file's leaf name contains non-ASCII characters, for example "�"
    - the OS is Solaris 9
    - the LANG and LC_* environment variables are unset, i.e. the C locale is being used
    If I set the LANG environment variable to, for example, en_GB.UTF-8 then the rename succeeds.
    I have tried calling srcFiles[index].getName().getBytes("UTF-8") and the non-ASCII characters are being replaced with ? (0x3f) characters when LANG is unset.
    Is this a bug in the JRE? I would argue that since my code does not actually manipulate the filename (I just use the File object that File.listFiles() gives me) then the rename should succeed. Of course I would not expect the file name to be displayed correctly if I printed it out.
    I have reproduced this behaviour with JDK 1.4.2_05 and 1.5.0_04 on Solaris 9.
    Francis

    Thanks for the info Alan.
    I considered setting the locale in the environment (this sounds like the "correct" fix to me and we might implement it later), but this application shares a WebLogic server with many other applications so we would have to do a huge amount of testing to make sure that the locale change wouldn't break the other apps. In the end I worked around the problem by making the code that generates the filenames in the first place strip out any non-ASCII characters (the names of the files are not critically important).
    Looking forward to JSR-203, in the meantime perhaps a note about this behaviour in the java.io.File javadoc would be useful.

  • I have old content appearing in the content viewer

    I have old content appearing in the content viewer and would like to beable to control it, but can't find where it's coming from.
    It is stuff from the pre release days V10 backwards, that side loaded into the content viewer locally which seems to have somehow come over when I installed the new viewer but can't see where it is coming from. Anyone any ideas?

    Hi Bob
    Thanks for coming back, I have already tried the method you mention, but the past issues are not coming from that scorce, I have only the completed folios on line that were uploaded to the Adobe servers in order to be downloaded in to the multi issue apps.
    The folios I am seeing (approx 60 of them) seem to be loacally stored on my desktop that somehow have been picked up possiblly during a backup. I have set up a different Adobe ID and logged into the content viewer with the new ID but they are still there and are enabled for download. Removing them locally has no effect, so I assume they are coming from the Adobe servers.

  • Terrible..Links appear on the Design View

    Dear webmates: I have updated my DW with some new extensions,
    but .. oh surprise !! when I open my DW with a new projetc that
    contains links, these links also appear in the Design View and
    don't let me, for example justify Centered the whole page... Beside
    it, it is unconfortable to have such links on the Design View...
    they never appeared before... Please help me.. My nose say that it
    is something up to the setup.. but don't know where exactly it is
    supposed to be fixed,.... Appreciate your answers,

    You can try this simple fix -
    Quit DW.
    Find this folder -
    C:\Documents and Settings\<username>\Application
    Data\Macromedia\Dreamweaver
    8\Configuration
    (these folders are normally hidden - you may have to use
    Explorer > Tools >
    Folder Options to unhide them)
    and delete it.
    Restart DW. Works better?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Sw Jiten" <[email protected]> wrote in
    message
    news:e9kpod$ks$[email protected]..
    > yes , it is true, Alan. I have posted a differente
    page... Why ? because
    > it is
    > happening with any page that contains popup menus....
    so... I am 99.99%
    > sure
    > that it is because of the extensions that a friend gave
    me to install on
    > my
    > PC.. since then many thigns have changed...
    >
    > So. the point is: What should I do if I want to
    reinstall DW ??? I already
    > did
    > it, but it always calls the "new extensions" I
    installed.... where am I
    > supposed to delete those extensions? or in other
    words... what is the best
    > way
    > to uninstall and reinstall DW in order to start over
    again ? Thanx a lot,
    >

  • How can i display a portlet in the Edit view only ?

    Dear All,
    I'm developing a portal in which the end user can change the content of the portal page (personalize) using Edit smart link and i ask How can i display a portlet in the Edit view only ? not shown in the production view ?

    Last time I heard with Oracle they said the only way is to look at the current URL. If it contais _mode=16 then we are in edit mode.
    This is a function I use:
    FUNCTION inEditMode return boolean is
    bEdit boolean := false;
    begin
    if PORTAL.wwpro_api_parameters.get_value('_mode', 'qaz') = '16' then
    bEdit := true;
    end if;
    return bEdit;
    end inEditMode;
    Kind regards
    Tomas Albinsson
    Stockholm, Sweden

  • Where can I find join conditions in the ALL_IV_XFORM views?

    OWB 10.2
    where can I find join conditions in the ALL_IV_XFORM views? And if they cannot be found there, where are they to be found?
    Regards,
    Jaap.

    Hi Jaap,
    ALL_IV_XFORM views are called Mapping Model Views . These are available at repostory owner user.
    ALL_IV_XFORM_MAPS
    ALL_IV_XFORM_MAP_COMPONENTS
    ALL_IV_XFORM_MAP_PARAMETERS
    ALL_IV_XFORM_MAP_PROPERTIES
    ALL_IV_XFORM_MAP_DETAILS
    Connect repository user and execute below statement
    SELECT VIEW_NAME FROM ALL_VIEWS WHERE VIEW_name like 'ALL_%';
    Regards,
    Venkat

  • Can not delete PDF´s in the outline of iBooks

    I have PDF´s which I can see in the outline but I can not open or delete it. I know that the files are not in the library (during the upload went somthing wrong). How can I delete the book´s in the outline of iBooks ?

    I have PDF´s which I can see in the outline but I can not open or delete it. I know that the files are not in the library (during the upload went somthing wrong). How can I delete the book´s in the outline of iBooks ?

  • Non-ASCII Characters Appear In Path Name

    I've had this happen before over SSH via PuTTY on a Windows Host but now it's happening just in Linux. I'm testing out my first attempt at remastering the Arch Live CD and my home directory never got created while running rc.local, when I tried to execute it manually I got block characters at the beginning and end of the path. I tried to type the command manually and got the same thing. I enabled en_US ISO-8859-1 along with en_US.UTF-8 UTF-8 in /etc/locale.gen and re-ran locale.gen but it didn't seem to fix my issue. Anyone have any idea on how to fix this?
    Last edited by brando56894 (2013-08-30 17:01:04)

    What do you mean by non-ASCII characters?
    The ASCII character set contains characters for all byte values, however not all of them are displayable characters. Is it non-displayable characters you want?

  • Using iPad Pages,, I inserted emoji characters in a document and the characters appeared in the document when it synced to my iPhone, but they did not appear when synced to my iMac (Mountain Lion). Any ideas?

    Using iPad Pages, I inserted emoji characters successfully in a document. They appeared when the document was synced to my iPhone but the characters did not appear when synced to my iMac (Mountain Lion). Only blank spaces where they should have been Why?

    You'd need to have an Emoji font installed on your Computer. Do you?

  • My service provider's SMTP does not require a password but the option "non" does not appear on the IPOD Touch 5th gen. Fix?

    I have relay.skynet.be as my outgoing server and it does not require/allow password protection. When configuring mail on the Ipod the option of "non" is not given for the outgoing server. Is this a skynet issue or is there an Ipod solution?

    Google for:
    setup XX email on iphone
    to see if ony of the returned sites help.
    XX is you email provider.

  • How do I print the Outline view only?

    How do I print the black and white Outline view only? I pasted the Outline to a new layer, hid all other layers, but the color Preview view still printed.

    Clifford Peterson wrote:
    Re my cropping, I do have one problem.
    When I try to create multiple rectangles to define my cropping areas, 
    the rectangle I just made disappears when I make another one.
    I can only make one rectangle at a time.
    You've probably got your stroke and fill both set to none or to.... enable at least one of them... in a colour other than white

  • Question Mark ? appears on the Folder view

    Please not this is NOT a start-up problem - my MacPro seems to be working just fine.
    Since I removed a file from my Dropbox a small question mark appears in the top left of any folder I open.
    If I click on this question mark the name of the file appears and a pop up box tells me that the item can't be found - well that's normal 'cos I threw it in the Trash.
    How do I get rid of this annoying artefact ?
    Anyone ?

    A file had gotten added to the toolbar at some point, adding a shortcut to it there. That file can no longer be found, thus the question mark. To remove it, simply hold down the command key and drag it off the toolbar.

  • Can't play video podcasts in the album view box in iTunes 8

    I can't figure out how play video podcasts in the album view box (bottom left hand side) in the new iTunes 8. I could do it before w/7 but I don't remember what option I had checked off.
    Thanks in advance

    Let me know what you find out. I bought the new 80Gb ipod and I am having the same problem on long podcasts. It just reboots.

  • TS1297 My numbers / symbols 1-9 / !-(  do not work on my wireless key pad.  I have tried the resolution information but, still no response with those keys only.  I can only type these keys with the keyboard viewer.  Any suggestions?

    My numbers & symbols 1-9 / !-(  do not work on my wireless key pad.  I have tried the resolution information but, still no response with those keys only.  I can type these keys with the keyboard viewer, thankfully.  Any suggestions?

    Unable to type while Mouse Keys is enabled in OS X

Maybe you are looking for