Quantcast
Channel: Adobe Community : Popular Discussions - InDesign SDK
Viewing all 78596 articles
Browse latest View live

error PRJ0002 : error returned from 'rc.exe'

$
0
0

I've created a simple startup PlugIn-Project wirh DollyXS.

There were soeme file entries created by Dollxy, without a File related to first.

The Hearders to be included by the fr-file, I had to copy to me projects soure folder, to le the odfrc to find them.

Anfer have all the cpp- files ready to be compiled, there left an error ar my fr-file:

fatal error RC1106: invalid option: -g

error PRJ0002 : error result returned from 'rc.exe'-

 

As folder of executalbes is configured C:\Prpgramme\Microsoft Visual Studio .NET 2003/Common7/bin

At that folder I may compile my UIE.rc-file.

Can anybody let me know, from where the rc.exe is invoced and which parameters are used for.

At the project- and file properties I can't find any option -g.

 

Regards

Jochen Seliger


Error 11 Configuration error

$
0
0

I have installed the Adobe InDesign CC 2017 application from my Creative Cloud Desktop on my Mac Sierra. It works fine. I now want to install the debug version of Adobe InDesign CC 2017 so I copy the content of the blob from the developers prerelease site into the /Applications/Adobe InDesign CC 2017 Debug folder. When I try to launch the application it just shows a Configuration error (Error 11) and quits ??????

Applying Character Attributes without Selecting Text

$
0
0
How do I apply a character attribute to a range of text without selecting the text? (If it's selected, I can do a ITextAttributeSuite::SetBooleanAttribute(), but I can't select the text for this particular case.)

I tried IAttributeStrand::DoApplyOverrides() and ICommand::ApplyCmd(), but neither did anything. Maybe I'm setting up the calls wrong. I'll continue to investigate, but in the meantime, if anyone knows how to do this, please let me know. Thanks.

How to Refer dll in my InDesign Plug-In Project ???

$
0
0
Hi All,

I have a xxx.dll and xxx.lib.

b I kept xxx.dll in indesign.exe path. and

b xxx.lib in "C:\Program Files\Adobe\Adobe InDesign CS3 Products SDK\build\win\objd"

I set the reference for xxx.lib in

b project->properties->common properties->References
and in

b project->properties->cofiguration->Linker->Input->Additional Dependecies

I am not able Refer this dll from my Plug-In project and access its methods.

Where i am wrong?? or I need to do some additional coding for this..
how to call or Refer this xxx.dll??

Thanks

Text Attribute

$
0
0
Hello
i have written some code to apply a text attribute on some text. now i want that as soon as the text is finished that attribute do not continue on the next text. i.e. i applied bold on "NAME". now after name i want this attribute to be finished until it is applied again by selecting from the menu. can any one give me the clue to solve this issue.
I hope my issue is cleared enough.
thanks
Regards,
MS Chaudhary

Missing link status in link panel and on the page in inDesign CC2018

$
0
0

Hi,
I have ported our plugins so they compile and load in indd CC2018
There's one thing that isn't working. My plugin is providing a custom data link. It seems to function just fine except for the status (linked, out of date, missing) not being shown anywhere.
I compiled the custom data link sample code and that has the same problem.

 

Actually, when I remove the plugin, the status is back again. Seems to me I'm missing some new required implementation (since it did work up to 2017). Just kind find any info what I'm missing.

Any help is appreciated!

Plugin does not write files on OSX

$
0
0

Hi,

 

My plugin does not read/write files in the following folders:

 

- User home folder

- User shared folder

 

This happens for one particular customer with OSX Sierra (Italian) and InDesign CC 2017.

I use the following code:

 

    FSRef ref;

    OSType folderType = kSharedUserDataFolderType;

 

    FSFindFolder(kLocalDomain, folderType, kCreateFolder, &ref);

    FSRefMakePath(&ref, (UInt8 *)&commonDocumentsPath, MAX_LENGTH);

 

To get the users shared folder. This works fine on my own OSX High Sierra laptop and

also on another Mac that I have. I got this code from this forum BTW.

 

Of course I checked and set the proper permissions and owner using chmod and chown.

I even tried to start InDesign from the cmd. line with sudo.

 

Any ideas why a plugin is not able to read/write files in these folders? Is there some kind of OSX setting I need to use?

IControlView->Disable vs kFalse in resource

$
0
0

I am trying to make a TreeViewWidget with some of the tree nodes enabled and some disabled but I would like them all to be selectable. I see that if I set them to disable in the resource then they are selectable but I can't figure out then how to enable some of them. IControlView->Enable that I am calling in TreeViewWidgetMgr::ApplyDataToWidget() doesn't seem to work.

And if I set them to enabled in the resource and use IControlView->Disable for some of them *does* work but it doesn't allow the disabled nodes to be selected.

What am I doing wrong?


Facing problem with "Futura Std Book Oblique" font in InDesign

$
0
0
Hello,

 

 

We are facing some issues with the adobe Font Family "Futura Std" [especially Futura Std Book Oblique] font in InDesign.

InDesign is not able to resolve the "Italic" font style i.e "Futura Std Book Oblique" font.

 

please follow the following simple steps to reproduce this issue.

  1. Creat a new InDesign document and select a text tool to enter some text.
  2. Enter some text in text area with font family set to "Times New Roman" (like "Regular ItalicBoldBoldItalic") and apply the different font styles to each text (accordingly).
  3. Then select entire text and change the font Family to "Futura Std".
  4. Now you can see that the "Futura Std Book Oblique" font for text "Italic" from the above step is not applied, it is incorrectly interpreted as "Futura Std [Italic]"

 

Is this an Adobe InDesign issue (unable to resolve "Times New Roman - Italic"  to "Futura Std - Book Oblique") or the "Futura Std" font issue itself ? can you please provide some more information on, why this particular font is not functioning as expected in Adobe InDesign ?

 

Thanks in advance.

Boost regex not working inside indesign plugin

$
0
0

Hi, While i was writing the below code in a separate project inside visual studio express, It works fine!

Now when I am using the same code in a Adobe InDesign plugin then boost::regex_search fails..

 

I am not getting the exact reason...

Any idea for resolving this will be great help.

 

void MTSTestFunctions::ParseAllMarker(std::wstring& inText, std::vector &outMarkerInfoVec)

{

    std::wstring::const_iterator start = inText.begin();

    std::wstring::const_iterator end = inText.end();

 

    boost::wregex pattern(L"((<.*?>)|(\\[[^[].*?[^]]\\])|(\\[\\[.*?\\]\\]))");

    boost::wsmatch what;

    boost::match_flag_type flags = boost::match_default;

    int32 index = 0;

    try

    {

        while(boost::regex_search(start, end, what, pattern, flags))

        {

            MarkerInfo tmpMarkerInfo;

            tmpMarkerInfo.mMarkerText.assign(what[0]);

            tmpMarkerInfo.mStartIndex = (what.position() + index);

            index += what.position();

            tmpMarkerInfo.mEndIndex = (index += what.position());

            tmpMarkerInfo.mMarkerTextLength = (index + what.length());

            index += what.length();

 

            // update search position:

            start = what[0].second;

 

            // update flags:

            flags |= boost::match_prev_avail;

            flags |= boost::match_not_bob;

        }

    }

    catch(std::runtime_error ex)

    {

    }

}

 

Thanks

What's the next step to getting the debug verison of InDesign CS6?

$
0
0

I've downloaded and used earlier versions of the developer build of InDesign for the Mac and I've completely forgotten how. Hopefully someone here can advise me what I should do and point me in the right direction.

 

At the header to this forum it says:

 

"To use the InDesign SDK effectively, you must have the InDesign debug version installed. The InDesign debug can be accessed through the Adobe partner programs. You can sign up to one of the partner programs using the partner portal. Here's a link to the Solution Partner landing page. Here's a link to the Enterprise Developer Program page."

 

I'm using the account through which we've established a partner program before. So here are my questions.

 

1) How do I search my details to see if I need to renew the partnership? We've previously had one but it could be expired and I can't tell. What sort of partner program should I get?

 

2) Once the partnership program is paid up, where do I go to actually download the debug build for InDesign CS6 for Mac?

 

3) If the above is the wrong approach, does anyone know the SKU for the debug version. We've talked to our contacts at Adobe and they haven't heard of a debug build of InDesign. The SKU might help them find the product for us.

InDesign CS6 and C# (Regular expression)

$
0
0

GREP does not work

 

//*******************************************

//CODE

//*******************************************

InDesign.Application InDesignApp = (InDesign.Application)Activator.CreateInstance(Type.GetTypeFromProgID("InDesign.Applicati on"));

 

InDesignApp.Activate();

 

//Create Document

InDesign.Document InDesignDoc = InDesignApp.Documents.Add();

 

//PageWidth

InDesignDoc.DocumentPreferences.PageWidth = Convert.ToDouble(numericUpDown_width.Value);

 

//PageHeight

InDesignDoc.DocumentPreferences.PageHeight = Convert.ToDouble(numericUpDown_height.Value);

 

InDesignDoc.DocumentPreferences.PageOrientation = idPageOrientation.idPortrait;

 

InDesignDoc.DocumentPreferences.PagesPerDocument = 50;

 

InDesignDoc.DocumentPreferences.StartPageNumber = 1;

 

InDesign.Page page = (InDesign.Page)InDesignDoc.Pages[1];

InDesign.Layer layer = (InDesign.Layer)InDesignDoc.Layers[1];

 

//Place *.docx in Document

page.Place("C:\\sample.docx", new[] { 0, 0 }, layer, false, true);

 

InDesign.Document Doc = (InDesign.Document)InDesignApp.ActiveDocument;

 

//Clear the find/change grep preferences

InDesignApp.FindGrepPreferences = idNothingEnum.idNothing;

InDesignApp.ChangeGrepPreferences = idNothingEnum.idNothing;

 

//Set the find options

InDesignApp.FindChangeGrepOptions.includeFootnotes = true;

InDesignApp.FindChangeGrepOptions.includeHiddenLayers = true;

InDesignApp.FindChangeGrepOptions.includeLockedLayersForFind = true; ;

InDesignApp.FindChangeGrepOptions.includeLockedStoriesForFind = true;

InDesignApp.FindChangeGrepOptions.includeMasterPages = true;

 

//Regular expression for finding an email address

InDesignApp.FindGrepPreferences.findWhat = "(?i)[A-Z]*?@[A-Z]*?[.]...";

 

Doc.FindGrep();

 

//Apply the change to 24-point text only

InDesignApp.FindGrepPreferences.pointSize = 28;

InDesignApp.ChangeGrepPreferences.underline = true;

Doc.ChangeGrep();

 

//Clear the find/change grep preferences

InDesignApp.FindGrepPreferences = idNothingEnum.idNothing;

InDesignApp.ChangeGrepPreferences = idNothingEnum.idNothing;

 

//******************************************* 

//END CODE

//******************************************* 

where am I wrong?

Unlink InCopy story

$
0
0

Hi everybody,

 

 

Can anybody tell me how I can unlink an InCopy story.

 

 

 

Thanks.

How to enable the widgets in Indesign CC..?

$
0
0

Hi,

 

I am working on porting our Indesign CS6 plugin to Indesign CC plugin.I have completed the porting and the plugins has opened in Indesign CC,but i have one problem in design. Three of our Widgets has not opened in Indesign CC.

 

The code is the following,

 

.fr file

 

resource SampleDialogWidget (kSDKDefDialogResourceID + index_enUS)

{

          __FILE__, __LINE__,

          kSampleDialogWidgetID,                    // WidgetID

          kPMRsrcID_None,                                        // RsrcID

          kBindNone,                                                  // Binding

          0, 0, 700,400,                                        // Frame (l,t,r,b)

          kTrue, kTrue,                                        // Visible, Enabled

          kSampleDialogTitleKey,                    // Dialog name

          {

          //<FREDDYWIDGETDEFLISTUS>

 

SamplePrefListBox

                    (

                              SamplePreflistboxWidgetID,

                              kSysOwnerDrawListBoxPMRsrcId,                                                            // WidgetId, RsrcId

                              kBindAll,                                                                                                              // Frame binding

                              Frame(15,15,170,360)                                                                                // Frame

                              kTrue, kTrue,                                                                                                    // Visible, Enabled

                              1,0,                                                                                                                        // List dimensions

                              19,                                                                                                                                  // Cell height

                              1,                                                                                                                                  // Border width

                              kFalse,kTrue,                                                                                                    // Has scroll bar (h,v)

                              kTrue,                                                                                                                        // Multiselection

                              kTrue,                                                                                                                        // List items can be reordered

                              kTrue,                                                                                                                        // Draggable to new/delete buttons

                              kTrue,                                                                                                                        // Drag/Dropable to other windows

                              kTrue,                                                                                                                        // An item always has to be selected

                              kFalse,                                                                                                                        // Don't notify on reselect

                              kSamplePrefListElementRsrcID                                                                      // Fill list box with widgets with this ID (default is 0)

                              {

                                        CellPanelWidget

                                        (

                                                  kCellPanelWidgetID, kPMRsrcID_None,                              // WidgetId, RsrcId

                                                  kBindAll,                                                                                          // Frame binding

                                                  Frame(-1,1,154,340)                    // Frame

                                                  kTrue, kTrue                                                                                // Visible, Enabled

                                                  {

                                                            // ----- This is the CPanelControlData that holds the widgets

                                                            //                     that are items in the list box. They are not persistent

                                                            //

 

                                                  }

                                        ) 

                              },

                    ),

 

 

                    GenericPanelWithBorderWidget

                    (

                SamplePrefGeneralTabWidgetID, kPMRsrcID_None,

                              kBindBottom |kBindRight,

                              Frame(175,10,695,360)                    // Frame

                              kTrue, kTrue,

                              "",

                              {

 

                    StaticTextWidget

                    (

                              kInvalidWidgetID,                                                                                // WidgetId (default=0)

                              kSysStaticTextPMRsrcId,                    // RsrcId

                              kBindNone,                                                            // Frame binding

                              10, 15, 138, 35,                                                  // Frame: left, top, right, bottom.

                              kTrue, kTrue,                                                  // Visible, Enabled

                              kAlignLeft, kEllipsizeEnd,kTrue,                    // Alignment, ellipsize style

                              kSamplePrefProjectPathStringKey,                    // Initial text.

                              kSamplePrefProjectPathTextEditBoxWidgetID          // No associated widget

                    ),

 

 

                    // TextEditBox Widget resource

                    TextEditBoxWidget

                    (

                    kSamplePrefProjectPathTextEditBoxWidgetID, // WidgetId

                    kSysEditBoxPMRsrcId, // RsrcId

                    kBindNone, // Frame binding

                    Frame(140, 15, 420, 35), // Frame (l,t,r,b)

                    kTrue, kTrue // Visible, Enabled

                    0, // Widget id of nudge button (0 so we dont get one)

                    0, 0,// small,large nudge amount

                    0, // max num chars(0 = no limit)

                    kFalse,// is read only

                    kFalse,// should notify each key stroke

                    kFalse,// range checking enabled

                    kFalse,// blank entry allowed

                    0, // Upper bounds

                    0, // Lower bounds

                    "", // Initial text

                    ),

 

                    ButtonWidget

                    (

                              kSampleChooseProjectButtonWidgetID,

                              kSysButtonPMRsrcId,

                              kBindNone,

                              430, 15, 500, 35,

                              kTrue, kTrue,

                              kSampleChooseBtnStringKey,

                    ),

 

GenericPanelWithBorderWidget

                    (

                              SamplePrefFittingTabWidgetID, kPMRsrcID_None,

                              kBindBottom |kBindRight,

                              Frame(175,10,695,360)                    // Frame

                              kTrue, kTrue,

                              "",

                              {

 

                              StaticTextWidget

                                        (

                                                  kInvalidWidgetID,                    // WidgetId

                                                  kSysStaticTextPMRsrcId,                    // RsrcId

                                                  kBindNone,                              // Frame binding

                                                  Frame( 10,15,300,35  ),          // Frame (l,t,r,b)

                                                  kTrue, kTrue, kAlignLeft,          // Visible, Enabled, Alignment

                                                  kDontEllipsize,kTrue,                              //**new element in InDesign 2.0: don't add any ellipses

                                                  "Drag/Drop Operation",                     // Text

                                                  0// WidgetId for associated control for shortcut focus

                                        ),

 

                                        SeparatorWidget

                                        (

                                                  0,

                                                  kPMRsrcID_None,

                                                  kBindNone,

                                                  Frame(10,37,450,38),

                                                  kTrue,kTrue,

                                        ),

 

                                        StaticTextWidget

                                        (

                                                  0,                    // WidgetId

                                                  kSysStaticTextPMRsrcId,                    // RsrcId

                                                  kBindNone,                              // Frame binding

                                                  Frame( 10, 40, 250, 60  ),          // Frame (l,t,r,b)

                                                  kTrue, kTrue, kAlignLeft,          // Visible, Enabled, Alignment

                                                  kDontEllipsize,kTrue,                              //**new element in InDesign 2.0: don't add any ellipses

                                                  kSampleTextOptionsTextKey,                     // Text

                                                  0                    // WidgetId for associated control for shortcut focus

                                        ),

 

                                        CheckBoxWidget

                                        (

                                                  kSampleTextFitCheckBoxWidgetID,                    // WidgetId

                                                  kSysCheckBoxPMRsrcId,                              // RsrcId

                                                  kBindNone,

                                                  Frame(150, 40, 350, 60) //  left, top, right, bottom

                                                  kTrue,                                                                      // Visible

                                                  kTrue,                                                                      // Enabled

                                                  kAlignLeft,                                                            // Alignment

                                                  kSampleTextFitChkBoxTextKey                    // Initial text

                                        ),

 

GenericPanelWithBorderWidget

                    (

                              SamplePrefScriptEventsTabWidgetID, kPMRsrcID_None,

                              kBindBottom |kBindRight,

                              Frame(175,10,695,360)                    // Frame

                              kTrue, kTrue,

                              "",

                              {

 

                                        StaticTextWidget

                                        (

                                                  0,                                                                                // WidgetId (default=0)

                                                  kSysStaticTextPMRsrcId,                    // RsrcId

                                                  kBindNone,                                                            // Frame binding

                                                  10, 10, 200, 30,                                                  // Frame: left, top, right, bottom.

                                                  kTrue, kTrue,                                                  // Visible, Enabled

                                                  kAlignLeft, kEllipsizeEnd,kTrue,                    // Alignment, ellipsize style

                                                  kSampleDropDownEventsTextKey,                    // Initial text.

                                                  0                    // No associated widget

                                        ),

 

SamplePrefListBox

                                        (

                                                   SamplePrefDragDropScriptlistboxWidgetID, kSysOwnerDrawListBoxPMRsrcId,          // WidgetId, RsrcId

                                                  kBindAll,                                                                                                              // Frame binding

                                                  Frame(10, 35, 200, 120)                                                                                          // Frame

                                                  kTrue, kTrue,                                                                                                    // Visible, Enabled

                                                  1,0,                                                                                                                        // List dimensions

                                                  19,                                                                                                                                   // Cell height

                                                  1,                                                                                                                                   // Border width

                                                  kFalse,kTrue,                                                                                                    // Has scroll bar (h,v)

                                                  kTrue,                                                                                                                         // Multiselection

                                                  kTrue,                                                                                                                         // List items can be reordered

                                                  kTrue,                                                                                                                         // Draggable to new/delete buttons

                                                  kFalse,                                                                                                                         // Drag/Dropable to other windows

                                                  kTrue,                                                                                                                         // An item always has to be selected

                                                  kFalse,                                                                                                                         // Don't notify on reselect

                                                  k SamplePrefListElementRsrcID                                                                      // Fill list box with widgets with this ID (default is 0)

                                                  {

                                                            CellPanelWidget

                                                            (

                                                                      kCellPanelWidgetID, kPMRsrcID_None,                              // WidgetId, RsrcId

                                                                      kBindAll,                                                                                          // Frame binding

                                                                      Frame(-1,1,187,243)                    // Frame

                                                                      kTrue, kTrue                                                                                // Visible, Enabled

                                                                      {

                                                                                // ----- This is the CPanelControlData that holds the widgets

                                                                                //                     that are items in the list box. They are not persistent

                                                                                //

 

                                                                      }

                                                            ) 

                                                  },

                                        ),

 

                                        ButtonWidget

                                        (

  SamplePrefDragDropScriptAddBtnWidgetID,

                                        kSysButtonPMRsrcId,

                                        kBindNone,

                                        20, 125, 90, 145,

                                        kTrue, kTrue,

                                        kSampleAddScriptButtonTextKey,

                                        ),

 

                                        ButtonWidget

                                        (

  SamplePrefDragDropScriptRemoveBtnWidgetID,

                                        kSysButtonPMRsrcId,

                                        kBindNone,

                                        100, 125, 180, 145,

                                        kTrue, kTrue,

                                        kSampleRemoveScriptButtonTextKey,

                                        ),

 

Elements added:

 

void SampleDialogController::PopulatePrefListElement()

{

do

{

                    InterfacePtr<IPanelControlData> iPanelControlData(this, UseDefaultIID());

                    ASSERT(iPanelControlData);

                    if(!iPanelControlData) {CAlert::InformationAlert("IPanelControlData err");break;}

 

 

                    SDKListBoxHelper listHelper(iPanelControlData,kSamplePluginID, SamplePreflistboxWidgetID, kSampletDialogWidgetID);

                    IControlView * listBox = listHelper.FindCurrentListBox();

                    if(listBox == nil) {

                    CAlert::InformationAlert("listBox err");

                    break;

                    }

 

 

 

                    listHelper.EmptyCurrentListBox();

 

 

                    InterfacePtr<IListBoxController> listCntl(listBox,IID_ILISTBOXCONTROLLER);          // useDefaultIID() not defined for this interface

                    ASSERT_MSG(listCntl != nil, "listCntl nil");

                    if(listCntl == nil) {

                    CAlert::InformationAlert("IListBoxController err");

                    break;

                    }

 

                    //Addin the string to the listbox

                    const int targetDisplayWidgetId =SamplePrefOptionTextWidgetID;

 

 

                    listHelper.AddElement("General", targetDisplayWidgetId);

                    listHelper.AddElement("Fitting", targetDisplayWidgetId);

                      listHelper.AddElement("Events and Scripts", targetDisplayWidgetId);

 

                    listCntl->DeselectAll();

 

 

}while(0);

}

 

I dont know how to enable these three widgets in Indesign CC.please refer this code and help me if anyone has idea regarding this problem.

 

Thanks in advance,

Vimala L

Get signals from ID Main menu

$
0
0

II want to to get signals (events, or messges or??) from the Adobe Application main menu.

Is the ActionMgr retrived from gSession the own one for addig an own menu to the ID main menu (already done) and to get the signals from the multiple applications File-Save-item actrions?


Background Task Alert

$
0
0

I'm spawning my own threads to do some task. I monitor thread in the idle task at regular intervals, to see if the threads have been completed or not and get an update. Now my problem is,

I want to postpone Indesign quit until my task has been completed. I prevent a user from quitting by throwing a CAlert, which takes away control from my idle task.

 

My question is, is there a background task alert (as mention in programming guide ) on page 127  so that I can keep monitoring my threads and close the dialog once the process is complete?

"

Background threads cannot directly report to the user on progress, success, or errors. These are

presented in the Background Tasks panel. Also, an animation appears in the application bar when

background tasks are in progress, and a Background Task Alert might appear when a background task

needs to convey a message to the user.

"

Such a background task appears when a user tries to exit indesign and is self disposed when the task is complete like this. Is there any such API exposed to third party developers?

Adding crop marks in jpeg export

$
0
0

Hi All,

 

Is is possible to add crop marks in jpeg export similar to what we have in pdf export.

I see SnapshotUtils class but could not see any method to set crop marks.

What I need to do to set crop marks?

 

Regards,

Alam

porting from CS4 to CS5

$
0
0

Im trying to port some plugins from CS4 to CS5. During the process I encounter several errors. Once of them is listed below.

 

Error 1 fatal error C1189: #error :  DEBUG and NDEBUG are out of sync!    // $$$ need to set NDEBUG in release builds c:\program files\adobe\cs5\indesign product sdk\source\public\includes\K2Debugging.h 53

How to separate my adornments from effects applied to page item?

$
0
0

Hi All,

 

I have my own graphical page item. And I also draw special border and, the most important, my special label if my object is bigger than its frame. (Text frame behaviour is the example for me).
I tried to draw adornments in MyShape::DrawPageItemAdornments reimplemented method. I also tried to draw my adornments in the way of FrameLabel SDK sample adding my IAdornmentShape implementation.
But in all these cases my adornments have drop shadow and all other effects applied to the item.
Is there any possibility to separate adornments from the effects like drop shadow?

 

I need your help very much!

 

Thank you in advance.
Sofia

[CS4] Export as RTF... different on Mac/Win

$
0
0

I'm exporting a story as RTF using Sangam RTF Export.  Export works but I'm seeing different behavior depending on what platform I'm running on.

 

If I export on the Mac I get rtf with the story on top and the notes on the bottom.

 

If I export on the PC I see the same except that all the style names are written on the top.  These style names are in the text

 

Why are the style names included?  Are there some export settings I can change?

 

Thanks,

-doug

Viewing all 78596 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>