SLM (Service)
Recently active
How to create link from intelligent graphics to table? Requirement is click a part in intelligent graphics highlight the part number in table.Intelligent graphics - Creo View PVZ file.
Where can we control the background color of a web publised content. I also want to change some attributed of the banner picture.
Hi Experts,I am not able to download Evaluation License File as it is showing this message "The Web Page , Arbortext Editor with Styler 6.1 Free Trial Evaluation, was retired on 13 June, 2015 "I have created my account on 13/07/2015 .Guys please help me with this.Thanks in Advance.
Hello Arbortext A&D Users,The Arbortext for Aerospace and Defense (S1000D/S2000M) Solution, version 4.4 M110 is now available on the PTC software download site for download (https://support.ptc.com/). Congratulations to all who worked on this release within PTC, and I hope that our customers find the new solution valuable. A full set of release notes is available on PTC.com that describes the content of this release.Thank you,Ian BoultonSr Director, SLM Solution Mgt
HI Team, I have created one new popup menu by referring Helping Center, I called this in one of the function where that I want to be invoked,I loaded one xml document in the Arbortext Editor to check, for example <simple> <para>hellow john ho are u</para> </simple>when I loaded and click on some "X" menu that checks and colors all misspell words in the document, when I right click on colored text(hellow) my new custom popup menu display with some suggestions this is working as expected
Hi FOSI gurus--I have a FOSI issue I'm trying to sort out. In my document I need to have dynamically set footer information. I'm doing this by embedding a processing instruction containing the desired content at publishing time, and my stylesheet can pick up the content of the PI and stick it in the footer. With plain text content, this all works just fine, e.g.:<?footer This is important information that should appear in the footer><document><title>Important document</title>...etc.So far so good. But, I would also like to be able to support markup in that string (escaped for the PI encoding). For example, I'd like to be able to support having a <?Pub _newline> in there, something like this:<?footer This is important information&lt;?Pub _newline&gt;that should appear in the footer><document><title>Important document</title>...etc.so the footer would be rendered like so:This is important informationthat should appear in the f
Hi folks—For those of you who may not have stopped to read these messages from PTC/USER, or who may not have caught the implications, here is the summary:PTC/USER is shutting down the server that runs the Adepters email list.Their idea is to migrate all the PTC/USER discussion groups to the PTC-hosted PTC communities system. For those who haven’t used that system before, it’s kind of like Facebook for PTC users. They do have a dedicated area there for discussions of Arbortext related questions and issues, and that area does see a decent amount of traffic.Since PTC/USER are shutting down their system, keeping Adepters running as-is will very soon not be an option. Going forward, some of us have talked about a few alternatives:1) Follow PTC/USER’s suggestion and migrate to the PTC Community Arbortext board for Arbortext related discussions. The upside to this is that we get to integrate our community with the Arbortext user community over there (which has some overlap, but also some othe
In the presentation this morning on the new Arbortext 7.0 version, two questions1. Will Arbortext 7.0 work with Arbortext Content manager or just with Arbortext SIM2. Will 7.0 work with ACM, but some of the new features mentioned as working with SIM will not work if you have ACM.If I want to upgrade to AT 7.0 then will I have to upgrade my ACM to PDMlink/SIM. I will need to know as we start budgets for next year very soon and I would have to include these costs.Ray
Hi all,I have, what feels like it should be, a fairly common use case that I'm having difficulties implementing. An Author working in Arbortext Editor creates content. At various points s/he will save the work in progress content to Windchill (using WC Integration) - leaving the content checked out. Not until Author has completed his/her assignment will they check-in the document. This final act of checking in, should trigger the next stage in the process - the Review. The customer does not want the Author to have to go into WC to trigger the Review step.The problem that I'm having is that the workflow is being started once the document is first uploaded to WC and a dynamic document object created. It appears that the WC Adapter is performing a check-in/out in the background. I could have a "submit" activity assigned to the author but... this involves the user progressing it by going into WC.Has anyone had to implement a similar use case? Is there some OOTB feature(s) I could use? Any
Hey folks,I'm trying to assign the number field to an attribute in Styler, but the number is not coming out on the page in the number field. It's coming out prior to the label and I'm still getting the page number from the PDF. I've attached a screen cap of the configuration in Styler.Here is what I think I should be output.Introduction.............................%@my_attr value%Instead, I get this...%@my_attr value%Introduction..............%pgnum%Has anyone seen this before or is there a problem with my configuration?Thanks,-Jeff
Hi, Could any one please help why the below exception is coming when a menu is clicked in ArborText Editor. [A30135] Cannot load class CustomMenu because a dependent class was not foundCustomMenu is my custom class and it has some dependent jar files with folder contains some dependent class. I kept my CustomMenu.class and jar in the path \Arbortext Editor\custom\classes \Arbortext Editor\custom\classes\CustomMenu.class \Arbortext Editor\custom\classes\custom.jar \Arbortext Editor\custom\classes\org(this folder contains dependent class files for CustomMenu)After applying this I started ArborText Editor and I clicked my Menu , I am getting ([A30135] Cannot load class CustomMenu because a dependent class was not found), error at the bottom of the Edito
Is it possible to have multiple stylesheets for one document? If it is then how can I do that?
Recently i am facing problems with isodraw 7.3, when we are working on illustrations suddenly the center lines disappear. if i 'zoom in' or 'zoom out' the center lines appears and disappears. Graphics could be the problem? Help me solve this issue.Aravind
twowaymetadatarule doesnt support for graphic object ,but PTC Server system attributes can be pulled into XML documents via ACLBelow is the Logic implemented:init.aclfunction initialize() {utils::initHooks();}initialize();utils.aclinitialize callbacks to handle CMS session handlefunction Callbacks() { sess_add_callback(SIM_SESSHDL, "checkin", "utils::checkin_callback"); sess_add_callback(SIM_SESSHDL, "create", "utils::create_callback");}function checkin_callback(dobj, docid, ud) {local firstoid = dobj_first_oid(dobj);local checkindoc = oid_doc(firstoid);graphicnumber(checkindoc);doc_save(checkindoc); return 0;}function create_callback( name, folder, opts, first, last, version, objtype, ud ) { local doc = oid_doc(first); graphicnumber(doc); doc_save(doc); return 0;}function graphicnumber(doc){ // write your business logic to get windchill nosomething likelocal number = dobj_get_attr(imagedobj,"WC_NUMBER_ATTR");}
//APP Code in Image Tagvar href=imageNode.getAttribute("href");This gives me encoded value.For ex X-WC//=000000651.svg will give xwc_3D8234567821.svg ,some encoded value.So need solution to get original href value which is present in image tag attribute in xml.
twowaymetadatarule doesnt support for graphic object ,but PTC Server system attributes can be pulled into XML documents via ACLBelow is the Logic implemented:init.aclfunction initialize() {utils::initCMSHooks();}initialize();utils.acl initialize callbacks to handle CMS session handlefunction Callbacks() { sess_add_callback(SIM_SESSHDL, "checkin", "utils::checkin_callback"); sess_add_callback(SIM_SESSHDL, "create", "utils::create_callback");}function checkin_callback(dobj, docid, ud) { local firstoid = dobj_first_oid(dobj); local checkindoc = oid_doc(firstoid); graphicnumber(checkindoc); doc_save(checkindoc); return 0;}function create_callback( name, folder, opts, first, last, version, objtype, ud ) { local doc = oid_doc(first); graphicnumber(doc); doc_save(doc); return 0;}function graphicnumber(doc){ // write your business logic to get windchill no something like local number = dobj_get_attr(imagedobj,"WC_NUMBER_ATTR");}
I'm having trouble creating file entities on my abortext editor 6.0. When I want to create a new entity it says that I have an incorrect entity name. What does that mean? Which public id do I have to choose? Btw I'm using docbook.
Hi,I have tried to change the heigth of rows in a table with this FOSI code :<e-i-c gi="row<charlist inherit="1"><usetext source='!<?PubTbl row rht="0.33in"?>!'></usetext></charlist></e-i-c>But this code fails.Can you help me?David
We make extensive use of DITAVAL files in the documents for our product family. I am looking for a way for writers to be able to specify a value from a DITAVAL file on an element in a DITA topic.If I look at the Profiling tab of the Modify Attributes dialog on an element, the otherprops field is a selection field; it is not editable. Therefore, we seem to have only 2 options:Edit the DITA topic in an ASCII editor to add otherprops="xxxx" to an element, such as a paragraph element. I really do not want writers to edit DITA topics in an ASCII editor; that leads to all kinds of issues. 🙂Modify the ditabase.pcf to add the values specified in the DITAVAL file. This is an issue, especially if writers are working on multiple products. Each product has a completely separate set of DITAVAL values and they are not necessarily related.If the otherprops field in the Profiling tab was editable, that would seem to solve the issue because we could add the value (and specify t
I'm having trouble publishing my docbook to html. When I publish it as pdf it works but when I publish as html the page setup is totally different so I'm wondering how I can fix that.
Hi developers,I want to apply background color for particular tag with attribute (<dl ishcondition="output-type=content-in-pdf-only">). How can i achieve this using styler files?Thanks in advanceRoopesh N
Hi, As per my requirement I have changed the colored of a text and I need show popup when I right click on that colored text with some suggestions . Is there any functions or commands that I can use from ACL ?, Request to provide some help on this please. Please find the attachment for reference
HI Team, As per my requirement I have created new menus and sub menus on menu bar of ArborText editor, The actual requirement of mine is when I click on new menu then it should check the words presented on editor window with the data coming from some service , if the words are not matching then the non matching words should be colored(red). I am new to ACL , kindly do some need full help on this please.Thanks & Regards,Prashant
Hi,does anybody know if it is possible to define e.g. another colour for Processing instructions? Our customer use processing instructions, and sometimes users accidentely delete this pi's. Therefore we would like to define the pi's with red colour.Unfortunately we did not found anything in the Arbortext Styler to do this. We fear that this is not possible.Anybody an idea?Thank you in advance.
HI Team, Could any one please help on how to override existing popup menu in ArborText Editor , I want to show my custom misspelllist popu menu for non maintain words with some custom menus in stead of showing existing one for words that are not maintained in existing dictionary, With Regards,Prashant
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.