Use of smilies in message posts skews line spacing

I just wanted to report that the use of 'smilies' in posts here seems to affect the line spacing -- i.e., the vertical justification of text is irregular on the line that a smilie appears on.
I've just noticed this from one of my own posts. In 'preview' mode I could not tell what was causing the line with the smilie to appear to have more 'blank space' separating it from the previous line. Once posted, with the smilie rendered as a graphic image, I saw that that was the reason.
A better option (in terms of appearance) would be to have smilies matched to the text size.

Similar Messages

  • Text Line Spacing Question

    Hi, I am creating a book in aperture 2.0 and am having some trouble adjusting the line spacing in a newly created text box. The default text book in the template has a line space of +5. I have created my own text box for another page and the line spacing is +1.
    How do i change this to +5 to match the default. I cant find the option anywhere.
    Thanks in advance.
    PS. I find version 2 much nippier than 1.5.6.
    Message was edited by: Big Al Uk

    Bruce:
    Thank you for your reply. I generally set all the default margins to "0". I'll adjust the margins for paragraph indentations.
    I'm not sure how to describe the problem better than in my original posting, but I'll try.
    Suppose a form which looks like a contract with headings, single unchanging sentences and dynamic paragraphs.
    Suppose you create a Text Field object, and you use the Concat function. Suppose that you created multiple very long sentences using Concat in that same Text Field. You could use the paragraph window to set the line spacing at 1, 1.5 or 2.
    Set the line spacing at 2.
    Suppose you create a Text object that was either a heading or a sentence or two in length.
    Suppose there are both multiple Text Field and Text objects throughout the document.
    My is issue is lining up the line spacing so it is consistent double spaced throughout the document where there are multiple Text and Text Field objects. If I just look at it, my line spacing is close but far from consistent.
    I set my Text Objects and Text Fields at .25in throughout the whole document and that gets me an approximation of 1.5 line spacing, but that is still only close.
    Thanks for any additional thoughts.
    Best,

  • You cannot use this transaction type to post to this asset Message no. AA83

    < MODERATOR:  Message locked.  Please post this message in the [Asset Accounting forum|SAP ERP Financials  - Asset Accounting;. >
    Hi,
    I am settling credit values [-ve values] from WBS to Asset Under Constructions Assets during CJ88 period settlement run.
    These assets belongs to Investment Measure. For few assets I am getting below error and
    You cannot use this transaction type to post to this asset
    Message no. AA834
    Diagnosis
    The transaction type entered belongs to transaction type group 15. According to the specifications for this transaction type group, posting with transactions types belonging to this group are only allowed in specific asset classes (for example, asset classes for assets under construction).
    The asset to which you are posting belongs to class XXXXX (chart of depreciation XXXX). You cannot post to this class using the transaction type you have entered.
    Procedure
    Check the asset number entered. You may want to allow posting with this transaction type group for the asset class of the asset.
    I know normally we do this way
    During charging
    Dr Exp  A/c WBS name
    Cr B.S A/c
    During settlement
    Cr Exp A/c WBS name
    Dr AuC GL A/c
    But we have situation that during settlement, we are doing reverse
    ie., Cr AuC GL A/c
          Dr Exp A/c WBS Name
    These expenses are through POs and no downpayments. The below error taking me to down payment accounts config but we dont have down payment scenario, can any one advise, thanks
    Regards,
    Sridhar

    Hi,
    Please check the SAP note 1091728 for this.
    Regards

  • You cannot use this transaction type to post to this asset Message no.AA834

    Hi,
    I am settling credit values -ve values from WBS to Asset Under Constructions Assets during CJ88 period settlement run.
    These assets belongs to Investment Measure. For few assets I am getting below error and
    You cannot use this transaction type to post to this asset
    Message no. AA834
    Diagnosis
    The transaction type entered belongs to transaction type group 15. According to the specifications for this transaction type group, posting with transactions types belonging to this group are only allowed in specific asset classes (for example, asset classes for assets under construction).
    The asset to which you are posting belongs to class XXXXX (chart of depreciation XXXX). You cannot post to this class using the transaction type you have entered.
    Procedure
    Check the asset number entered. You may want to allow posting with this transaction type group for the asset class of the asset.
    I know normally we do this way
    During charging
    Dr Exp A/c WBS name
    Cr B.S A/c
    During settlement
    Cr Exp A/c WBS name
    Dr AuC GL A/c
    But we have situation that during settlement, we are doing reverse
    ie., Cr AuC GL A/c
    Dr Exp A/c WBS Name
    These expenses are through POs and no downpayments. The below error taking me to down payment accounts config but we dont have down payment scenario, can any one advise, thanks
    Regards,
    Sridhar

    When you have an investment order/WBS create from there the AUC. You collect the cost on the AUC. Final you fill in the settlement rule the final asset in (from a normal asset class) and then you transfer the costs to the final asset.
    In the IO or WBS should be assigened a investment profile and the asset class AUC should be set-up correct
    Search on this forum for more information or read the SAP help

  • The MAC signature found in the HTTP request '***' is not the same as any computed signature. Server used following string to sign: 'POST

    Hi,
    When trying with Postman sending a REST call to Azure Storage Queues I get:
    The MAC signature found in the HTTP request '***' is not the same as any computed signature. Server used following string to sign: 'POST.
    The code I have for creating the Authorization Header:
    var accountName = "my_account";
    string key = ConfigurationManager.AppSettings["my_access_key"];
    DateTime dt = DateTime.Now;
    string formattedDate = String.Format("{0:r}", dt);
    var canonicalizedHeaders = "x-ms-date:" + formattedDate + "\n" + "x-ms-version:2009-09-19" + "\n" ;
    var canonicalizedResource = "/my_account/myqueue/messages";
    var stringToSign = String.Format("POST,\n\n\n\n\n\n\n\n\n\n\n{0}{1}", canonicalizedHeaders, canonicalizedResource);
    stringToSign = HttpUtility.UrlEncode(stringToSign);
    HMACSHA256 hmac = new HMACSHA256(Encoding.UTF8.GetBytes(key));
    var signature = Convert.ToBase64String(hmac.ComputeHash(Encoding.UTF8.GetBytes(stringToSign)));
    var authorizationHeader = String.Format(CultureInfo.InvariantCulture, "SharedKey {0}:{1}", accountName, signature);
    return authorizationHeader;
    Anyone any idea what I'm missing/doing wrong?
    Additional question: do i have to create for every message I want to send a new Authorization header? Or is there an option (as with Service Bus Topics) to create a header that can be used for a certain timeframe?
    Thanks.

    One issue is with this line of code:
    HMACSHA256 hmac = new HMACSHA256(Encoding.UTF8.GetBytes(key));
    Please use the following:
    HMACSHA256 hmac = new HMACSHA256(Convert.FromBase64String(key));
    and that should take care of the problem.
    Regarding your question, "do i have to create for every message I want to send a new Authorization header? Or is there an option (as with Service Bus Topics) to create a header that can be used for a certain timeframe?"
    With your current approach, the answer is yes. What you can do is create a Shared Access Signature on the queue which will be valid for certain duration and then use that for posting messages to a queue using simple HttpWebRequest/HttpWebResponse.
    Hope this helps.

  • Create .txt empty file After Message Processing Command Line Linux command

    Hi All,
    An empty .txt file has to be created in FTP location(FTP loc c:\xyz\Customer20082910.txt) only after the .dat file has been created(FTP loc c:\xyz\Customer20082910.dat)
    Note:.dat has the actual data and .txt is an empty file and is created only after .dat is created
    I know that .txt empty file can be created using the After Message Processing Command Line...
    But confused which command to be given such that it will be created in the FTP location(c:\xyz\Customer20082910.txt)
    Can any one please give the Linux command for it...
    Regards,
    Sridhar

    Hi Aamir,
    Thanks for the suggestion, I will ask my client to create a shell script at FTP server...
    And one more question,
    This is reverse side , now the .dat file is to be picked only if .txt exists at the FTP server (scenario File > XI>SAP) (earlier was SAP>XI>File)..
    So please can you suggest for this also...
    How can i check for the .txt and pick corresponding .dat file...
    i had posted question long back
    Need to pick .TXT file only if .CTL file is available
    Regards,
    Sridhar

  • Setting Risk message at bottom line of FBL5N, XD02

    Hi all
    I am changing credit limit in transaction FD32 to a customer and that customer reaches at very risk level. I want to set warning message at bottom line of transaction FBL5N or information message via popup window to some other transactions that it should be displayed as customer has reached risk level whenever i execute these transactions.
    is there any setting possible to such messages in SAP for some transaction codes like FBL5N, XD02......for your further information we have already set warning message at ordering point for such customers.

    Hello gzahedi,
    Thanks for using Apple Support Communities.
    If I understand your post correctly, a portion of your screen is not responding.  To troubleshoot this issue, I'd like you to please follow the steps outlined below.
    Fix your touchscreen
    Make sure your hands are clean and dry, then try these steps:
    If you have a case or screen protector on your device, try removing it.
    Clean the screen with a soft, slightly damp, lint-free cloth.
    Unplug your device.
    Restart your device. If you can't restart, reset your device.
    If your touchscreen still doesn't respond like it should, contact Apple Support or take your device to an Apple Retail Store or Apple Authorized Service Provider.
    If the screen on your iPhone, iPad, or iPod touch doesn't respond to touch - Apple Support
    Have a great weekend,
    Alex H.

  • Creating an auto-reply message by command line

    Hi,
    Is it possible to create a an auto-reply message by command line? Need to create one but I have the users password and don't want to reset his password.
    TIA,
    Henry

    Thanks Pterobyte.
    I guess I did not search far enough back to find this. I did have to google en example of script. I've posted it below for future reference.
    # This is a sample script for vacation rules.
    # Read the comments following the pound/hash to find out
    # what the script is doing.
    # Make sure the vacation extension is used.
    require "vacation";
    # Define the script as a vacation script
    vacation
    # Send the vacation response to any given sender only once
    # every seven days no matter how many messages are sent
    # from that sender.
    :days 7
    #For every message sent to these addresses
    :addresses ["[email protected]"]
    # Make a message with the following subject
    :subject "Out of Office Reply"
    # And make the body of the message the following
    "I'm out of the office for an extended period of time and will not have access to email. "
    # End of Script

  • Problems using Google Talk with Messages

    Hello everybody. I have configured my Google Talk account in Messages; everything was working fine, but I came across an annoying issue.
    A friend of mine has Google Talk too: he uses Windows with Google's “official” application, together with the web plugin for Gmail. He is in my buddy list and we can chat, but we cannot make voice calls, nor use video chat: I see all buttons greyed out (except the “text chat” one).
    Any ideas to make it work?
    Thank you very much

    Hi,
    iChat or Messages to a Browser has never worked.
    He needs to get a Mac or you need to change to using a Browser.
    The Why.
    Google talk run a Jabber server.
    Most Jabber App have a module call Jingle Library that does the A/V stuff.  See Jingle
    Jingle use different A/V protocols to those used by iChat and Messages.
    The linked article seems to get changed fairly regularly.
    Currently it reads
    Jingle is an extension to the Extensible Messaging and Presence Protocol (XMPP) which adds peer-to-peer (P2P) session control (signaling) for multimedia interactions such as in Voice over IP (VoIP) or videoconferencing communications. It was designed by Google and the XMPP Standards Foundation. The multimedia streams are delivered using the Real-time Transport Protocol (RTP). If needed, NAT traversal is assisted using Interactive Connectivity Establishment (ICE).
    As of December 2009, the proposed Jingle specification has not yet been approved by the XMPP Standards Foundation, but is now a Draft Standard, meaning: "Implementations are encouraged and the protocol is appropriate for deployment in production systems, but some changes to the protocol are possible before it becomes a Final Standard."[1]
    The libjingle library, used by Google Talk to implement Jingle, has been released to the public under a BSD license. It implements both the current standard protocol and the older, pre-standard version.
    I have bolded the last part.
    This article has reads that Google (And XXMP/Jabber) "Created" the Jingle process.  In the past the wording around this has varied and the implied involvement by Google has varied along with it.
    Before that it did not mention Google in that way and also said the Google version was not that compatible with versions in other Jabber apps.
    This "Older" version would be 3 years out to date.
    iChat and Messages connect using SIP (Session Initiation Protocol) for A/V chats.
    This works with an Intervening server acting as an "Telephone Operator" at both ends to check the Acceptability or the Incoming call and the ports to be used  (it also checks that where the Visible Invite went is the person replying/Accepting).
    AS you both have Google IDs in may be simpler fro you to use a web Browser and download the Google Web Browser Plugin.
    NOTE:
    This may have issues if you use the FLASH Plugin as well.
    At one time Google Used Flash to generate the Video and it seems their plugin is very closely "related" in the way it works.
    9:37 PM      Friday; February 1, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • How to print the message in 2 lines?

    How to print the message in 2 lines?
    Here i am having it like this... MESSAGE i000(zm) WITH lv_uname.
    here I want to print lv_uname in 2 lines because it lengthy one.
    Thanks,
    Sridhar.

    No man, itas not comming..I am using the below logic to print my message:
        CONCATENATE text-I01 lv_printdate1 text-I02 INTO lv_printname
    SEPARATED BY space.
        MESSAGE i002(zm) WITH lv_printname.
    its printing in a single line...

  • Reg: fetch the data by using item_id which is retuned by In line View Query

    Hi all,
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items1(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items1 values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_quantity(item_id number);
    insert into xxc_quantity values (123);
    create table xxc_quantity_1(item_id number);
    insert into xxc_quantity_1 values (123);
    SELECT union_id.item_id,
           b.org_id,
           e.name,
           fun1(union_id.item_id) item_no
    FROM   xxc_transactions a,
           xxc_items1 b,
           xxc_headers c,
           xxc_lines d,
           xxc_types_tl e,
           (SELECT item_id
            FROM   xxc_quantity
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_quantity_1
            WHERE  item_id = 123
            UNION
            SELECT item_id
            FROM   xxc_transactions
            WHERE  item_id = 123) union_id
    WHERE  a.type_id = 6
           AND a.item_id  = b.item_id
           AND union_id.item_id = b.item_id
           AND a.org_id = b.org_id
           AND c.header_id = d.header_id
           AND d.line_id = a.trx_line_id
           AND d.item_id = b.item_id
           AND c.order_id = e.transaction_id
           AND b.org_id = 12
    GROUP  BY union_id.item_id,
              b.org_id,
              e.name
    ORDER  BY union_id.item_id;
    create or replace function fun1(v_item in number)
    return varchar2
    is
    v_item_no
    Begin
       select item_no from xxc_items1
       where item_id=v_item;
       return v_item_no ;
        Exception
         When Others Then
          v_item_no := null;
          return v_item_no;
    END fun1;
    I  need  fetch the data by using item_id which is retuned by In line View Query(UNION)
    item_id  org_id  name    item_no
    123        12        abc       book
    Version: 11.1.0.7.0  and 11.2.0.1.0
    Message was edited by: Rajesh123 Added test cases script
    Message was edited by: Rajesh123 changed Question as fetch the data by using item_id which is retuned by In line View Query(UNION)

    Hi Master , sorry for the late reply and can you please help on this?
    create table xxc_transactions(type_id number,trx_line_id number ,item_id number,org_id number);
    insert into xxc_transactions values(null,null,null,null);
    create table xxc_items(item_id number,org_id number,item_no varchar2(10));
    insert into xxc_items values(123,12,'book');
    create table xxc_headers(header_id number,order_id number);
    insert into xxc_headers values(null,null);
    create table xxc_lines(header_id number,item_id number,line_id number);
    insert into xxc_lines values(null,null,null);
    create table xxc_types_tl(transaction_id number,NAME varchar2(10));
    insert into xxc_types_tl values(106,'abc');
    create table xxc_uinon_table(item_id number);
    insert into xxc_types_tl values(123);
    SELECT   union_id.item_id,
             b.org_id ,
             e.name ,
             fun1(union_id.item_id) item_no   --> to get item_no
             FORM xxc_transactions a,
             xxc_items             b,
             xxc_headers           c,
             xxc_lines             d,
             xxc_types_tl          e,
             ( SELECT item_id
                 FROM   xxc_uinon_table ) union_id
    WHERE    a.type_id= 6
    AND      a.item_id = b.item_id
    AND      union_id.item_id = b.item_id
    AND      a.org_id = b.org_id
    AND      c.header_id = d.header_id
    AND      d.line_id= a.trx_line_id
    AND      d.item_id= b.item_id
    AND      c.order_id= e.transaction_id ---106
    AND      b.org_id = 12
    GROUP BY union_id.item_id,
             b.org_id ,
             e.name
    ORDER BY union_id.item_id;
    Note: xxc_uinon_table is a combination of UNION's
    select 1 from dual
    union
    select 1 from dual
    union
    select no rows returned  from dual;
    I will get 1 from the above Query
    Thank you in advanced

  • Transfer Posting for Line Items between Reconciliation Account

    HI,
    My customer want to transfer costing the line items between a old Reconciliation Account and a New Reconciliaton Account.
    For example, i have a Account Group Vendor with a old Reconciliation Account " Vendor CEE".
    This reconciliation account has the line items concern differents Vendors.
    Edit a new Account Group calling ( CEE) to replace a Old Account Group.
    After changing in Vendor Master data the Reconciliation account, we need to transfer posting the line items in the new account reconciliation
    In Sap system is there a report can do it? Can you help me?
    Regards

    Hi,
    Thank you for the answer.
    I did that, and exactly:
    - In Trx Obbw insert the reconciliation account and Adjustement account.
    - and execute the trx FAGLF101 in test but the sap system give me the following error:
      " Account determination for transaction A00 is missing for account 0205016001 ZM P001 "
       Message no. FR005
    Can you help me?
    Regards
    Edited by: Marika De Cesare on Oct 18, 2011 1:06 PM

  • Inserting an image to a message post or attaching images to a post or creating a gallery

    Hi:
    I'm trying to either attach an image to a message post or insert it in-line with a message.  I've read several references to this ability perhaps being something that will happen "soon", but those messages that refer to this are dated in August of 2009.  Here it is December and I still can't figure out how.
    The online help says very clearly:
    How do I insert an image in a post?
    You insert an image the same way as you did before, but now you have more choices about where the image comes from and how it looks. You can insert an image from your computer (this uploads the image to your gallery), from your image gallery (if the image has been approved), or from another location on the Web.
    To insert an image in a post:
    Start a new post.
    You can insert images anywhere: in messages, replies, blog articles, ideas, or comments.
    Click the Insert Image button in the editor's tool bar (it looks like a tree).
    Well, I don't know how you could do it "before", but there is no "Insert Image" button in the editor's toolbar at all.
    There are also messages in this forum that say you can paste from a Word document (there IS a "Paste from Word" icon on the toolbar.)  However, when I paste from word, the images in my Word document are lost.
    Finally, I thought I'd post the images in a gallery.  Again the online help says:
    To upload an image to your image gallery:
    Go to your Profile page and click the View Image Gallery link.
    Click Browse to select an image file to be uploaded.
    If the image is small enough (the size limit is set by your community), the image is uploaded. A preview of the image appears so that you can make sure you uploaded the right image.
    There is no "View Image Gallery" link on my profile page.
    Now, I am a computer consultant and therefore (hopefully) very computer-savvy, so this is not an issue with me being a forum "novice."  But I've always had issues with help documents that say "click on this icon" and don't show a screenshot of where the icon is.
    And, I can't PROVE that my profile page doesn't have a gallery link because I can't upload a screenshot! <grin>.
    So, can anyone clarify if and how we can upload images?  Or if there is a definitive help document that lays this out, provide a link to that document?  The help "search" function is pretty weak, because it does a FORUM search on any term you type in, rather than restricting it to help documents.
    There's also some references to having to be a "silver member" in order to upload images, but no information on what is required to become such a member.
    Thanks
    Ron

    As stated in the Community Ranking Structure post on the Announcements section:
    Many community members will ask (and have asked in the past) exactly what the criteria is for achieving each rank in the hierarchy.  To eliminate the likelihood of system abuse or forum ‘rank climbing’, we have decided not to publicize the exact ranking criteria.  That said, community members will gain higher ranking by excelling in the activity components below.  The list is not in order of importance and some elements are weighted greater than others.
    Kudos Given
    Kudos Received
    Length of Time on the Community
    Number of logins
    Posts marked as “Accepted Solution”
    Total number of Posts (minus deleted posts)
    Total Number of Tags applied throughout community
    Time spent online in the Community Forums
    As members achieve higher rankings within the Community Forums, they will automatically receive additional functionality – while maintaining the functionality rights previously achieved.
    This is done to prevent spamming and trolling of the forums and to prevent objectionable content from being uploaded to the site.  There are legal issues involved with this and it preserves the integrity of the forums to grant certain permissions at certain ranks.
    The ranking structure undergoes periodic review and this may change in the future -- but no guarantees. 
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer that solved your issue as the accepted solution.

  • How to show warning message in two Lines.

    Hi,
    Can some one please let me know how to show a warning message in two lines. I have created a Message in EBS in two lines but it still displays on the page in a single line.

    use bundled exception.
    ArryList peerExceptions = new ArrayList();
    peerExceptions.add(new OAException(....));
    peerExceptions.add(new OAException(....));
    OAException.raiseBundledOAException(exceptions);
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Newby question. Trying to fill a section but using fill and/or stroke only changes line colour

    Hi,
    Been trying to work this out for hours now so if anyone can help I will be forever thankful!
    Basically, I traced an image earlier, expanded it then wanted to change the line colour. For some reason I couldn't get this to work even though I've done it in the past. So, I used the magic wand to select the line then dragged it into my new document and changed the line colour.
    Now, I want to change the fill on certain sections, however when I change the stroke it changes the colour of the line and when I change the fill it changes the colour of the line.
    I'm not sure if that makes sense or if anyone can help based on that but I can post pictures or something if that would help?
    I also understand that the magic want thing might be where I've went wrong at the very start maybe?
    Thanks for any help at all!

    I don't know if that helps you understand at all?
    For example I want to fill the inside of the square but when I'm hitting the fill and stroke buttons they're just changing the colour of the line.
    I think I might just start from scratch again! Don't know where I've went wrong.

Maybe you are looking for

  • Can I create a fillable form where data entered into to one field will automatically populate into o

    I have a document that I need the persons name to show up in 5 different locations across 5 pages. As the user fillis in the first textbox for name, can adobe use that data to fill in the remaining 4 text boxes?

  • Problem in event handling of combo box in JTable cell

    Hi, I have a combo box as an editor for a column cells in JTable. I have a event listener for this combo box. When ever I click on the JTable cell whose editor is combo box, I get the following exception, Exception occurred during event dispatching:

  • Why does my idletime/display so short

    Why is it if my laptop is idle for a short time i have to log back in to windows

  • PDF won't download

    I just created a fillable form with FormsCentral but when I click "Download as PDF" it will say "Creating PDF" then nothing happens. Why can't I download the PDF form?

  • Delete data

    Hi All -    I have a requirement to delete the custom table entries in quality and production servers. Table maintenance generator is available. Hence i have to delete it in DEV server and promote it to QA. But here I donu2019t have those entries in