Object Export Options...

Would anyone know an easy way to access Object Export Options found in the Object menu of InDesign using a script?
More specifically, we currently have a script with a dialogue that adds alt text to images in a document and has other features that are almost identical to the InDesign Object Export Options feature, but with slight differences.  We are trying to synchronize so that when a user adds an alt text thru our dialogue using our script, that the alt text will be changed automaticly specifically under Custom heading in the Object Export Options.
I have found a similar example, at http://forums.adobe.com/message/5688491, but not quite what I'm looking for.
Any ideas?

Hi Andrew,
Do you need a script that will apply Alt Text as Custom type in Object Export Options for images in a document. Please find below script which does same thing:
myGraphics = app.activeDocument.allGraphics;
myTotalGraphics = myGraphics.length;
for(var i=0; i<myTotalGraphics; i++)
      myGraphics[i].parent.objectExportOptions.altTextSourceType = SourceType.SOURCE_CUSTOM;
      myGraphics[i].parent.objectExportOptions.customAltText = "Graphic Number : " + i;
Thanks
-Anshul

Similar Messages

  • EPub object export options CS6

    Hi,
    Is it true that it is not possible to set object export options as part
    of an object style?
    Ariel

    Thanks Steve.
    Seems a bit feeble.
    I'm thinking of writing a script, in that case. Select an object. Run
    the script. Select an object style from the list the script gives you.
    Click OK (or Done). Now all objects that have the selected style applied
    will have the object export options of the selected object applied to them.
    What do you think?
    Ariel

  • Export Options not displaying in Object Style Options panel

    Hi,
    I'm trying to create an object style for decorative images as artefacts and set that style for export to PDF, but in the Object Style Options panel the Export Options settings (which I've seen before, bottom left of the panel) are not displayed. Can anyone tell me how I can make them visible? I'm on InDesign CS6.
    Thanks, Ally

    Hi changilainen2,
    Yes, we are following Adobe Forum!!!
    Thanks for your inputs. Actually while implementing this feature we were bit confused if it is of more importance to have these options in the Object Styles. That's why you are finding it missing from there.
    But feedback from you and some other folks, made us realize that we should have it in object styles too.
    Thanks we'll try incorporating this in the feature.
    ~Monica.

  • How to restrict 'Broadcast and Export' option of BW report through web.

    Helllo,
    Please anyone let me know, how NOT to give/allow "Broadcast and Export' option in BW report, when accessed through Web.
    Is there is any Auhtorization object which restrictes this option.

    Hi,
    Please check this, it may help you.
    http://help.sap.com/saphelp_nw70/helpdata/en/80/1a68b4e07211d2acb80000e829fbfe/frameset.htm
    Regards,
    Madhu

  • ReportViewer 2010:how to hide pdf in export option in subreports in reportviewer

    Hi,
    I am using ReportViewer 2010 and using code (posted below) to hide certain options from export, its working fine for parent report,  but when i am clicking on parent report to view child report, then export option in child report is showing all the
    items in export option which all are hided in parent report. So please help me out.
    private void DisableUnwantedExportFormats()
                FieldInfo info;
                foreach (RenderingExtension extension in rptviewerByBrandBySentimentAttribute.ServerReport.ListRenderingExtensions())
                    if (extension.Name != "PDF" && extension.Name != "ASPPT" && extension.Name != "ASPPTX" && extension.Name != "EXCEL" && extension.Name != "MHTML") // only PDF and Excel
    - remove the other options
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);
                        info.SetValue(extension, false);
                    if (extension.Name == "ASPPT") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2003");
                    if (extension.Name == "ASPPTX") // change "Excel" name on the list to "Excel 97-2003 Workbook"
                        info = extension.GetType().GetField("m_localizedName", BindingFlags.Instance | BindingFlags.NonPublic);
                        if (info != null) info.SetValue(extension, "PowerPoint 2007");
    neha

    Hi,
    Thank you for this article.
    I am using the localreport ReportViewer 2010 and other code examples weren't working.
    Apparently, the m_isVisible field was not available in earlier version of ReportViewer
                        info = extension.GetType().GetField("m_isVisible", BindingFlags.Instance | BindingFlags.NonPublic);                    info.SetValue(extension, false);
    Code that wasn't working:
                FieldInfo info = extension.GetType().GetField("m_serverExtension",            BindingFlags.NonPublic | BindingFlags.Instance);            if (info != null)            {                object actualExtension = info.GetValue(extension);                if (actualExtension != null)                {                    PropertyInfo propInfo = actualExtension.GetType().GetProperty("Visible");                    if (propInfo != null && propInfo.CanWrite)                    {                        propInfo.SetValue(actualExtension, false, null);                    }                }            }
    Thanks again, chupaul :)

  • Best Export Options for QT5 Viewing

    I run a site for Mac OS 7 users and want to upload some videos there in QuickTime 5 format (the latest version for Mac OS 7). I am working on a G4 running Tiger and QuickTime 7 Pro.
    What are some of your opinions on the best export options for QT5 viewing, distrubed over the internet, at say 320x240?

    Alas, the data rate of these two video codecs must be a lot higher (at least 25% more than the more modern codecs) to ensure a good visual experience.
    A neat html "trick" is to encode with these higher data rates but at a smaller dimension. Instead of 320X240 use 160X120. The smaller dimensions help keep the file size down. During html playback use the object and embed tag to scale="tofit" and enlarge the playback area.
    Your src (source) tag dimensions are larger than the original source file. Using scale="tofit" tags the file plays at the designated size instead of the original (160X120) size.
    The pages hosted for .Mac users (iWeb and Homepage) use the opposite tag (scale="aspect") that fit the source to the template of the page. One of mine as an example:
    http://homepage.mac.com/kkirkster/zoom/

  • ReportViewer 2010:how to hide pdf in export option in reportviewer

    please help me out 
    how shoul i hide pdf in export option in reportviewer
    susana w

    Hi,
    This is the code which is used for ReportViewer 2008 and i need code for ReportViewer 2010. I don't want to change in the reportserver's RSReportSErver.Config
    file because same report server we are using for different projects where in some projects we require pdf and some we do not. Below is the code for reportviwer 2008 where the export button is rendered as a dropdown and in reportviwer 2010, Export button is
    redered as div element and all the export options like pdf,word,etc elements are rendered as div elements . So in code behind how can i access these export button options?
       private void CustomizeReportViewer(System.Web.UI.Control reportControl)
                foreach (System.Web.UI.Control childControl in reportControl.Controls)
                    if (childControl.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
                        System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)childControl;
                        if (ddList.ToolTip.Contains("Export"))
                            ddList.PreRender += new EventHandler(ddList_PreRender);
                    if (childControl.GetType() == typeof(System.Web.UI.WebControls.Button))
                        System.Web.UI.WebControls.Button ddList = (System.Web.UI.WebControls.Button)childControl;
                        if (ddList.UniqueID.Contains("ctl00_ContentPlaceHolder1_rptviewerByBrandBySentimentAttribute_ctl06_ctl04_ctl00_Button"))
                            ddList.PreRender += new EventHandler(ddList_PreRender);
                    if (childControl.Controls.Count > 0)
                        CustomizeReportViewer(childControl);
            // This is the event handler added from CustomizeRV 
            // We just check the object type to get what we needed. 
            // Once the dropdownlist is found, we check if it is for the ExportGroup. 
            // Meaning, the "Excel" text should exists. 
            // Then, just traverse the list and disable the "Excel". 
            // When the report is shown, "Excel" will no longer be on the list. 
            // You can also do this to "PDF" or if you want to change the text. 
            void ddList_PreRender(object sender, EventArgs e)
                if (sender.GetType() == typeof(System.Web.UI.WebControls.DropDownList))
                    System.Web.UI.WebControls.DropDownList ddList = (System.Web.UI.WebControls.DropDownList)sender;
                    System.Web.UI.WebControls.ListItemCollection listItems = ddList.Items;
                    if ((listItems != null) && (listItems.Count > 0) && (listItems.FindByText("Excel") != null))
                        foreach (System.Web.UI.WebControls.ListItem list in listItems)
                            if (list.Text.Equals("XML file with report data") || list.Text.Equals("CSV (comma delimited)") || list.Text.Equals("TIFF file") || list.Text.Equals("Word") || list.Text.Contains("PPS"))
                                list.Enabled = false;

  • Problem in Creating the Transport using Export option on Portal

    Hi All,
    We have problem in creating the Transport Packaage using the Portal EXPORT option. Here are the details:
    When I tried to create a New Transport package on the Portal, It opens first page asking for the Package name, ID and suffix. After completing  the form, when NEXT or Finish button is clicked, the system goes on forever and does not show the next page at all.
    This is kind of Urgent as we were not able to transport the objects to QA system
    Your help in this reagrd will be well appriciated.
    Thanks and regards,
    Babu

    Hi All,
    We have problem in creating the Transport Packaage using the Portal EXPORT option. Here are the details:
    When I tried to create a New Transport package on the Portal, It opens first page asking for the Package name, ID and suffix. After completing  the form, when NEXT or Finish button is clicked, the system goes on forever and does not show the next page at all.
    This is kind of Urgent as we were not able to transport the objects to QA system
    Your help in this reagrd will be well appriciated.
    Thanks and regards,
    Babu

  • Excel Export Options Window

    I am using CR Basic with VB2008. Is there a way to display the Excel Export Options dialog when the user selects to export a report to Excel? I am wanting to do this through code, but is it even possible? This is the same dialog that pops up when you select to export a report to excel from within the IDE.
    Thanks,
      Steve

    The below, are the only exposed export option APIs:
    Private Sub ExportReportInExcel(ByVal reportDocument As ReportDocument, _
          ByVal fromPage As Integer, ByVal toPage As Integer)
          Dim myExportOpts As New ExportOptions
          myExportOpts.ExportFormatType = ExportFormatType.Excel
          Dim myExportFormatOptions As ExcelFormatOptions = _
          ExportOptions.CreateExcelFormatOptions()
          myExportFormatOptions.ConvertDateValuesToString = True
          myExportFormatOptions.ExcelAreaGroupNumber = 1
          myExportFormatOptions.ExcelAreaType = AreaSectionKind.Detail
          myExportFormatOptions.ExcelConstantColumnWidth = 9.5
          myExportFormatOptions.ExcelTabHasColumnHeadings = True
          myExportFormatOptions.ExcelUseConstantColumnWidth = True
          myExportFormatOptions.ExportPageBreaksForEachPage = True
          myExportFormatOptions.ExportPageHeadersAndFooters = ExportPageAreaKind.OnEachPage
          myExportFormatOptions.FirstPageNumber = fromPage
          myExportFormatOptions.LastPageNumber = toPage
          myExportFormatOptions.ShowGridLines = True
          myExportFormatOptions.UsePageRange = True
          myExportOpts.ExportFormatOptions = myExportFormatOptions
          reportDocument.Export(myExportOpts)
        End Sub
    The sample app vbnet_win_export.zip availbale from [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/CrystalReportsfor.NETSDK+Samples] may help.
    The InProc RAS has the property MaintainColumnAlignment in addition to what the CR SDK has which is probably the colsest to "Maintain relative object position"
    [This|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e041f772-9d3b-2c10-a790-e3ea083a3dce] is a RAS excel export sample app.
    Developer help file is [here|http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_dg_12_en.chm].
    API reference is [here|http://help.sap.com/businessobject/product_guides/boexir31/en/crsdk_net_apiRef_12_en.chm]
    The above are for Crystal Reports. RAS is at the following links:
    http://help.sap.com/businessobject/product_guides/boexir31/en/rassdk_net_dg_12_en.chm
    http://help.sap.com/businessobject/product_guides/boexir31/en/rassdk_net_apiRef_12_en.chm
    Ludek

  • Export options for IFS?

    Hi
    I was wondering if anyone could inform me about the export options of IFS.
    Basically I would like to be able to export IFS file objects back out as files, but then also export the file object's metadata, perhaps exporting those to an associated text file (e.g. with a similar filename to the exported file, but with a special extension).
    I can start writing this using java, making use of OutputStream and the like but I am wondering if there is something available already.
    Thanks
    Hugo

    try the ifsexportcontent.
    That takes the content and the meta data.
    Details in the admin guide.

  • Problems in Limiting Export option in Web Analysis shortcut menu options

    Hi everyone,
    i'm trying to limit the shortcut menù option in Web Analysis studio following the instructions in the WA 9.3.1 user guide: "Limiting Web Analysis Studio Shortcut Menu Options" page 293. Exactly i would hyde the Export to some users (an user with Viewer and Expoler permissions).
    The problem is that the solution does not work.
    Resuming:
    First, I have created the WAMenu.xml file, with restrictions for the roles: Viewer and Explorer (using the same tags of the Sample XML File in the guide)
    Second, I have modified the WebAnalysis.properties file removing the # ahead this two lines:
    "WAStudioMenuControl= C:/Hyperion/Analyzer/conf/WAMenu.xml
    ModuleName=WebAnalysisStudio"
    and modified the path with the correct location of the XML file.
    At last, i have restart the services regarding Workspace and Web Analysis.
    But, it does not work. The user can still see the export options in the shortcut menu..I don't understand what is wrong..
    I really hope that someone can help me!!

    Hi Iain,
    thanks for answering.
    Unfortunately it doesn't restrict neither in the workspace nor in the WA studio.
    I made a lot of attempts, not only with export but also with other option, and there are no changes!!
    Do you remember if you made the same steps descripted above, or there is something that i did not make (or made wrong)??
    Cheers,
    Angelo

  • IR export options and embedded HTML

    Good day,
    Apex 3.2.1.00.12, 9.2.0.8 DB, on AIX 5.3.
    I have an IR where in I use html in the SQL that defines it to format certain columns such as the below
    "<div style=""overflow:auto;height:50px;"">column value here</div>"I then define the display type as ' Standard Report Column '.
    That obviously allows me to have some "formatting" power that the IR does not give by default.
    Problem is when I do the export to a CSV I get the html markup included as the value of the column.
    Is there a way I can keep my formatting desires and export without the html included in the value ?
    Also, can I export the whole result set to CSV, not just whatever I have pagination set to ?
    I do NOT have a print server.
    Thanks for your time,
    CLG

    What export option you used.
    I am using default export option and it exports all the records on report. Not current page.
    Furthermore for your requirment I ahve done lot of test regaring same thing. But I didnt find any solution. So what I did was create my own export function for those reports and then use that.
    Thanks
    * If this answer is helpfull or correct then please mark it and grant the points.

  • Export options in Voyager

    I created Voyager documents for my cubes. The tool is great in terms of its ability to report data from the multiple measures and dimensions. When it comes to Export options - The export to excel is pretty clean, but it doesn't carry the formatting to the exported file. This feature is something that our users really felt was missing. Can this feature be released as a patch or part of a service pack release? Also, the export doesn't carry the title of the report to excel or PDF (print to PDF - Data).
    Thanks in Advance!!
    Harish

    To confirm:  Column formatting like display -> Name:Caption ..  .. is not being exported to excel
    please refer to Note # 1345585
    this behaviour will be enhanced in XI3.0 Sp3 - due end 2009.
    regards,
    Henry

  • How do I share a new project on imovie if the export option is greyed out and not an option?

    how do I share a new project on imovie if the export option is greyed out and not an option?

    nicoleking wrote:
    ... I heard that if you bring in your old iPhone, they will give you a new one with some kind of fee, but I don't know how that works.
    https://discussions.apple.com/message/22920500

  • Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.

    Hi,
    I have a MBP 13' Late 2011 and Yosemite 10.10.2 (14C1514).
    Until yesterday, I was using Garmin ConnectIQ SDK and all was working fine.
    Yesterday, I've updated my system with latest security updates and Xcode updates too (Version 6.2 (6C131e)).
    Since, I can't launch the ConnectIQ simulator app, I have this message in console :
    8/04/2015 15:19:04,103 mds[38]: There was an error parsing the Info.plist for the bundle at URL Info.plist -- file:///Volumes/Leto/connectiq-sdk-mac-1.1.0_2/ios/ConnectIQ.bundle/
    The data couldn’t be read because it isn’t in the correct format.
    <CFBasicHash 0x7fa64f44e9a0 [0x7fff7dfc7cf0]>{type = immutable dict, count = 2,
    entries =>
      0 : <CFString 0x7fff7df92580 [0x7fff7dfc7cf0]>{contents = "NSDebugDescription"} = <CFString 0x7fa64f44f0a0 [0x7fff7dfc7cf0]>{contents = "Unexpected character b at line 1"}
      1 : <CFString 0x7fff7df9f5e0 [0x7fff7dfc7cf0]>{contents = "kCFPropertyListOldStyleParsingError"} = Error Domain=NSCocoaErrorDomain Code=3840 "The data couldn’t be read because it isn’t in the correct format." (Conversion of string failed.) UserInfo=0x7fa64f44eda0 {NSDebugDescription=Conversion of string failed.}
    I have looked at this file and it looks like a binary plist
    bplist00ß^P^V^A^B^C^D^E^F^G^H
    ^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^^^_ !"$%&'()'+,^[\CFBundleNameWDTXcodeYDTSDKName_^P^XNSHumanReadableCopyrightZDTSDKBuild_^P^YCFBundleDevelopmentRegion_^P^OCFBundleVersi    on_^P^SBuildMachineOSBuild^DTPlatformName_^P^SCFBundlePackageType_^P^ZCFBundleShortVersionString_^P^ZCFBundleSupportedPlatforms_^P^]CFBundleInfoDictionaryVersion_^P^RCFBundleE    xecutableZDTCompiler_^P^PMinimumOSVersion_^P^RCFBundleIdentifier^UIDeviceFamily_^P^QDTPlatformVersion\DTXcodeBuild_^P^QCFBundleSignature_^P^ODTPlatformBuildYConnectIQT0611[iph    oneos8.1o^P-^@C^@o^@p^@y^@r^@i^@g^@h^@t^@ ^@©^@ ^@2^@0^@1^@5^@ ^@G^@a^@r^@m^@i^@n^@.^@ ^@A^@l^@l^@ ^@r^@i^@g^@h^@t^@s^@ ^@r^@e^@s^@e^@r^@v^@e^@d^@.V12B411RenQ1V14C109Xiphoneos    TBNDLS1.0¡#XiPhoneOSS6.0YConnectIQ_^P"com.apple.compilers.llvm.clang.1_0S8.1_^P^Tcom.garmin.ConnectIQ¡*^P^AW6A2008aT????^@^H^@7^@D^@L^@V^@q^@|^@<98>^@ª^@À^@Ï^@å^A^B^A^_^A?^AT^    A_^Ar^A<87>^A<96>^Aª^A·^AË^AÝ^Aç^Aì^Aø^BU^B\^B_^Ba^Bh^Bq^Bv^Bz^B|^B<85>^B<89>^B<93>^B¸^B¼^BÓ^BÕ^B×^Bß^@^@^@^@^@^@^B^A^@^@^@^@^@^@^@-^@^@^@^@^@^@^@^@^@^@^@^@^@^@^Bä
    I guess it is a normal format but my system seems to be unable to read binary plist ?
    I tried some stuff with plutil
    plutil -lint Info.plist
    Info.plist: Unexpected character b at line 1
    Same for convert
    plutil -convert xml1 Info.plist
    Info.plist: Property List error: Unexpected character b at line 1 / JSON error: JSON text did not start with array or object and option to allow fragments not set.
    I also try to download a fresh version of the connectIQ SDK and no changes.
    Any idea ?
    Thanks

    Step by step, how did you arrive at seeing this agreement?

Maybe you are looking for

  • Yoga 2 Pro - Veriface doesnt work with Domain Account

    I have a Yoga 2 Pro and I can get Veirface to work fine with a local account but it will not work with a Domain Account. I can get it to where it prompts me for the Domain Account Password (as it should the 1st time) but when you enetr the proper pas

  • Using API's

    Greetings, I am writing a project which needs to "read" data out of .pdb file (this file contains debugging information for VC++ 6 and .NET). Problem is - the intra structure and format of the .pdb file were not published by Microsoft, and they are n

  • Nomad Xtra, Zen Micro, and Zen To

    I'm your typical money-starved college student and need to find the best sounding mp3 player for as less cash as possible. I have about 800-,000 songs from my cds that I would want to store, and would like to add some other songs from Kazaalite and L

  • Simple chart proving difficult

    Hi I'm trying to create a chart with the months of the year's names on the x-axis and the values for those months as the y. My main question is what the data source should look like in xml. I'm hand coding the xml, so not using Oracle Reports to gene

  • How to make the Java Logging to create the log file

    Hey, I need some help. Below is my code that create a log file for my application however, there is no log file being created when i perform a MarsLogger.log.info("test") in my code for my application. * LogManager.java * Created on April 10, 2006, 1