Font doesn't display as the selected font

I wanted to use a particular font 'Corsiva Hebrew' in a project. I imported it from my Powerbook to the font folder, but when I use it in the project it displays as another font. Looking at it in 'view fonts' it is fine. I have restarted etc. Is there something else I should do or is this a font that won't work in Motion?

I was coming to that conclusion myself, but it works fine in Keynote on my Powerbook. On the MP I took off a lot of the language translations, I wonder if that had any effect. The font displays the alphabet fine if I check it via the font box in Motion. It also displays properly if I open the Keynote file on the MP.
There are no Latin characters in Corsiva Hebrew. When you use it for Latin characters, you are actually seeing a different font regardless of what it says in a font menu. The substitution occurs automatically, normally with Lucida Grande I think.
Look carefully at this font in size 72 and see if you can see any difference from Lucida Grande. Send me a screen shot if you like (tom at bluesky dot org).

Similar Messages

  • My Contacts program opens but doesn't display on the screen (it appears to be off above the top right hand corner).

    My Contacts program appears to open, but doesn't display on the screen (it appears to be sitting just above the top right hand corner). any suggestions on how to get it back?

    Launch Contacts, then on the "Window" menu select "Zoom". That should maximise the window and give you access to the bottom-right corner where you can resize it, and the bar at the top which you can drag around.

  • My Skype number doesn't display on the phone of pe...

    I purchased a Skype number, and I can receive call on that number. However my Skype Number  doesn't display on the phone of the people I am calling.

    Hi, Julia-T, and welcome to the Community,
    Have you seen this library of FAQ articles related to Caller ID?
    https://support.skype.com/en/category/CALLER_IDENTIFICATION/
    Best regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Select Table row(eg.3rd),rows displayed from the selected row,hiding above

    If we move the horizontal scroll bar of the table and filter a column when there is a selection on the row, the rows are displayed from the selected row. The rows above the selected rows are disappearing(F5 it come back) and the rows are available when there are more rows with vertical scroll bar(above the selected row, if we scroll up).

    Frank,
    Mailed to you the sample application with the table script too. Please review the comments in the mail.
    Thanks and Regards,
    Stanley William
    Edited by: STANLEYWILLIAM on Apr 22, 2013 3:52 PM
    Edited by: STANLEYWILLIAM on Apr 22, 2013 3:52 PM

  • Graphs doesn't display on the crystal report server

    I have a graph that displays good on the developer and when saved on the server and run it from the server doesn't display the graph. Any thoughts why its not displaying?
    I also want to retrieve it from .net application using Managed RAS, is there any thing that I need to set for it display the graph output.

    I'm using the same code for all reports and it works fine....only problem is its not displaying graph reports.
    SessionMgr sessionMgr = new SessionMgr();
                EnterpriseSession enterpriseSession;
                ReportAppFactory reportAppFactory;
                ReportClientDocument reportClientDocument;
                EnterpriseService enterpriseService;
                InfoStore infoStore;
                InfoObjects infoObjects;
                InfoObject infoObject;
                // set the name of the CR server
                String crServerName = ConfigurationManager.AppSettings.Get("CRServerName");
                // set userid to logon to CR server
                String crUserID = ConfigurationManager.AppSettings.Get("CRUserID");
                //set pwd to logon to CR server
                String crPwd = ConfigurationManager.AppSettings.Get("CRPwd");
                //set userid to logon to database
                String dbUserID = ConfigurationManager.AppSettings.Get("DBUserID");
                //set pwd to logon to database
                String dbPwd = ConfigurationManager.AppSettings.Get("DBPwd");
                //pass Crystal enterprise logon credentials
                enterpriseSession = sessionMgr.Logon(crUserID, crPwd, crServerName, "secEnterprise");
                enterpriseService = enterpriseSession.GetService("InfoStore");
                infoStore = new InfoStore(enterpriseService);
                //pass the report Name to query and pass it to reportClientDocument
                infoObjects = infoStore.Query("Select SI_ID From CI_INFOOBJECTS Where SI_NAME='" + reportName + "' And SI_INSTANCE=0");
                infoObject = infoObjects[1];
                //Connecting to RAS (Report Aplication Server)
                EnterpriseService tempService = enterpriseSession.GetService("", "RASReportFactory");
                reportAppFactory = (ReportAppFactory)tempService.Interface;
                reportClientDocument = reportAppFactory.OpenDocument(infoObject.ID, 0);
                // Pass datbase logon credentials
                reportClientDocument.DatabaseController.logon(dbUserID, dbPwd);
    FileStream fs = null;
    BinaryWriter bw = null;
    rptFileName = u201CTestChartReport.pdf";
    fs = new FileStream(Server.MapPath("~/reports/" + rptFileName), FileMode.OpenOrCreate);
    bw = new BinaryWriter(fs);
    PrintOutputController rasPrintOutputController;
    CrReportExportFormatEnum rasReportExportFormat =   CrReportExportFormatEnum.crReportExportFormatPDF;
    rasPrintOutputController = reportClientDocument.PrintOutputController;
                ByteArray tempByteArray = rasPrintOutputController.Export(rasReportExportFormat, 0);
                Byte[] byteStreamOutput = tempByteArray.ByteArray;
    bw.Write(byteStreamOutput);
    String file = "reports/" + rptFileName;
    Response.Write("<scr" + "ipt>\r\n");
    Response.Write("open('" + file + "');\r\n");
    Response.Write("</scr" + "ipt>");

  • Display/Print the Selection criteria entered by USER on the ALV Report o/p?

    Hi Experts,
    I hv a requirement of to print/display the Selection criteria entered by user in the selection screen.........on the top portion of the ALV report output lay out.
    There is a FM for this purpose, but, I forgot its name!!
    So, let me know the FM or FMs, so that, will choose, which is best one,
    or the piece of code, which covers all select-option entries..........appreciated.
    thanq
    Edited by: SAP ABAPer on Sep 3, 2008 6:35 PM

    Use the Function RS_REFRESH_FROM_SELECTOPTIONS get the selection details, now format the data accordingly in the TOP_OF_PAGE using the calss CL_DD_DOCUMENT.
    Check the below mention code.
    REPORT  ztest_page.
    TABLES: sflight.
    DATA : it_flight TYPE TABLE OF sflight WITH HEADER LINE.
    DATA BEGIN OF it_sel_opt OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END   OF it_sel_opt.
    SELECT-OPTIONS: s_carrid FOR sflight-carrid.
    START-OF-SELECTION.
      SELECT * FROM sflight INTO TABLE it_flight
       WHERE carrid IN s_carrid.
    END-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_sel_opt
        EXCEPTIONS
          not_found       = 01
          no_report       = 02.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = sy-repid
          i_callback_html_top_of_page = 'TOP_OF_PAGE'
          i_structure_name            = 'SFLIGHT'
        TABLES
          t_outtab                    = it_flight
        EXCEPTIONS
          program_error               = 1
          OTHERS                      = 2.
    *&      Form  top_of_page
    *       text
    *      -->DOCUMENT   text
    FORM top_of_page USING document TYPE REF TO cl_dd_document.
      DATA : dl_text(255) TYPE c.  "Text
    * Add new-line
      CALL METHOD document->new_line.
      CALL METHOD document->new_line.
      CLEAR : dl_text.
    * program ID
      dl_text = 'Program Name :'.
      CALL METHOD document->add_gap.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_heading_int.
      CLEAR dl_text.
      dl_text = sy-repid.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      dl_text = 'Selection Criteria'.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      CLEAR : dl_text.
      CONCATENATE 'SELECT Option' 'SIGN' 'OPTION' 'LOW' 'HIGH'
      INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
      CALL METHOD document->add_gap
        EXPORTING
          width = 34.
      CALL METHOD document->add_text
        EXPORTING
          text         = dl_text
          sap_emphasis = cl_dd_area=>heading
          sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
      CALL METHOD document->new_line.
      LOOP AT it_sel_opt.
        CLEAR : dl_text.
        CONCATENATE it_sel_opt-selname  it_sel_opt-sign
         it_sel_opt-option it_sel_opt-low it_sel_opt-high
        INTO dl_text SEPARATED BY cl_abap_char_utilities=>horizontal_tab.
        CALL METHOD document->add_gap
          EXPORTING
            width = 34.
        CALL METHOD document->add_text
          EXPORTING
            text         = dl_text
            sap_emphasis = cl_dd_area=>heading
            sap_color    = cl_dd_area=>list_negative_inv.
    * Add new-line
        CALL METHOD document->new_line.
      ENDLOOP.
    ENDFORM.                    "top_of_page

  • Logged-in user info doesn't display after the user updates their info

    I created 2 pages. Page 1 has a recordset that displays only the users username and password, I did a filter on this recordset as username = session var = MM_Username. when they click update, which is just a link to page 2, they go to page 2 which has a recordset that filters their user info the same way and allows them to update their username and password. I used an update behavior on this page as well. So, when the user updates their info it DOES change the database info and works great.
    The problem: When the user goes back to page 1 to see their updated username and password that they just updated, it is BLANK. no info displays on screen, even when I refresh the page. it's if the MM_Username var is not refreshing while logged-in. Because when the user logs out and logs back in, it DOES display new username and password on page 1.
    Now it DOES work when I take the filter off of page 1's recordset, but this won't do me any good b/c the user should of course only see their info.
    I am running DW CS3, php, and mysql.
    Please Help! thanks.

    PAGE 1
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", 
    $theNotDefinedValue = "")
       $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : 
    $theValue;
       $theValue = function_exists("mysql_real_escape_string") ? 
    mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
       switch ($theType) {
         case "text":
           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
           break;
         case "long":
         case "int":
           $theValue = ($theValue != "") ? intval($theValue) : "NULL";
           break;
         case "double":
           $theValue = ($theValue != "") ? "'" . doubleval($theValue) . 
    "'" : "NULL";
           break;
         case "date":
           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
           break;
         case "defined":
           $theValue = ($theValue != "") ? $theDefinedValue : 
    $theNotDefinedValue;
           break;
       return $theValue;
    $colname_rsUpdateUser = "-1";
    if (isset($_SESSION['MM_Username'])) {
       $colname_rsUpdateUser = $_SESSION['MM_Username'];
    mysql_select_db($database_kh_space, $kh_space);
    $query_rsUpdateUser = sprintf("SELECT username, parentEmail FROM users 
    WHERE username = %s", GetSQLValueString($colname_rsUpdateUser, "text"));
    $rsUpdateUser = mysql_query($query_rsUpdateUser, $kh_space) or 
    die(mysql_error());
    $row_rsUpdateUser = mysql_fetch_assoc($rsUpdateUser);
    $totalRows_rsUpdateUser = mysql_num_rows($rsUpdateUser);
    ?>
    PAGE 2
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", 
    $theNotDefinedValue = "")
       $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : 
    $theValue;
       $theValue = function_exists("mysql_real_escape_string") ? 
    mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
       switch ($theType) {
         case "text":
           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
           break;
         case "long":
         case "int":
           $theValue = ($theValue != "") ? intval($theValue) : "NULL";
           break;
         case "double":
           $theValue = ($theValue != "") ? "'" . doubleval($theValue) . 
    "'" : "NULL";
           break;
         case "date":
           $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
           break;
         case "defined":
           $theValue = ($theValue != "") ? $theDefinedValue : 
    $theNotDefinedValue;
           break;
       return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
       $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
       $updateSQL = sprintf("UPDATE users SET username=%s, password=%s 
    WHERE userId=%s",
                            GetSQLValueString($_POST['username'], "text"),
                            GetSQLValueString($_POST['password'], "text"),
                            GetSQLValueString($_POST['userId'], "int"));
       mysql_select_db($database_kh_space, $kh_space);
       $Result1 = mysql_query($updateSQL, $kh_space) or die(mysql_error());
       $updateGoTo = "confirmation.php";
       if (isset($_SERVER['QUERY_STRING'])) {
         $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
         $updateGoTo .= $_SERVER['QUERY_STRING'];
       header(sprintf("Location: %s", $updateGoTo));
    $colname_rsUpdateUser = "-1";
    if (isset($_SESSION['MM_Username'])) {
       $colname_rsUpdateUser = $_SESSION['MM_Username'];
    mysql_select_db($database_kh_space, $kh_space);
    $query_rsUpdateUser = sprintf("SELECT userId, username, password, 
    parentEmail FROM users WHERE username = %s", 
    GetSQLValueString($colname_rsUpdateUser, "text"));
    $rsUpdateUser = mysql_query($query_rsUpdateUser, $kh_space) or 
    die(mysql_error());
    $row_rsUpdateUser = mysql_fetch_assoc($rsUpdateUser);
    $totalRows_rsUpdateUser = mysql_num_rows($rsUpdateUser);
    ?>

  • Airdrop doesn't display in the the Finder.

    I have Lion on both my Air and Mini, but the Air doesn't display Airdrop in the Finder.

    Are both machines AirDrop compatible?  This article should help: http://support.apple.com/kb/HT4783

  • My Help Viewer doesn't work properly-The selected topic is currently unavailable Make sure you're connected to the Internet. For help connecting, choose Apple menu System Preferences, click Network, and click "Assist me." If you're connected to the Inte

     

    Sometimes just closing and reopening the Help window will clear up the problem. If it doesn't, log out or restart the computer and try again. Otherwise, you may need to delete the Help cache.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Caches/com.apple.helpd
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A Finder window should open with a folder selected. Move the selected folder to the Trash. Log out, log back in, and test. Help pages will be slow to load at first.
    If that doesn't work, the problem may be caused by network conditions. It may go away by itself, though I can't say how long you should wait.
    A persistent failure to load help data has been reported as an issue with satellite networks. Test on a different network, if possible. I've also seen at least one report that Photo Stream in iCloud can mysteriously interfere with Help. I'm not sure whether that's true, but try disabling Photo Stream, if applicable.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • SLA alert doesn't display in the OSB console's dashboard

    Greetings,
    I defined several SLA alerts for a proxy service and I'm using a client which creates on the purpose the required conditions to raise the alerts, but nothing displays in the Dashboard. I also enabled the monitoring checkbox but I don't know if the level has to be pipeline, service or action. Did I miss something ?
    Many thanks in advance,
    Nicolas

    1° Monitoring is enabled at service level.
    2° The aggregation interval for the condition is the same as the monitoring one.
    There is no message in the Dashboard, neither SLA Alerts nore any other one. What is very strange is that the Service Health tab says that the avg. response time is 0 seconds while the proxy service reply takes 30 seconds. The proxy service is based on a JAX-RPC WSDL generated in Workshop. I also tried JAX-RPC with the same result? The client is an Axis one generated in Workshop (not a WebLogic clientgen one) and it calls the proxy service as follows:
    //JAX-RPC
    TestService service = new TestServiceProxy().getTestService();
    // Service will reply in 30 seconds
    service.delay30();
    //JAX-WS
    TestService service = new TestServiceLocator().getTestServiceSoapPort();
    // Service will reply in 30 seconds
    service.delay30();
    Once called, the operation logs a message at its begin and at its end. The message shows that the processing takes 30 seconds. The SLA alert rule says that an alert has to be raised, having the console as the destination, whenever the processing time of this operaztion invocation takes more than 5 seconds. However, no message apears in the dashboard, no SLA alert and the service's avg processing time is displayed as being 0 seconds.
    Many thanks in advance for any help.
    Nicolas

  • Very weird! Preview doesn't open all the selected items!

    I transferred 120 photos from my digital camera to a new folder.
    Then I selected them all and double-clicked, causing them to open under Preview.
    But there are gaps in what opens!
    For example, none of the photos between filenames P1030899 and P1030955 open up!
    Yet if I select the photo files in that range separately and double-click on them they open up just fine!
    Why won't all the photos open up when selecting 120 at once?!
    I never noticed any such phenomenon with my old PB...
    doug

    OK. After doing some tests with Apple Support the problem turns out to be different, and perhaps more minor than I thought. But I would very much like other people here to test this as well!
    The images are, in fact, all loading by Preview. But what happens is the first couple load, then a bunch are skipped, then others load then the ones that didn't load before are loaded.
    So what Preview is showing after they are all loaded is not the images in order of filename, but the images in load order.
    If you control-click on any image and then click the "sort by name" option (even though that option was already selected) then the images immediately re-order themselves.
    So it is more a Preview sorting bug that it doesn't re-sort itself after loading all the images.
    I guess this never happened on my older PB because of the timings involved the load order was always the same as the file order alphabetically.
    What I would like to know is - can other people duplicate this as well?
    If you have a folder with, say, 200 or so image files in it, please "select all" and double-click. This will open all the images in Preview.
    Do all the images display in order immediately? Or is it like me where the first few display in order, then there is a gap of some number of images, then later images show up then your "missing" issues show up later. (You can resort after they are all loaded of course.)
    Thanks,
    doug

  • Image doesn't display in the report

    I have a report(template=hide and show region).
    Below is the code. Any pointers would be helpful
    select
    CASE
    WHEN test = '501' THEN '<img src="#APP_IMAGES#test.png"/>'
    ELSE '-'
    END test,
    select a,b,c
    from EMPS
    order by a,b
    Running this doesn't show image instead shows <img src="wwv_flow_file_mgr.get_file?p_security_group_id=13631408718475431&p_flow_id=172&p_fname=test.png"/>
    what should I do to avoid this.
    Thanks in advance
    Pravish

    Edit the report column and in the column attributes change the "Display As" field from "Display as Text (escape special characters, does not save state)" to "Standard Report Column".

  • Values not getting displayed in the selection screen for Hierarchies?

    Hi All,
      Our system was upgraded from BW 3.1 to 2004s. The quality system displayes values when query result is filtered for a hierarchy infoobject but the production system does not display any values and sometimes throws an error 'The operation failed because of a server error. See system logs.' There is no changes done for hierarchies in both the systems.
    Please let me know if anyone has had similar problems.
    Thanks,
    Krishna

    Hi All,
      Our system was upgraded from BW 3.1 to 2004s. The quality system displayes values when query result is filtered for a hierarchy infoobject but the production system does not display any values and sometimes throws an error 'The operation failed because of a server error. See system logs.' There is no changes done for hierarchies in both the systems.
    Please let me know if anyone has had similar problems.
    Thanks,
    Krishna

  • In Mail, I can see the list of messages on the left but the message that is highlighted doesn't display on the right.

    Where is my mail message?  The list of emails with preview is on the left, but the pane on the right only contains the sender and subject, no content.

    Try turning the account off and on : Settings > Mail, Contacts, Calendars , then tap the account on the right, slide Mail to 'off', exit settings and go back into the Mail app, and then go back to Settings and slide Mail back to 'on'
    If that doesn't work then try closing the Mail app completely : from the home screen (i.e.not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Garageband iPad midi editor doesn't display all the sounds that I used

    I used a Korg nano keyboard to record some drums into Garageband using Garageband's own drums. But somehow the snaredrum that I both hear and see in the overall editor is not dislpayed in the drum midi-editor. This renders me unable to edit my snaredrum. I could, of course, just use another key and have the snare drums displayed, but I just wanted to inform Apple about this issue and hopefully they'll fix it.

    If you just want a textual watermark with a copyright sign, simply paste the sign in as part of the watermark's text.

Maybe you are looking for

  • How do I install a driver?

    Mac-mini Mac OS X (10.4.7) I have joined my Mac-mini to a Windows workgroup. The printer for the workgroup is Epson Photo Stylus R320. The Mac Printer setup utility found the printer and I went thru the steps of selecting the printer driver. R320 is

  • Find does not work in numbers for iPad.

    help, my company has an excel document which I have saved to numbers. But the find option DOES NOT WORK, when the find option is tapped the find screen shows up but only accepts on or two letters. Then when the wheel/ tool is presses the screen goes

  • How to programmatically add af:setPropertyListener to CommandImageLink

    Hi All, My Requirement: programmatically add af:setPropertyListener to CommandButton I referred this post how to programmatically add af:setPropertyListener to CommandButton and followed the following code. Code: // create a value expression ValueExp

  • BB Storm2 Error 523 & Error 200 Please help

    Dear Folks ! I recently ought a BB Storm2 9550 for couple of days it was working well but i got some connection problem so I was told to change the software which i did successfuly but there was still sone problem in browsing the internet. then again

  • Where do I go to find website space with BT?

    Hi, I have just moved to BT Infinity from an ISP that provided an ftp server for web space. Can anyone tell me where I go to find out about setting the sites up again on a BT related server? Thanks, Stuart Solved! Go to Solution.