Unable to place Zalgo text

Hi,
I am designing a client's novel and in some instances he used the Zalgo text generator to describe the language of an alien race. This generator converts text such as "grenus esesed" to g͏r͏̶̴̡e͏̀͢ń̡͠u̷̸̵s̢̡̛͡ ̢̨͝e̷͟ś̕͘͝e̸̸s̷̶̴͝e̶̡̛͠d҉̀͝͝   
Now, the problem is that InDesign doesn't seem to like that effect. It will replace it with question marks or red squares. Placing the entire novel with the Zalgo bits screws up the entire text, so I removed those and now I am trying to add them separately. I have tried placing the text, copying it directly from the generator and pasting it into InDesign, copying it from the generator to Notepad and then to Indesign, and also saving the text in Notepad and placing it. Nothing seems to work. Oddly enough, most browsers handle this effect just fine, and I even tried it on both Word and Notepad and nothing changes. It's just InDesign, and I need to have that text placed somehow.
Is there a way I can work around this issue? Is there a typeface or another option to obtaining a similar effect?
Thanks.
Oh, I am using Indesign CS 5.5

I couldn't get it to work in Word, notepad, nothing. Except a browser. It's due to the unicode character stacking that a browser can handle.
Personally, I would keep a browser window open and press ctrl and the + key to magnify the screen. Copy/psate the words, generate the Zalgo and take a screen shot with a utility and insert them as in-line images. And I would be charging the client for it.

Similar Messages

  • Unable to place a value in Flex Field in OAF page

    Hi all,
    I am unable to place this flex value in the flex field, but i can do this same thing in a normal "Text Field" am able to reterive that number and place in that text field .
    Problem is placing the same in Flex field , please suggest me how to do this .
    I have one Function Standard one that i am calling here and making use of that i can call that function and am able to get that value and place in a "Text Field" but the same thing i couldn't place in the "Flex Field" how to do this any idea am thank full to them. Its a very urgent issue i have to solve this.
    MY Controller Code:
    OAKeyFlexBean revenue = null;
    String s8 = pageContext.getParameter("Purpose");
    revenue = (OAKeyFlexBean)webBean.findIndexedChildRecursive("reveFF"); ------------------- this is the Flex Field where i have to place the output
    revenue.useCodeCombinationLOV(true);
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String revenuenum = resultset.getString(1);
    revenue.mergeSegmentsWithParent(pageContext);
    revenue.setStructureCode( ); ---------------------- What i have to give here
    revenue.setCCIDAttributeName("GlIdRev"); ---------------------- Attribute Name
    revenue.useCodeCombinationLOV(false);
    revenue.setAttributeValue(FLEXFIELD_SEGMENT_LIST, revenuenum); ------------- How to use this FLEXFIELD_SEGMENT_LIST (unable to retrieve anything)
    revenue.setText(revenuenum);
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    Standard function i have:
    create or replace FUNCTION SDS_CUST_BILL_INFO(P_ORG_ID IN NUMBER,P_ACC_TYPE IN NUMBER) RETURN VARCHAR2
    AS
    *- Purpose: This PL/Sql program that will return GL_ID_RECEIVING_ACCOUNT or GL_ID_REVENUE_ACCOUNT
    *- information for new Customer BIll_TO site
    V_ACCOUNT VARCHAR2(2000);
    BEGIN
    BEGIN
    SELECT TRUNC(SEGMENT1)||'-'||TRUNC(SEGMENT2)||'-'||SEGMENT3||'-'||TRUNC(SEGMENT4)||'-'||SEGMENT5||'-'||SEGMENT6||'-'||SEGMENT7
    INTO V_ACCOUNT
    FROM GL_CODE_COMBINATIONS GCC
    ,HR_ORGANIZATION_UNITS HOU
    ,RA_CUST_TRX_TYPES_ALL RCTA
    WHERE HOU.ORGANIZATION_ID = RCTA.ORG_ID
    AND HOU.ORGANIZATION_ID = P_ORG_ID
    AND GCC.CODE_COMBINATION_ID = DECODE(P_ACC_TYPE,1,RCTA.GL_ID_REC,2,RCTA.GL_ID_REV)
    AND UPPER(RCTA.NAME) = 'INVOICE'
    AND HOU.ATTRIBUTE3 = 'Y';
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    V_ACCOUNT := NULL;
    WHEN OTHERS THEN
    V_ACCOUNT := NULL;
    END;
    RETURN(V_ACCOUNT);
    END;

    Hi parag,
    You mean to say i have to write like this :--
    if (pageContext.getParameter("apply")!=null)
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject accountsViewObject =
    (OAViewObject)am.findViewObject("ArBusPurAllVO");
    if (accountsViewObject!=null)
    OARow row = (OARow) accountsViewObject.getCurrentRow();
    if (row.getAttribute("GlIdRev") == null || row.getAttribute("GlIdRev").equals(""))
    //call your function here and say row.setaatribbute= revenue_acct_id from your function.
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String revenuenum = resultset.getString(1);
    row.setaatribbute(revenuenum) ;
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    if (row.getAttribute("GlIdRec") == null || row.getAttribute("GlIdRec").equals(""))
    //call your function here and say row.setaatribbute=rec_acct_id from your function.
    if(s8.equalsIgnoreCase("BILL_TO")) {
    try {
    Connection conn = pageContext.getApplicationModule(webBean).getOADBTransaction().getJdbcConnection();
    String Query = "select SDS_CUST_BILL_INFO(:1,2) from dual";
    PreparedStatement stmt = conn.prepareStatement(Query);
    stmt.setInt(1, orgid);
    ResultSet resultset = stmt.executeQuery();
    if(resultset.next()) {
    String receivablenum = resultset.getString(1);
    row.setaatribbute(receivablenum) ;
    } catch(SQLException se) {
    se.printStackTrace();
    throw new OAException("Error in Staffing Query"+se, OAException.ERROR);
    super.processFormRequest(pageContext, webBean);
    Am I, correct parag please tell me, if this works i will send u mail again that it is working fine .
    my mail id is [email protected]

  • New iPhone 5 just started being unable to place/receive calls

    My iPhone 5 just started being unable to place (says call failed) or receive calls. Cellular data works as do texts. Called ATT, can't figure it out on their end.

    I just went to the Apple Store and their solution was to replace my phone.

  • I am unable to delete whole texts from left-swipe. i click delete and they dissappear. But then i can't send or recieve texts. i reboot phone and deleted message reappear. i've synced, backup, everything. Help!

    I am unable to delete whole texts from left-swipe. i click delete and they dissappear. But then i can't send or recieve texts. i reboot phone and deleted message reappear, but i am able to continue send/recieving texts.. i've synced, backup, everything. Help! I am doing this beacuse in my space on my phone my doucments and data are taking up 9GB of space, and i don't know why other than in my phone it says messages are taking up 8GB or so. I am running ios 7.0. I have synced my phone with itunes, backed up, reboots after deleting the texts, they never vanish, i have even restored from itunes and restored from a backup that didn't include the texts after i deleted them.

    actually better to reset your phone and reinstall the latest firmware again after that restore your back up it should be ok

  • Unable to edit boilerplate text in layout

    After a recent dev 1.6.1 upgrade, I am unable
    to edit boilerplate text in the layout editor-
    my OS - solaris 2.8
    reports version : 2.5.7.17.0
    DB version : 7.3.4.4.0
    It works with Solaris 7.
    Your help is appreciated.

    Hi GJMCMC,
    In the text Determination Procedure for Customer(SD) with t code VOTXN goto change and check one field is Ref/Duplicate, tick it and check if its working with it.
    Thanks & regards
    Deepak Sharma

  • Unable to get the Text proerty of Range class

    Hi,
    I am using the Text property of Range class for excel template development using VSTO.While reloading the template i am getting the error "Unable to get the Text proerty of Range class".If i skip this line of code,i am getting similar kind of errors while accessing the properties of Range class(like Range.copy() ,Range.Locked, Range.EntireRow.Hidden).In all these cases i am getting the similar kind of error "unable to get the property of Range Class".
    Waiting for a quick response...
    Thanks in advance..

    Hi Besse,
    Actully, the error is coming when i try to populate datatable with the the range values in one of the sheet.
    I am using the below code.
    //"wsInteropMetadata"  is the sheet object.
    //"RangeName" is the range name in the sheet.
    rngConfig = wsInteropMetadata.get_Range("RangeName", Type.Missing);
    for (int iRow = 1; iRow <= iRowCnt; iRow++)
        dRNew = dTMetadataTable.NewRow();
        for (int iCol = 1; iCol <= iColCnt; iCol++)
          rngCell = (Excel.Range)rngConfig.Cells[iRow, iCol];
          dRNew[iCol - 1] = rngCell.Text.ToString();
       dTMetadataTable.Rows.Add(dRNew);
    In the first load of the template,this code is working fine.In the reload i am getting the error at "rngCell.Text".If i see in quickwatch,most of the properties of  "rngCell" object are throwing "System.Runtime.InteropServices.COMException".See the below exception information.
     Exception Information
     Exception Type: System.Runtime.InteropServices.COMException
    Message: Unable to get the Text property of the Range class
    Source: Microsoft Office Excel
    ErrorCode: -2146827284
    Thanks
    Krishna.

  • After upgrading to iTunes 9.2, unable to type in text/search fields

    Hi,
    After upgrading to iTunes 9.2, I am unable to type into text or search fields within iTunes.
    Haven't tried all fields, but I've seen it in both search in iTunes and the iTunes store, and also trying to create folders on my iPhone (through iTunes only, it works fine on the phone).
    Anyone else seen this or have an idea for a fix?
    Thanks...

    I'm wondering if you figured out this problem. I'm having the exact same issue, which means I can't even log in to my iTunes account. I've even tried uninstalling it and reverting to iTunes 9.1.1, which then won't even open.

  • Unable to call or text while overseas, but calling the US is ok

    I used to have a Blackberry Bold through Verizon and had no problems using it overseas. A month or so I upgraded to a HTC DNA and as usual, called Verizon to sign up for their global data plan, and took my HTC overseas. Once in Europe, I was unable to call or text locally, or even sending or receiving texts to/from the US. I tried calling the US and that did work. I tried the "+" and "00" and had all the correct country/city codes locally. I called Verizon back home and the global service tech just asked me to keep trying the "00" but it didn't work. The only thing I did turn off on my phone was the "roaming data". My airplane mode is off. I am still overseas currently, but not able to communicate. Everytime I cross the border I do get Verizon standard texts saying how much it will cost if I turn on my data, and etc. Any ideas or suggestions? Thanks.

        Hello deblenheim
    I'm sorry to hear your having trouble using your DNA while traveling overseas. We need to determine if this is your device or Sim card or the network over there. Please reach out to us from a different device at: 908-559-4899. I'm sure we can get to the bottom  of this together.
    JoeL_VZW
    Please follow us on twitter @vzwsupport

  • 10.6.8 Unable to click in text boxes or on utility menu at top of screen, Dock icons lead to containing folders instead of programs

    As stated in my subject, periodically I become unable to click in text boxes (in my browser, addresses/search) and am also unable to click on the various icons in the utility bar at the top of the screen such as bluetooth and volume control etc.  Also, when this occurs if I click on Applications or one of my Dock icons it leads to the containing folder as a destination instead of the program itself.  It resolves itself after awhile, but I can fix it immediately by unplugging my mouse and plugging it back in.  At that point, everything works fine as if nothing ever happened.  What is strange to me is that it fazes in and out, while being able to return to being fully operational.

    Have you tried adding the following css selector to your css file.
    .nav-bar a {
        text-align: center;
    or insert it in the <style> tag you have on the page:
      <style type="text/css">
      body {
        margin-left: 200px;
      .n {
        text-align: center;
    .nav-bar a {
        text-align: center;
      </style>

  • Does anyone know a fix for being unable to 'place' in Illustrator cs5?

    I have been using CS5 Illustrator for over a year now and have had no problems until yesterday when I opened illustrator and was unable to place any images.
    I can click on 'place' and go find the file, it appears to go through the right process then there is no image on the artboard at all, anywhere. Then I decided to open up previously made files that contain placed images and all they have is a bounding box with no image. The Links panel recognises the name of the file but no image is visable, even as a thumbnail.
    Has anyone else had this issue? I've been searching online for someone else with this problem and hopefully a fix but no solution as yet.
    I'd be so grateful of some help...thank you

    Thanks Les.
    FX has just provided an update that is suppose to fix this issue but the update fails to download...I guess I'll just wait a couple of hours until they fix it.
    In the meantime I turned off the plugin and it's now working. At the moment I just need to draw in illustrator so fonts aren't a worry for now.
    I appreciate your help

  • Unable to Add alternative text and tooltips to your images

    Hello,
    I am using Muse CC in Apple iMAC machine.  The build version of Muse CC is 232. 
    Having watched the video, http://tv.adobe.com/watch/learn-adobe-muse-cc/using-titles-and-alt-text-to-images/, I am unable to bring up the image property window when I press the right hand click button of my Apple Mouse. 
    As such, I am unable to add alternative text and IMG Text to my images including the logo, facebook and Twitter Logos. 
    Can someone please tell me how to resolve my issue?  How come I unable to bring up the image property when I press the right hand click on the mouse.  The image property is also not shown in the menu of Muse CC.
    Thank you.
    Maxplus.

    Hello Maxplus,
    Try doing CTRL+Click once to see if it works. Also, if an image is added as a fill, it doesn't bring up the Add alternative text and tooltips option, because then it is added as a background and not placed as an image.
    Cheers
    Parikshit

  • How to place standard text at the bottom of the last page

    Hi Gurus,
               I have a requirement to place a standard text at the bottom of the last page.Right now i am having 2 sub forms
              in a  body  page  in that one(header details) will not get overflow and only visible in the first page and the second
             body page( Item  details)   will get overflowed, till here it is working fine. Now i need to include terms and
             conditions details at the bottom of   the   last  page but i included the standard text in the context area
             and i don't know where to place that text in the layout . I tried with including
             a sub form in the master page and placed the text    in   the  bottom of that sub form but it gets repeated
              in bottom of each and every page and i tried by placing one more sub form   in the body page
               but the text is coming immediately after the item detail gets ended.I need only at the bottom of the
              page where the item details ends. Please make me to solve this problem.

    Hi,
       I gone through the link in that they set the footer part of the purchase order immediately next
      behind the body(Table) so after the table growth gets completed the footer gets displayed
      but in my case after the table growth ends it should display at the bottom of that page.For
      example if the table ends at the top of the second page ultimately the footer should be at the
      bottom of second page.If the table ends at the bottom of the first page and if the footer can't
      display the whole content in the bottom of the first page then the footer should move to the
      bottom of the second page.

  • Unable to place Photoshop psd file in Illustrator CS3

    Hi,
    Can someone help please???
    I am unable to place a Photoshop PSD file in Illustrator and be able to print the document correctly. The Illustrator file is saved as a ai file, both the document & PSD file are CMYK.
    On screen the document looks fine but as soon as I have printed the document, some of file has not printed.
    Do I need to have the Illustrator file as a eps file?
    I used to use an old Photoshop version that had a Export Image option, which was great for something like this, but CS3 doesn't have this option.
    Has anybody got any ideas what I am doing wrong?

    This seems to be an Illy problem, not Photoshop. You might want to check
    with the gurus there, but perhaps a few details, like what printer
    you're using and a few screenshots might help.
    Bob

  • Unable to place image in Illustrator CC 17.1

    I just installed Illustrator 17.1 on a new computer and I am unable to place (or copy and paste) an image file in to Illustrator. I do not receive an error. I've tried restarting and removing all of my Illustrator preferences.
    I found the following article on the same issue, and it was a fontexplorer plugin. I do not seem to have this plugin installed so, I do not think that is the issue.
    http://forums.adobe.com/message/4574340#4574340
    Please help! I'm not sure what else to try. Thanks in advance!

    What kind of image file?
    What exactly did you do and what exactly did Illustrator do instead of placing the image?

  • Unable to Place Orders

    For the past couple of months, I have been unable to place orders on Bestbuy.com when using only giftcards.  I have tried clearing my cache and using different computers, but the problem still persists.  The orders go through if part of the order is paid through Paypal, but there is no option to only pay with part of a gift card and leave a small amount to pay through another method.  Is this a sitewide problem, or is it specific to my account?

    Hi there UNC5052-
    Wow, that definitely sounds frustrating!  I can certainly understand why you would be disappointed and confused as to why your orders made with Best Buy gift cards are not going through.
    I did some testing and you should be able to pay partially by gift card as well as utilizing a credit card, PayPal or My Best Buy certificates.  My cart allowed me this option after adding a gift card to the payment.  What I would recommend is to try the following:
    1.       Make sure that you are using the most updated version of your internet browser.
    2.       Try a different internet browser if you haven’t already done so.
    3.       You can also call us at 1-888-237-8289 and have an agent help you complete the order over the phone.
    Is the order not letting you move forward when you use all gift cards or are the orders being cancelled once placed?  Any additional information about what you are seeing would be helpful!
    Thanks,
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • What is the significance of Interlinkage as Source of Supply in SRM ?

    Dear all, When we send across a external requirement to SRM, then  during the creation of shopping cart, it tries to determine a unique source of supply. It searches for available contracts , interlinkages and vendor lists. My question is what is mea

  • .aplibrary - versions, hierarchy

    (First time in these parts, nice to meet you!) Aperture is amazing, I won't deny that - but I have some issues (and questions.) I hate storing any data in the proprietary .aplibrary file, because I need all of my images easily accessible cross-platfo

  • Free Self Signing Midlet for Series 60 3'rd Edition

    Hi folks, I just read a great blog about self signing midlets with your own certificate and run them successfully atleast in Series 60 2'nd ed. phones. and this whole process is absolutely free. Just read the blog, follow the procedure and u are read

  • CS3 to CS4 project conversion issues

    Imported a CS3 project (I had saved in Project Manager) to CS4. After the update prompt, I find the project has many issues. None of my Boris F/X are there, many of the parameters I set in Adobe effects controls are set differently (position, scale,

  • Can't find 'apps' panel.

    I wanted to download Photoshop but I can't find the 'apps' panel. How can I find it? Please help.