Interactive Button Labels

Hi All,
Has anyone tried to Get / Set the Labels of Interative Buttons in InDesign CS4 through Plug-in.
I am able to acheive the same through JavaScript but would like to handle through Plugin, as from plugin I have to call the JavaScript.
If anyone knows how to do this please do let me know.
Thank you all in advance.
Regards
Farzana.

Farzana is probably talking about interactive/form button page items, aka kPushButtonItemBoss.
Script labels are retrieved via IScriptLabel (base class(!) of IScript).
For a setter util, search the forum (past december) for "SetScriptingTag".
There are also the "name" kFormNameAttrBoss and "description" kFormDescriptionAttrBoss attributes, e.g. reachable via IID_IGRAPHICSTYLE_DESCRIPTOR on the object, or IGraphicAttributeSuite.
Dirk

Similar Messages

  • Interactive Button and Missing Label

    I created an interactive button in ID CS3 and ID CS4 for Mac. Above the button is a text label that reads "create." The button is programmed to go to the next page. When I Export to PDF the button works fine but the "create" label doesn't show up. Even putting the label on its own higher layer doesn't help. Neither does turning the text into outlines. Anyone know of an ID workaround, or must I create the label in Acrobat? Thanks.

    Does this help?
    http://indesignsecrets.com/pdf-export-problems-toggle-tagged-pdf-on-and-off.php
    Bob

  • How I can see my interactive button on a tablet or smartphone?

    Hey folks - sry for my english...
    How I can see my interactive button, created in InDesign CC on a tablet or smartphone. It runs well on the computer but on tablet or smartphone i can't see the button. I save the InDesign file as Interactive PDF but it seems, there must be other things to know. Would be great you guys could help me :-)
    Greets!

    Moving this discussion to Reader IOS
    Regards,
    Ajlan Huda.

  • How can I change the color of interactive image label box background.

    Interactive image labels are a bit overwhelming in appearance. Can I change the label background color or make it partially transparent? I have tried several things and looked this up on Lynda.com training but no info.

    don't know how much this might help but you can change some colors using the Inspector as follows:
    from the text menu you can control paragraph and character colors, from the text menu you can control the text color.
    hope this helps...

  • Interactive button in PDF file doesn't work with Adobe Reader for Mac nor Acrobat Pro

    Hello!
    I've to use a interactive form which has an interactive button that is supposed to send that form by email. If I open that PDF with my iPhone or iPad with the PDF Expert App, it works perfectly, but for any strange reason, when I try to open that same PDF in my Mac with Adobe Reader or Acrobat pro, that button doesn't do anything.
    Can this be a configuration error?
    Thanks!

    The problem is deeper than that. It's not reader. Now the same form I was creating in LifeCycle Designer ES2 yesterday, with the actions working perfectly, no longer work. None of the actions are working.
    Could it be realted to me trying to set the default version compatibility to Adobe 7. It gave me warnings, so I set it back to 9.
    Any help would be appreciated.

  • Trying to assign an XML attribute value to a button label

    I have a Flex app (developed in FLEX 2) that reads from
    multiple XML files and populates datagrids with element values.
    What I'm trying to do now, is to create a second column with a
    button, enabling users to view archived versions for each current
    report.
    My problem is: I can't get the <mx:Button> label to
    accept the attribute "name". I've tried atleast 10 - 20 different
    syntax.
    My XML file looks like this:
    <metrics>
    <report name="test">
    <link>test Report 10/28/2008</link>
    <url>test-10_28_2008.zip</url>
    <status>active</status>
    </report>
    </metrics>
    The mxml looks like this:
    <mx:Button buttonMode="true" useHandCursor="true"
    click="handleClick()" label="{data.@name}" width="80">
    <mx:Script>
    <![CDATA[
    public function handleClick():void{
    var url:URLRequest = new
    URLRequest([L=http://new.test.com/pages/r_archive_apps/"+data.link+".html");[/L]]http://n ew.test.com/pages/r_archive_apps/"+data.link+".html");[/L][/L]
    navigateToURL(url,"_blank");
    ]]>
    </mx:Script>
    </mx:Button>
    When I try to label a button with an element it works fine.
    Some of the other sytax I've used are:
    - label="{data.report.@name}"
    - label="{data.report.(@name=='test')}"
    - label="{data.report.(@name='test')}"
    - label="{data.@name}"
    - label="{data.metrics.report.@name}"
    - label="{data.metrics.report.(@name=='test')}"
    - label="{data.metrics.report.(@name='test')}"

    quote:
    Originally posted by:
    rtalton
    Can you post some code so we can see how you are using the
    button? I think you may be using the button within a datagrid
    itemRenderer, which might make a difference.
    You're right, the button is in a datagrid itemRenderer. I've
    pasted more dataGrid code below - thanks again.
    <mx:DataGrid id="dgCatalog" dataProvider="{_xlcCatalog}"
    rowCount="4" editable="false" sortableColumns="false"
    left="148" top="65" bottom="42" borderStyle="solid"
    alternatingItemColors="[#ecf8ff, #ffffff]"
    themeColor="#ffff80" alpha="1.0" cornerRadius="0"
    dropShadowEnabled="true" dropShadowColor="#000000" width="549"
    creationCompleteEffect="{glow3}">
    <mx:columns>
    <mx:Array>
    <mx:DataGridColumn editable="false" headerText="Daily -
    Report Names" dataField="link" textAlign="left" width="200">
    <mx:itemRenderer>
    <mx:Component>
    <mx:LinkButton click="handleClick()" label="{data.link}"
    >
    <mx:Script>
    <![CDATA[
    public function handleClick():void{
    var url:URLRequest = new URLRequest("
    http://test.new.com/test/"+data.url);
    navigateToURL(url,"_blank");
    ]]>
    </mx:Script>
    </mx:LinkButton>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    <mx:DataGridColumn editable="false" headerText="Daily -
    Report Archives" dataField="link" textAlign="left" width="80">
    <mx:itemRenderer>
    <mx:Component>
    <mx:Button buttonMode="true" useHandCursor="true"
    click="handleClick()" label="{data.report.@name}" width="80">
    <mx:Script>
    <![CDATA[
    public function handleClick():void{
    var url:URLRequest = new URLRequest("
    http://test.new.com/pages/test_apps/"+data.link+".html");
    navigateToURL(url,"_blank");
    ]]>
    </mx:Script>
    </mx:Button>
    </mx:Component>
    </mx:itemRenderer>
    </mx:DataGridColumn>
    <!--mx:DataGridColumn headerText="URL" dataField="url"
    width="350"/>
    <mx:DataGridColumn headerText="Status" dataField="status"
    width="70"/-->
    </mx:Array>
    </mx:columns>
    </mx:DataGrid>

  • CS2+ JS -- convert item to interactive button

    Hi everyone:
    I was wondering if anyone had a script for converting multiple text boxes into interactive buttons in InDesign that will work in a PDF file?
    I'm primarily using CS2, but I do have access to CS3 and CS4 as well.
    Thanks!
    Theresa

    Hi Harbs:
    Could you please help me out with a script to perform that task?
    I'm current using JS on CS2.
    I need to add a hyperlink to several text boxes that are anchored in text.
    Thanks!
    Theresa

  • Interactive buttons in InDesign - for an iPad

    Hello!
    For a University project, I have an assignment of pairing up with someone and creating a childrens e-book. Thing is, we've not had that long on it due to other deadlines, and the deadline for this project is this coming Friday (22nd).
    We've created the layout of the e-book but the thing is, the buttons work on the Preview window box in InDesign, but it doesn't when using the Adobe Content Viewer app on an iPad - the assignment is creating the document for an iPad.
    It's apparently because the buttons use Flash, and iPads dont support that.
    We got given some artwork, and want to create a button/interactivity where the reader (a 3-6 year old?) needs to find a certain animal on the page, and then once they do, they need to tap it, in order for a fact to appear about it.
    E.g...
    This is one of the pages/screens. It tells the reader to find the seagull. Easy, I know, but when pressing onto the seagull, we want it to come up with the fact. The red box around the seagull is a button, and the box towards the top right of the seagull is the fact box which is activated after selecting the seagull.
    It works fine in the InDesign preview tab... This was after clicking on the seagull, which resulted in the box appearing...
    I've watched a video on the Adobe website about some converter from FLASH to HTML5 programme called Wallaby Technology Preview, but it didn't work with that. The person had a moving animation though I suppose, and not buttons.
    Something like a pop-up message would work in iBook Author but it needs to be created using InDesign. (This version i'm using is 5.5)
    Many Thanks!

    The popup panel (text description) would be your multiple state object. It can be an ordinary element, it does not need to be turned into an interactive object. Select the popup frame, and in the Object State panel flyout, select "New State". This will create an Object (you can name this) with two states. Select State 1 and colorize the frame and text to none (for the invisible state). Leave State 2 as is (for the visible state). Make the seagull art an interactive button. Then select your event: "On Click" and Action "Go to State" and Object "Popup Panel" and State "State 2"

  • Left Arrow Interactive Buttons in InDesign CS5.5 Backwards type

    Does anyone have a solution to the backwards type that appears in all left or previous page arrows in the InDesign Interactive Button Section?
    Is this a glitch in the software. It seems the left buttons were created by flopping the right arrows...thus the backwards type. I try to flop the type...but the whole button flips.
    Any work-arounds to this?
    Thanks.

    Are you talking about buttons from Sample Buttons library panel? You probably have tried to insert some text to graphic frame that creates the button´s appearance? I don´t know if that´s a good idea....
    How about converting button to object, adding text, groupping object+text and converting group to button again... and re-creating the action?
    Or another possible way would be write the text to it´s own separate frame outside of the button, put it to correct place onto the button and then drag it into the button´s Normal/RollOver states with Layers panel or use Cut/Paste Into commands.

  • Interactive buttons not working on interactive pdf when the Indesign links are set correctly

    Hi all,
    I have one Indesign CS6 manual containing 17 files, 126 pages. This has been set to a book file.
    This has been translated into 14 languages and now we are having problems creating the interactive pdfs.
    After fixing the broken interactive buttons within the Indd files, we are finding that when we create the interactive pdfs, not all interactive button links work. When we recreate the same langauge interactive pdf we are finding that the buttons that were not working the 1st time, are now working, and some buttons that were working, are now not working.
    Is there a bug somewhere.
    Any idea why the interactive buttons work one minute and then not the next, and vice versa.
    Any idea how we can fix.
    I’m using Indesign CS6 and Acrobat 9 Pro.
    Thanks in advance.

    Hi LoriAUC,
    Thanks for this. Very much appreciated.
    I have asked sagar-khanna from the other discussion is he knows more about the broken links etc.
    Thanks again.
    Julie :-)

  • Indesign CS6 - Interactive Buttons - Destination links changing when opened on another computer

    Hi,
    I have encountered a bit of a problem with Indesign CS6.
    I have a customer who has created an multi-chapter Indesign file which has interactive buttons within the each chapter in the book. These buttons are linking to each chapter. E.G., Buttons on the first page in chapter one, might link to the first page of Chapter three. This has been done by setting a destination, to the file and specifying the page number within the Interactive elements dialogue box. The client has created an interactive PDF out of this.
    When I have opened the file on my side, all of the interactive destination elements have reverted to Page 1 of Chapter 1 in every single chapter (this is the first file in the book). Obviously, this means me relinking all of the locations again (there are over 2000 in the file that would need to be fixed).
    Now, I am opening the file on a Windows PC in Windows 7 using CS6. However, the client has created the files on a Mac. Which could potentially be an issue maybe (I am testing this).
    However, has anyone experienced this before, and is there a workaround?
    James

    Hi LoriAUC,
    Thanks for this. Very much appreciated.
    I have asked sagar-khanna from the other discussion is he knows more about the broken links etc.
    Thanks again.
    Julie :-)

  • How to add image as radio button label instead of text

    In a pure AS3 project, is there a way to add use an image placed in the library/ Flex/AIR SDK compiler path instead of text as a radio button label?
    I've tried substituting character may unicode like:
    rb1.label = String.fromCharCode("0x2592");
    But how this displays is dependent on the device, font character availability. Displays unpredictably.
    Would prefer anyway to use an image that I can create in AI.
    Any help appreciated.

    OK. I tried this, and it works.
    (Hopefully, the image will display in the same location, next to the radio button, on different devices.)
    Thank you.

  • Delete interactive buttons on all pages

    Hello,
    I'm new here, and I'm from Germany, so I apology in case for any missunderstandtings.
    The Problem:
    I have a PDF with like 1000 pages. On every page, there are interactive buttons like "Next", "Previous", "Contact" and so on...
    Now I'd like to delete the "Contact" button only, on every page in the document - in one single hit. All the contact buttons have the exact same settings, they have been duplicated throughout the whole document. So the button should be the very same on every page.
    There must be a way to delete all of them Contact buttons again - in one hit. So just like saying "duplicate onto all pages" I would just like to say "delete this button on all pages".
    Is there a Javascript code to handle it? Or any other way?
    Just to say it again: In one hit means all at the same time. I do not want to go through every page highlight every Contact button and then delete. That would take me ages for 1000 pages. And I have several dokuments to do that in...
    THANKS FOR ANY KIND OF HELP
    Using Adobe Acrobat Xl Pro
    Document createt in Xl Pro, not in Indesign.

    Sort the fields in the list alphabetically, not by page number, and then
    they should all appear one after another. If they have the same name they
    should even appear under a single item in the list, which you can select
    and delete with a single click.
    On Wed, Oct 16, 2013 at 12:30 PM, Thunderstruck200 <[email protected]

  • Interactive Buttons in PDF not working when in iPhone

    Hello!
    I used CS3 to turn an InDesign document into an interactive PDF with buttons. It works just fine in a computer, but when I tried to view it in an iPhone, all interactive buttons are gone. Does anyone know why? Thanks! Here's the link for the PDF so you can try to view it on your own iPhones:
    http://www.cgu.edu/PDFFiles/Creative%20Service%20PDFs/Visitors%20Guide/VisitorsGuide2010B- Web.pdf

    Unfortunately there are no pdf reader which support this on neither the iPhone or the iPad.
    You have to create an App or rely on the limited functionality of the the pdf readers.
    I would like to see a pdf reader for the iPone, iPad ios supporting InDesign buttons and basis interactivity.
    :-) Nina Storm

  • Adding interactive buttons in Acrobat X Standard disables the Commenting and markup tools

    Why does adding interactive buttons to PDFs in Acrobat X Standard disable the Commenting and markup tools in the PDFs, but only when they are viewed in the Reader, not when opened in Acrobat?  When the buttons are removed, the Commenting and markup tools are re-enabled in Reader.
    Thank you.

    Which version of Reader are you testing with?

Maybe you are looking for

  • F110 payment only possible 8 days after net due date, why?

    Hi all, When we try to post a payment in F110 by choosing a next p/date as for example 24 April all invoices with net due date up to that date will be included. In payment proposal only invoices with net due date up to 15 April is included, not invoi

  • Multiple select list selected options

    Hello ; how can i get the selected options of my multiple selected List Thankyou

  • Product-ID mandatory in RFQ and Contract

    Hi SRM-gurus. Is Product-ID (material master) mandatory in order to create Quotations and Contracts from Sourcing? Also, can you create backend contract without material master and/or item category "W", or are there any limitations related to contrac

  • Enhancing tabstrip for asset master

    Hello, I need to create an extra tab in a tabstrip control in Asset Master (tcode AS03). To that tabstrip I have to add 4 fields, the struture for which was already defined in customer include (CI_ANLU). Fields in CI_ANLU: ZZACQMETH ZZMOVATT ZZCUSTOD

  • Restrict Access for Asset with Ubuntu

    Hello guys, now i have a problem for you and i hope, that you could help me. The ArtBox have some problems on my ubuntu system. The error message shows me "Restrict Access for Asset". Can somebody give me some tips, how the error could be recognize o