Text objects behave badly in 10.0.0.495

I don't believe what I'm seeing ;-) so want to ask if others
see this.
Adding a vector text object to the canvas should draw a box
whose position reflects where the text actually sits. In my
experience -- possibly after the updates that just arrived today to
make 10.0.0.495 -- the outline of the object and the text don't
always move precisely together: the outline box can appear
disconnected from the text.
Let's say I place several text objects using 14pt bold
verdana. I place an object then type some text. I repeat that three
or four times. Now I move some of those boxes vertically with the
mouse. Once I've done this for a while I might get an object whose
blue (or red) outline is drawn (in "full" view) *above* the text.
And when the width of a text box is just barely enough to contain
its text on one line, the text might be *on* the bottom border
rather than centered top to bottom *within* the border. Or the text
might be just so slightly too far right of the left border (as
though there were a space before the text). All of these
displacements can be "fixed" by widening the object.
The behavior is very annoying. FW this way is almost useless.
I'm using Windows the CS4. I don't believe I saw this behavior
until the recent updates. I am not a long-time FW user but am
accustomed to this type of software.

quote:
Originally posted by:
Tim Shundo
And for those who'll ask for proof (again):
http://www.timshundo.com/dpud/uploads/ugh.png
What happens when you try and change the text? It permanently
moves and shifts on it's own into seemingly random places.
KJLDSHFLKJDSF.
Thanks, Tim.
I posted this behavior to Adobe's feedback / bug mechanism
just after starting this thread. I had a good exchange with what
I'd guess is a QA person Thursday. I shared screen pics showing the
displacement between frame and text; they seem to accept this is
real. Switching on grids and snap to grid, then moving a text
object left and right repeatedly, is a way to reproduce the
behavior. But it takes some work. I've had no word since Saturday.
Toggling bold or some other attribute seems to snap the text
and frame back into sanity.

Similar Messages

  • Illustrator File Will Not Open -  Error message "Object label badly formatted"

    I have been working on a large image file for one of my classes; it has many layers and custom swatches, no text. I work on Creative Cloud at home, CS6 at school, and I think I had my .ai file saved under legacy file format CS4 trying to be safe (because I was not sure of my school's version and I have had a lot of problems accessing my files at school because of the version differences). I have been working on it back and forth between computers for quite a while, and today--while I had the image on my computer recently--it says "Acrobat PDF File Format is having difficulties: Object label badly formatted" if I try to open it.
    I have tried: updating Adobe Illustrator; creating a new AI document and "placing" the file into it; opening the file in Acrobat (the file opened, which was a step...but it only showed a tiny portion of the artwork and left the rest blank. Under the tools, however, it still showed the image had 15 layers (under the layer menu)--and it had them marked them as "visible"--but there wasn't anything I could do to actually view them; I tried copy/pasting into illustrator from Acrobat; opening in Acrobat and "saving as" a PDF (it said "The document could not be saved. There was a problem reading the document (111)"; and I just did a system restore hoping that could exorcise the demons--but no such luck so far.
    Do you have any ideas? I would greatly appreciate any words of wisdom and support you might have...and chocolate.
    Thanks for reading this.

    We now understand the problem, and are testing a solution. Here's my current understanding of all the elements of this issue.
    CAUSE: The problem occurs in an interaction between Illustrator CS4, Suitcase Fusion 2 v13.2, and having an Illustrator document with one or more text boxes, containing text, which is *completely* off the artboard—not even the bounding box is touching the artboard. *Additionally*, there must also be at least one text box, with text in it, which is *on* the artboard (even so much as having the bounding box partly on the artboard is sufficient, again). When these conditions are met, saving the document *may* (but does not always) cause the problem.
    PROBLEM: Attempting to open an affected document in Illustrator CS4 fails, with an "object label badly formatted" error. The problem can occur with older illustrator documents opened in CS4, as well as native CS4 documents.
    UNAFFECTED: Despite any speculation in this thread, this problem does not affect Photoshop, nor has it occurred with any version of Extensis Suitcase older than Suitcase Fusion 2 v13.2, which shipped about eight days ago.
    SOLUTION: The problem should be resolved by a 13.2.1 dot release. Although things could be delayed if we find something unexpected in testing, we currently expect to have the fix available this week, probably tomorrow (Thursday).
    DOCUMENT RECOVERY: Extensis can fix any Illustrator CS4 document which exhibits this problem. For now, contact Extensis tech support if you need help with recovering any such Illustrator document. Be prepared to send tech support the affected Illustrator file(s). You can use the online contact form at http://www.extensis.com/en/support/contact_prod_support.jsp, or call tech support at 1-503-274-7030.
    Special thanks to the users whose suffering and detailed reports helped us figure this out!
    Regards,
    T
    Thomas Phinney
    Sr Product Manager, Font Solutions
    Extensis, a division of Celartem, Inc.

  • How to format a text object

    Post Author: ftpaxa
    CA Forum: Other
    I use a SQL server DataBase on Windows server 2003 with service pack 2. i use Crystal Report 10 with ODBC connection. I read that the nice DLL is "Crdb_odbc.dll".I saw a VB code "How to format a text object" on this site :http://technicalsupport.businessobjects.com/KanisaSupportSite/search.do?cmd=displayKC&docType=kc&externalId=crxiTechrefenpdf&sliceId=&dialogID=7686352&stateId=1%200%207680692--' Create a new instance of the report.Dim oReport As New CrystalReport1Private Sub Form_Load()' Declare a TextObject object.Dim oTextObject As CRAXDRT.TextObject' Declare a generic Object.Dim oObject As Object' Declare a Section object.Dim oSection As CRAXDRT.Section' This variable is set to true once the' text object is found.Dim bText As BooleanbText = False' Search for all the report objects in each section.For Each oSection In oReport.SectionsFor Each oObject In oSection.ReportObjects' Find the first text object.If oObject.Kind = crTextObject Then' Get the text object and exit the loop.Set oTextObject = oObjectbText = TrueExit ForEnd IfNext oObjectIf bText Then Exit ForNext oSection' Format the text object and change the text.With oTextObject.BackColor = vbYellow.BorderColor = vbRed.BottomLineStyle = crLSDoubleLine.CanGrow = True.CharacterSpacing = 125.CloseAtPageBreak = True.FirstLineIndent = 25.Font.Italic = True.Font.Bold = True.Font.Size = 14.HasDropShadow = True.Height = 900.HorAlignment = crLeftAlign.KeepTogether = True.Left = 200.LeftIndent = 750.LeftLineStyle = crLSDashLine.MaxNumberOfLines = 16.RightIndent = 250.RightLineStyle = crLSDotLine.Suppress = False.SuppressIfDuplicated = True.SetText "Hello World".TextColor = vbBlue.TextRotationAngle = crRotate0.Top = 25.TopLineStyle = crLSSingleLine.Width = 3000End With' Set the report source of the viewer and view the report.CRViewer1.ReportSource = oReportCRViewer1.ViewReportEnd SubSo, i would like to do the same thingswith winbatch language. I tried this code :;Get CrystalRuntime Application Object HandleobjCra = ObjectCreate("CrystalRuntime.Application");Logs on to on or more SQL servers or ODBC data sources.objCra.LogOnServer("Crdb_odbc.dll","Magic","xxx","xx","zzzz") ; ("DLL file", "Server", "dbname", "username", "password"); open the saved reportobjReport = objCra.OpenReport("C:\Download\Perso\Programmation\Winbatch\Crystal Report\Final\rapport exploitation - abend.rpt")objReport.DiscardSavedData()TxtObj = objReport.Sections("PHb").ReportObjects("Text11")txtObj.Text = "testing" ; *** Error on this line : 1266: Ole:Bad Param Count;Export htmlPathHTML = strcat("C:\Download\Perso\Programmation\Winbatch\Crystal Report\Final\Resultat\rapport exploitation - abend.htm")hfile = PathHTMLcre = crr.ExportOptionscre.DestinationType = 1 ; diskfilecre.FormatType = 32 ; 24 = (HTML 3.2 standard), 31 = (PDF), 32 = (HTML4.0) cre.HTMLFileName = hfilecrr.Export(BOOL:@false)objectclose(cre)objectclose(objReport)objectclose(objCra)exit--
    Everythings work good except this linetxtObj.Text = "testing" I receive this error :1266: Ole:Bad Param CountI may be don't have the nice recipe. If you have a solution, it is welcome.

    Post Author: KAM
    CA Forum: Other
    Try using SetText.  Thanks.

  • Help : Regarding text object

    Hi All,
    Scenario :
    We have text object in XK02 transaction. at the time of save in user exit i want to check the changes occured in the text of that text object. can you please suggest how to get value of text object before saving. bcoz using FM READ_TEXT i am getting the newer value of text object, but i want to get old value (before change).
    Please suggest your thought.
    Thanks and Regards,
    Sahir Vhora

    sahir,
    check the triggering point of your user exit.
    make sure to use a exit/BADI which triggers right after you press 'SAVE'
    thank you.

  • Illustrator CS4 error: Object label badly formatted?

    has anyone received an error in illustrator CS4: Acrobat PDF File Format is having difficulties. Object label badly formatted? I am ON a mac and cannot open files after this error, help?

    We now understand the problem, and are testing a solution. Here's my current understanding of all the elements of this issue.
    CAUSE: The problem occurs in an interaction between Illustrator CS4, Suitcase Fusion 2 v13.2, and having an Illustrator document with one or more text boxes, containing text, which is *completely* off the artboard—not even the bounding box is touching the artboard. *Additionally*, there must also be at least one text box, with text in it, which is *on* the artboard (even so much as having the bounding box partly on the artboard is sufficient, again). When these conditions are met, saving the document *may* (but does not always) cause the problem.
    PROBLEM: Attempting to open an affected document in Illustrator CS4 fails, with an "object label badly formatted" error. The problem can occur with older illustrator documents opened in CS4, as well as native CS4 documents.
    UNAFFECTED: Despite any speculation in this thread, this problem does not affect Photoshop, nor has it occurred with any version of Extensis Suitcase older than Suitcase Fusion 2 v13.2, which shipped about eight days ago.
    SOLUTION: The problem should be resolved by a 13.2.1 dot release. Although things could be delayed if we find something unexpected in testing, we currently expect to have the fix available this week, probably tomorrow (Thursday).
    DOCUMENT RECOVERY: Extensis can fix any Illustrator CS4 document which exhibits this problem. For now, contact Extensis tech support if you need help with recovering any such Illustrator document. Be prepared to send tech support the affected Illustrator file(s). You can use the online contact form at http://www.extensis.com/en/support/contact_prod_support.jsp, or call tech support at 1-503-274-7030.
    Special thanks to the users whose suffering and detailed reports helped us figure this out!
    Regards,
    T
    Thomas Phinney
    Sr Product Manager, Font Solutions
    Extensis, a division of Celartem, Inc.

  • Acrobat pdf file format is having difficulties. Object label badly formatted.

    I'm using Adobe Illustrator CS5 on a PC (Windows XP)
    When I try to open one particular file, I get the following message:
    "Acrobat pdf file format is having difficulties. Object label badly formatted."
    I've seen some discussions about this error msg previously, but only when using CS4, and everyone was referring to some type of "suitcase fusion", which I am not using.
    Any help that you can provide would be greatly appreciated

    I created the file in Illustrator CS5 and saved it as an .ai file.
    It does not open in Acrobat or Reader... not sure what other programs you think I should try?
    It's basically a bunch of lines and some text... the text is a Font that we use here at the MTO (FHWA)
    This is the first time I've ever had this problem.
    The weird thing is if I try to open the file in Illustrator by clicking "File", then "Open..." and then highlight the file in the "Open Dialog Window", I can see a preview of the file.  But then when I finally click "open" in the dialog window, I get that error message?

  • Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests. The http status code and text is 400, Bad Request.

    Hi All,
    I am seeing the following error for SMS_AWEBSVC_CONTROL_MANAGER component with Message ID: 8100
    Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests.  The http status code and text is 400, Bad Request.
    awebsctl.log file has below errors:
    Call to HttpSendRequestSync failed for port 80 with status code 400, text: Bad Request
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    AWEBSVCs http check returned hr=0, bFailed=1
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    AWEBSVC's previous status was 1 (0 = Online, 1 = Failed, 4 = Undefined)
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    Health check request failed, status code is 400, 'Bad Request'.
    SMS_AWEBSVC_CONTROL_MANAGER 12/22/2014 3:37:55 PM
    13920 (0x3660)
    Management point and Application Catalog Website Point are installed on the same Server where I am seeing the error for Application Catalog Web Service Point role. Management Point and Application Catalog Website Point are functioning properly. Application
    Catalog Website is working.
    Thanks & Regards, Kedar

    Hi Jason,
    Application Catalog Web Service Point and Application Catalog Website Point; both are installed as per below configuration on same Server:
    IIS Website: Default Web Site
    Port Number: 80
    with default value for Web Application Name configured.
    For SMS_AWEBSVC_CONTROL_MANAGER component, I am getting below error in Component Status:
    Application Web Service Control Manager detected AWEBSVC is not responding to HTTP requests.  The http status code and text is 400, Bad Request.
    Possible cause: Internet Information Services (IIS) isn't configured to listen on the ports over which AWEBSVC is configured to communicate. 
    Solution: Verify that the designated Web Site is configured to use the same ports which AWEBSVC is configured to use.
    Possible cause: The designated Web Site is disabled in IIS. 
    Solution: Verify that the designated Web Site is enabled, and functioning properly.
    For more information, refer to Microsoft Knowledge Base.
    And awebsctl.log has the below error lines:
    Call to HttpSendRequestSync failed for port 80 with status code 400, text: Bad Request
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    AWEBSVCs http check returned hr=0, bFailed=1
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    AWEBSVC's previous status was 1 (0 = Online, 1 = Failed, 4 = Undefined)
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    Health check request failed, status code is 400, 'Bad Request'.
    SMS_AWEBSVC_CONTROL_MANAGER
    12/23/2014 11:04:36 AM 16388 (0x4004)
    STATMSG: ID=8100
    What should I check from IIS side?
    Application Catalog Website is functioning properly.
    Thanks & regards,
    Kedar
    Thanks & Regards, Kedar

  • How to create a text object at runtime?

    Hi,
    I am using crystal reports for visual studio 2010 and using c# to programming.
    I need to create  a text object in a specific section like section 2. and also I need to control the text object's position and text.
    I tried to move a object like:
    reportDocument1.ReportDefinition.Sections[j].ReportObjects<i>.Left = 0x8760;
    but object's position doesn't change at all.
    How can I do these (create a text object and change a object postion)?
    Thanks

    Hi Don,
    Thank you.
    I have downloaded a RAS ( report application Server ) sample.
    The sample uses the Business Objects Enterprise XI release 2. I am using win 7 and crystal reports for vs2010. Can I use this version of crystal reports to create  a text object at runtime? If not, what is the lowest version I have to purchase to achieve what I want?
    Basicly I need following capabilities at runtime:
    1) craete text objects, line objects, image objects.
    2) change text object, line object and image object positions, sizes, values of text object. If can I like to be able to change font as well.
    3) supress objects, sections. 
    4) change section's height

  • How to make a text in a text object Bold at run time

    I would like to make a text in a text object Bold depends on a record value. how can I control that ?
    Edited by: Hagita1 on Jan 18, 2011 10:51 AM
    I found the solution-Thank you

    You should share your solution with the community.

  • How can I align a text object by the visible text and NOT by its bounding box?

    Illustrator CS4.
    I am trying to align some text to the center of the artboard. The bounding box is bigger than the text, so when I try to align it to the artboard it doesn't actually center align the artwork as I need it to. The text is needing to be aligned with another text object, so I can't just center align the text and then align to the artboard (which would eliminate the bounding box problem, I think). To make matters worse, the text I want to align has a stroke.
    The only way I know to currently align the text properly is to convert it to outlines. This is what I've done, but I need something better. I want to be able to have my illustrator file that has all editable text and then be able to make a separate identical file with all text converted to outlined paths. The only thing holding me back right now is that I can't get the exact alignment while everything is still as text.

    The solution is to simple to believe and probably why you over looked it.
    You make two text frames to exactly the height and width of the text. You position the text in the relative location and then group the text frames  then center that group on the artboard.
    Like such:
    If you ever want to add text that should be no problem but you have to re center.

  • Text ID  for text object MATERIAL does not exist - MM01

    Hi All,
    I am getting below error message when trying to save Material Master in MM01.
    Text ID  for text object MATERIAL does not exist
    Message no. TD603
    Diagnosis
    You want to edit a text. However, the text ID (text type) of the specified text object does not exist.
    Procedure
    You can display a list of valid text IDs (text types) using F4=Possible entries. You can select the required text ID from this list with F2 or a double click.
    The valid text objects are listed in table TTXOB. The valid text IDs (text types) for an object are specified in table TTXID.
    I have searched the forums but couldn't get relevant message.
    Please assist.
    Thanks,
    Raj

    Hi Jurgen,
    This is the complete message i am getting.
    Text ID for text object MATERIAL does not exist
    Message no. TD603
    Diagnosis
    You want to edit a text. However, the text ID (text type) of the specified text object does not exist.
    Procedure
    You can display a list of valid text IDs (text types) using F4=Possible entries. You can select the required text ID from this list with F2 or a double click.
    The valid text objects are listed in table TTXOB. The valid text IDs (text types) for an object are specified in table TTXID.
    If I enter MM02 and without changing anything if i save still i get this error message.
    Thanks & Regards,
    Raj

  • Text ID for text object BUT000 does not exist

    Hi Experts.
    I am doing data migration using LSMW with IDoc. I have this error message "Text ID for text object BUT000 does not exist" when processing the IDoc.
    Can anyone tell me what is this error about and how could i fix it. A step by step guide would be nice. Really need advice urgently.
    I'll definitely rewards points.
    Regards,
    Julianna

    for this u need to maintain the text object and its related text id using the TC: SM31 in rel. view of  ur tcode( like MM01, Va01 etc).
    first get the view names(1 for text object and 2 for text id) from fun. people.
    then go to sm31 with 1 view, create BUT000 .
    then go to sm31 with 2 view, maintain text id for the text object:BUT000.

  • Error message while creating text object

    I am trying to create a text object and text id's for an application. I go to se75 to do this and make a text object called ZABC and upon save I get an informational message saying the following:
    Observe name ranges: Y,Z for customers, J_NC for partners, A..X for SAP
    When I click the green checkbox, it pops up another box saying the object is not within the valid name range. Save anyway?
    I tried creating one with Z_ABC and that came up with the same thing. What am I doing wrong here?
    Thanks,
    Josh

    Read the information message carefully. Then proceed, if you intend to have custom  "standard" texts (sort of an oxymoron, but everyplace I've been does this)...
    If you are working in a customer system, only create standard texts using the following naming convention:
    Initial letter Y or Z in the text name with any text ID
    or
    Initial letter Y or Z in the text ID with any text name

  • Can't add database field or text object to a report (new and existing)

    We have Crystal Report 8.5 and when trying to modify an existing report or create a new report, I can't seem to add any database fields or text objects in my report.  I get a prohibition symbol (circle with a backslash inside it) when I hover over the report.  Has anyone encoutered something like this? Any suggestions?  Thank you.

    Do you have two monitors?
    I had this problem if I tried to open crystal in the second monitor, move it back to primary monitor and it should be OK.
    Ian

  • How to drag the end of two text objects at the same time

    I have two seperate bits of text in a particular section of video. If I select the two text objects and drag the end left or right it only moves one. I I want to be able to drag the end of multiple things at the same time.
    I may be being dumb but cant find how to do it. Any solutions gratefully received.
    Best
    Tom B.

    Two stacked separate title clips or two text text boxes in a single clip?
    Russ

Maybe you are looking for

  • Quality of Display - Mac Vs Windows

    Am running WIndows 7 using bootcamp on m Mac and I have observed the difference in quality of display between Mac and Windows running on same machine. While working on Mac your eyes dont feel strained while in Windows its the other way round. Also th

  • Prob in adding my gmail account to the "Mail" app

    hai.. Recently i am facing a prob in using MAIL appliction in my Macbook Pro. As I changed my gmail password using other device which I was using in MAIL app, now am not able to login using any( new / old) password. Please help me in this!

  • Insert

    how insert a image (GIF,BMP,etc.) in BD. Thanks

  • Global Variables Vs Form Library Package Variables Vs DB Package Variables

    I realise this question has been asked a few times with varying degrees of answers, but I am still seeking comment/advice from others. I am aware of following options for retaining persistent data to share between forms. 1. Package variables in a lib

  • How to delete "on the go" folders

    how do you delete "on the go folders" from the nano?