Linking the paragraph

There is this feature in Corel to bind the text of the paragraph. How can I do this in fh so that the text runs off the page next or another part of the document.

With the text block selected (with the selection tool, not highlighted
with the text tool), click inside the small box in the lower right
and drag it to the second block of text you want to enter. When two
the blocks selected text now you will see a curved line
linking the two. This can be done between several blocks of text. You
can change it anytime you want in re-making drag. Useful for something
don't forget is the special character of "end of the column. You will find under
Text > special character > column end. This desire of invisibility
force the following text in the following text block no matter how much he
room is left in the text block. This is very handy when you absolutely
want a certain paragraph to begin a certain block.

Rich

Sarah wrote:
> There is this feature in Corel to bind the text of the paragraph. How can I do this in fh so that the text runs off the page next or another part of the document.

Tags: FreeHand

Similar Questions

  • Pages - trying to link the issue to the paragraph of the answer

    Hi there: neophyte user Pages for businesses trying to link the issue of the survey to a paragraph "answering machine".  As an example...

    Question:

    What's your brown grass?  Yes No

    If the answer is Yes, then want to fill and print a paragraph explaining...

    Your grass is Brown, because you're not watering or you need phosphorus or whatever.  Here's what you need to know about this resolution.  etc, etc.

    Any suggestions on the Pages or other popular apps.

    V5.6.2 pages is not suitable for the use of processing of affairs where one expects it to be a clone of Microsoft Word - who is not. There is no content link intra-document, support forms or runtime macros that manipulate the content of the document when the interactive user input. Pages is not a web design tool.

  • How to create link for reference to the paragraphs or text anchor to another indesign file?

    Hello

    I'm new in indesign scripting.

    I want to create the reference, which is the link to the paragraphs (or text anchor) another indesign file (new.indd).

    My first problem is how to get all the paragraphs or anchor text of the file new.indd

    I have a TextFrame whose content is Adobe Indesign.

    I want to apply an Adobe Indesign link reference to the paragraphs with the Destination Documents: new.indd.

    How it's done by script?

    I have try to use this:

    indesign #target

    myDocument var = app.documents.add ();

    var myTextFrame = myDocument.pages.item (0).textFrames.add ();

    myTextFrame.geometricBounds is ['10', 15 ' p', '30', '35p'];.

    myTextFrame.contents = "Adobe Indesign";

    var text = myTextFrame.texts.firstItem ();

    var hyperlinkURLDestination = myDocument.hyperlinkURLDestinations.add ("C/Documents and Settings/Administrator/Desktop/new.indd");

    var DestinationDoc = hyperlinkURLDestination.parent ();

    var xRefForm = myDocument.crossReferenceFormats.item ("Page number");

    source var = myDocument.crossReferenceSources.add (text, xRefForm);

    var myLink = myDocument.hyperlinks.add (source, hyperlinkURLDestination);

    When I run this script it gives error "the destination is not valid. You can create Cross - reference to anchor text or destination of the paragraph.

    How to get all the Paragrapgs or text the file new.indd anchor and create cross-references using the this.

    Thank you.

    You can create cross-references to anchor points and paragraphs. If you need create an anchor text in new.indd, then use as the target of the cross reference:

    var anchor = app.documents.item ('new.indd').hyperlinkTextDestinations.item ('myAnchor');

    source var = app.activeDocument.crossReferenceSources.add (text, xRefForm);

    app.activeDocument.hyperlinks.add (source, anchor);

    Peter

  • Copy the paragraph to an another doc - lesson 2

    I need to split the task into 2 functions, because the second function will be used many times if the processing log files.

    In GetBiblioFromRTF the paragraphs of document-1 are stored in a global table.

    In PasteAtEnd the elements of the array are read and copied/pasted the end of active-2...

    If not the first final document (outcomment line 18), the second document becomes active, and therefore, the data is copied to its end.

    However, if after completing the global table of closing document-1, the table is empty in each position and nothng is stuck (see warnings).

    #target FrameMaker
    var gaBibliography= [];                           // keep bibliography lines from processed RTF
    GetBiblioFromRTF ();
    
    PasteAtEnd();
    
    function GetBiblioFromRTF () {
      var nBib = 0, newDoc, pgf, pgf1, tRange;
      newDoc = app.ActiveDoc;
      pgf = newDoc.MainFlowInDoc.FirstTextFrameInFlow.FirstPgf;
    // --- read the bibliography into the global array
      while(pgf.ObjectValid()) {                      // until end of doc - take whole paragraphs
        nBib += 1;                                    // count biblio paragraphs for later use in message
        gaBibliography.push(pgf);                     // place the paragraph
        pgf = pgf.NextPgfInFlow;
    alert (GetText (gaBibliography[nBib-1], newDoc)); // => expected text
      }
      newDoc.Close (Constants.FF_CLOSE_MODIFIED);     // source document
    } // --- end GetBiblioFromRTF
    
    function PasteAtEnd () {
      var j, jMax, oDoc, lastPgf, pgf, textLoc, tRange;
      jMax = gaBibliography.length;
      if (app.ActiveDoc.ObjectValid()) {              // target document
        oDoc = app.ActiveDoc;
      } else {
        Alert ("No active document!");
        return;
      }
      lastPgf = oDoc.MainFlowInDoc.FirstTextFrameInFlow.LastPgf;
      pgf = oDoc.NewSeriesPgf (lastPgf);              // Add a new paragraph at end of flow
      tRange = new TextRange;
    
      for (j = 0; j < jMax; j += 1) {
        pgf1 = gaBibliography[j];                     // is object paragraph 
    alert (GetText (gaBibliography[j], oDoc));        // => nothing
        tRange.beg.obj = pgf1;                        // select it
        tRange.beg.offset = 0;
        tRange.end.obj = pgf1;
        tRange.end.offset = Constants.FV_OBJ_END_OFFSET;
        oDoc.TextSelection = tRange; 
        PushClipboard ();
        oDoc.Copy (0);                                // copy selection to clipboard not interactive
        textLoc = new TextLoc (pgf, 0);  
        textRange = new TextRange (textLoc, textLoc);
        oDoc.TextSelection = textRange;               // set TextSelection to insertion point
      
        oDoc.Paste ();                                // "replace" TextSelection
        PopClipboard ();
      }
    }
    
    function GetText (textObj, doc) {
      var text = "", textItems;
      if (textObj.constructor.name !== "TextRange") { // Get a list of the strings in the text object or text range
        var textItems = textObj.GetText(Constants.FTI_String);
      } else {
        textItems = doc.GetTextForRange(textObj, Constants.FTI_String);
      }
      for (var i = 0; i < textItems.len; i += 1) {    // Concatenate the strings
        text += (textItems[i].sdata);
      }
      return text;                                    // Return the text
    } // --- end GetText
    

    There seems to be a link "hidden" between the elements of the array and the first document, which of course will be broken, if it is closed. I thought to have all the stuff in the table which is necessary for phase II.

    Can anyone give me a tip how to get this working correctly?

    Hi Klaus,

    the simlest is to avoid 'acticeDoc '.

    Why do you not use sth. as:

    myOldDoc = open (fileNameOldDoc, openParams, openReturnParams);

    myNewDoc = open (fileNameNewDoc, openParams, openReturnParams);

    And not to close one of the until the script is finished. Otherwise the ID's of the paragraphs get lost.

    BTW: Are you in Darmstadt this week? http://Tagungen.tekom.de/F15/StartSeite/

    Then we could meet!

  • Linking the legends index

    Hello

    I am designing a book containing hundreds of images. Under each image, I would have a number that corresponds to a text in a list/index at the end of the book. How can I achieve in concrete terms?

    I tried to find a method with static captions without success (I may be to halfway to the answer?). Of course, I could type everything by hand, but there is no automatic link between each image and its description. The order - and therefore, the numbers - the images will change several times, as well as texts. Therefore, it is very easy to lose control if done manually by simly type a number and update the index. In addition, if a single image is moving, I can end up with a situation where I have to retype not only this specific number, but all the other numbers like well.I.e., guaranteed human error.

    I hope someone can help me with this problem!

    / H

    The legend could be done in a paragraph style where you apply the numbering of the paragraph style. Then you can set the text of legends like the color of the paper, while the number might have a character style that defines the number like black ink color, for example.

    For the list at the end, generate a Table of contents (there may be more than one table of contents in a document) that acts as an index of end for the photos. Paragraph collected styles will be will carry the title with a new paragraph might be called index_to_images style and color can be defined as, perhaps, the black color.

  • Changes to the paragraph formats are not anything related to all the

    Hello:

    The recent post from Dennis ("phiguru"?) touched on my problem, but mine is more simple.

    I stupidly changed text one together heading to red to remind me that basically contained revisions are needed, and that the old "mat" is not for publication. (I was in a hurry and were recalled from the conditional tags, of course. (Duh).

    Now, I'm trying to restore the paragraph formats affected in their original fonts colors. (Fortunately, my stupid first color change appears not to have affected the same paragraph formats in other topics.)

    These images seemed terrible when I posted this a moment ago, thank God by clicking on it opens a larger and clearer version.

    top of RH8 Styles and Formatting pod.PNG

    Using the editing tool - the icon of the pencil in the Styles and pod-shaped, I am trying to change the color of the font. Seems pretty simple, but just in case:

    Changing font color in main Styles window.jpg

    The line "tile Texture Mapping... "is one of the guilty parties heading 3 that refuses to change. I have change the color black, light underscore, click OK, and get nothing.

    I don't expect anything really of the 20th century to occur, such as the change applied universally, but when you tap on a new blank line which has been designated the heading 3, the new text is still red.

    Go to an existing line of heading 3 reddened and re - select the style desired apply a menu Style drop-down at the top left only annoys me that same infuriating business cited by Dennis:

    Heading 3 refusing to change.jpg

    You want to:

    1. update the Franck to reflect recent changes?

    2. reapply the setting in the form style to the selection?

    Any advice, anyone? I know I'm probably missing something obvious, but he continues to elude me, and my line of work, life and time are running ever forward.

    Thank you.

    Hi Lew

    Have you tried to do a right click in the line that is colorful and choosing "delete attribute"?

    See you soon... Rick

    Useful and practical links

    Wish to RoboHelp form/Bug report form

    Begin to learn RoboHelp HTML 7, 8 or 9 in the day!

    Adobe Certified RoboHelp HTML Training

    SorcerStone blog

    RoboHelp EBooks

  • Why wrap text too early before the paragraph width is reached?

    I was highlighting the elements on one of my pages (you will see the blue outline) and noticed that my paragraphs is enveloping way too quickly before it reaches the full width of the paragraph. In the image below, I even copied a screenshot in Photoshop and saw that I could move one of the words ("these") upwards with plent of spare part. What is going on?

    http://www.keithpurtell.com/kthings/para.gif

    And here is a link to the page, then you can check the HTML/CSS integration...

    http://www.keithpurtell.com/kthings/Claude-Debussy.htm

    (And Yes, I know that CSS validation choke on my gradients.)

    The browser is obedient padding-right: 10% and max-width: 38em rules on the p tag in the main style sheet

    p {make: 1em/1.4 normal;}
    letter-spacing: .03em;
    margin: 0 0 1em 0;
    Max-width: 38em;
    {padding-right: 10%;
    }

    Tip: use F12 (Developer Tools) in IE or Firefox extension Firebug and you can quickly isolate the CSS rules that cause these issues by simply clicking on the defective elements in page with your mouse.

  • Script will not apply the paragraph style

    Hello

    I'm new to scripting in InDesign (CS3), and I'm trying to understand why the scipt below does not apply a style in the following text file? :

    < ASCII-WIN >

    < ParaStyle: Heading 1 > who are we? < ParaStyle >:

    For ease of reading, I have shortend the text file to just two lines.

    The script that I use to open and to format the text file is:

    Create a new document.

    myDocument var = app.documents.add ();

    Set the units of measure and the origin of the rule.

    myDocument.viewPreferences.horizontalMeasurementUnits = MeasurementUnits.points;

    myDocument.viewPreferences.verticalMeasurementUnits = MeasurementUnits.points;

    myDocument.viewPreferences.rulerOrigin = RulerOrigin.pageOrigin;

    Get a reference to the first master spread.

    var myMasterSpread = myDocument.masterSpreads.item (0);

    Get a reference to preferences on the margins of the first page in the Master spread.

    var myMarginPreferences = myMasterSpread.pages.item (0) .marginPreferences;

    Now set up the page margins and columns.

    myMarginPreferences.left = 4;

    myMarginPreferences.top = 70;

    myMarginPreferences.right = 70;

    myMarginPreferences.bottom = 78;

    myMarginPreferences.columnCount = 2;

    myMarginPreferences.columnGutter = 14;

    The margins of page and columns for the right-hand page.

    var myMarginPreferences = myMasterSpread.pages.item (1) .marginPreferences;

    myMarginPreferences.left = 48;

    myMarginPreferences.top = 70;

    myMarginPreferences.right = 70;

    myMarginPreferences.bottom = 78;

    myMarginPreferences.columnCount = 3;

    myMarginPreferences.columnGutter = 14;

    Adding Master Page items

    var myMasterSpread = myDocument.masterSpreads.item (0);

    var myLeftPage = myMasterSpread.pages.item (0);

    var myRightPage = myMasterSpread.pages.item (1);

    var myLeftFooter = myLeftPage.textFrames.add ();

    myLeftFooter.geometricBounds = [70, 742, 728, 528];

    myLeftFooter.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

    myLeftFooter.contents = SpecialCharacters.autoPageNumber;

    myLeftFooter.parentStory.characters.item (0) .pointSize = 11;

    myLeftFooter.parentStory.characters.item (0) .leading = 14;

    var myRightFooter = myRightPage.textFrames.add ();

    myRightFooter.geometricBounds = [48, 742, 728, 542];

    myRightFooter.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

    myRightFooter.contents = SpecialCharacters.autoPageNumber;

    myRightFooter.parentStory.characters.item (0) .pointSize = 11;

    myRightFooter.parentStory.characters.item (0) .leading = 14;

    myRightFooter.parentStory.characters.item (0) .justification = Justification.rightAlign;

    Adding master text frames

    var myLeftPage = myMasterSpread.pages.item (0);

    var myRightPage = myMasterSpread.pages.item (1);

    var myLeftTextFrame = myLeftPage.textFrames.add ();

    myLeftTextFrame.geometricBounds = [70, 70, 714, 528];

    myLeftTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

    myLeftTextFrame.textFramePreferences.textColumnCount = 3;

    myLeftTextFrame.textFramePreferences.textColumnGutter = 14;

    Add a label to make the image easier to find later.

    myLeftTextFrame.label = "BodyTextFrame";

    var myRightTextFrame = myRightPage.textFrames.add ();

    myRightTextFrame.geometricBounds = [70, 48, 714, 542];

    myRightTextFrame.textFramePreferences.firstBaselineOffset = FirstBaseline.leadingOffset;

    myRightTextFrame.textFramePreferences.textColumnCount = 3;

    myRightTextFrame.textFramePreferences.textColumnGutter = 14;

    Add a label to make the image easier to find later.

    myRightTextFrame.label = "BodyTextFrame";

    Link the two frames using the nextTextFrame property.

    myLeftTextFrame.nextTextFrame = myRightTextFrame;

    The substitution of Master Page points and adds text

    var myTextFrame = myDocument.masterSpreads.item (0).pages.item (1).textFrames.item (0) .override (myDocument.pag es.item (0));

    Add text by setting the contents of the insertion of a string.

    In JavaScript, "\r" is a return character.

    .silence myTextFrame.insertionPoints.item (0) = "dok\r";

    Adding and applying a paragraph Style

    var myParagraphStyle = myDocument.paragraphStyles.item ("title 1");

    try {}

    var myName = myParagraphStyle.name;

    }

    {} catch (MonErreur)

    //The style of paragraph don't have not exist, so create it.

    myParagraphStyle = myDocument.paragraphStyles.add ({name: 'Title 1'});

    }

    We need to create a color. Check if the color already exists.

    myColor var = myDocument.colors.item ("Green");

    try {}

    myName = myColor.name;

    }

    {} catch (MonErreur)

    //The color have not exist, so create it.

    myColor = myDocument.colors.add ({name: 'Green', model: ColorModel.process, colorValue:[100,0,100,0]});})

    }

    Now set the formatting of the paragraph style.

    myParagraphStyle.appliedFont = "Arial";

    myParagraphStyle.fontStyle = "Bold";

    myParagraphStyle.pointSize = 24;

    myParagraphStyle.spaceAfter = 24;

    myParagraphStyle.spaceBefore = 24;

    myParagraphStyle.fillColor = myDocument.colors.item ("Green");

    Apply the style to the paragraph.

    myDocument.pages.item (0).textFrames.item (0).paragraphs.item (0) .applyParagraphStyle (myParag raphStyle, true);

    You can also use:

    myDocument.pages.item (0).textFrames.item (0).paragraphs.item (0) .appliedParagraphStyle = //myParagraphStyle;

    Import a text file

    Display a standard dialog box open the file to select a text file.

    var monFichierTexte is File.openDialog ("choose a text file");.

    If you selected a text file, and if you didn't press Cancel,

    Place the file of text on the first insertion point after the title.

    If ((monFichierTexte! = "") & & (monFichierTexte!) (= null)) {}

    myTextFrame.insertionPoints.item(-1).place (myTextFile);

    }

    Place a graphic

    Display a standard dialog box open the file to select a graphic file.

    var myGraphicFile is File.openDialog ("choose a graphic file");.

    If you have selected a graphics file, and if you didn't press Cancel,

    Place the graphic file on the page.

    If ((myGraphicFile! = "") & & (myGraphicFile!) (= null)) {}

    var myGraphic = myDocument.pages.item (0) .place (myGraphicFile);

    //Since you can place multiple graphics at once, the place method

    //returns a table. For the graph you have placed, get the first

    //item in the table (beginning of JavaScript arrays with element 0).

    myGraphic = myGraphic [0];

    //Create a style object to apply to the graphic image.

    var myObjectStyle = myDocument.objectStyles.item("GraphicFrame");

    try {

    var myName = myObjectStyle.name;

    }

    catch (MonErreur) {}

    //The an object style have not exist, so create it.

    myObjectStyle = myDocument.objectStyles.add({name:"GraphicFrame"});)

    }

    myObjectStyle.enableStroke = true;

    myObjectStyle.strokeWeight = 3;

    myObjectStyle.strokeType = myDocument.strokeStyles.item("Solid");

    myObjectStyle.strokeColor = myDocument.colors.item("Green");

    //The frame containing the graphic is the parent of the graphic.

    myFrame var = myGraphic.parent;

    myFrame.applyObjectStyle (myObjectStyle, true);

    //Resize the frame to a specific size.

    myFrame.geometricBounds = [0,0,600,600];

    //Fit the graph in the image proportionally.

    myFrame.fit (FitOptions.proportionally);

    / / Next, mount the frame to the resized image.

    myFrame.fit (FitOptions.frameToContent);

    var myBounds = myFrame.geometricBounds;

    var myGraphicWidth = myBounds [3] - myBounds [1];

    //Move the graphic frame.

    var myPageWidth = myDocument.documentPreferences.pageWidth;

    var myTopMargin = myDocument.pages.item (0).marginPreferences.top;

    myFrame.move ([myPageWidth-myGraphicWidth, myTopMargin]);

    //Apply a wrap to the graphic frame.

    myFrame.textWrapPreferences.textWrapType = TextWrapTypes.boundingBoxTextWrap;

    myFrame.textWrapPreferences.textWrapOffset = [12, 24, 12, 24].

    }

    I hope someone can point me in the right direction.
    Thanks in advance.
    Ron

    Hey, Ron.

    The problem has nothing to do with your script. You can see if you attempt to place the file from indesign tagged text by hand.

    Your instinct for divide and conquer for debugging is a good - have a short text file to work with is very useful - of course this is also true for the script.

    During the validation of the scripts on the forum, please do not use the syntax insert > feature Java which lies behind the > arrow in the toolbar. Otherwise, cut and paste your script are difficult requiring manual corrections.

    Anyway, your problem is that each paragraph can have only a single paragraph style, and it's the last one that you define.

    So in your IDTT file, you set the heading 1 paragraph style, enter the content of the paragraph and then set the style of paragraph votes to zero.

    If you have included a line break before setting the style of paragraph votes to zero, you must set the None style for the following paragraph. But since you have not, it resets just the style to the current paragraph.

    In short: success back before .

  • links and paragraphs? Links vs gold points!

    Ok

    Seems that the two are block elements and they don't like each other.

    They insist on being on different lines.

    I want more of MY links to be part of the paragraph and NOT necessarily on a separate line.

    I tried to do a style which simply stated that everything that they have been assigned to [< a >, < p >, < div >, < span >, etc.] would be "inline".

    did not work. The link went again on a separate line.

    I publish my article on both the net and on paper. Want them to be identical.

    Thank you for your advice/suggestions.

    Dan H.

    Also notice the "nervousness links!

    What are the causes that?

    Links of nervousness are caused by conflicting CSS rules.  Remove the display: block and display: inline of your a: link and a: hover rules.

    Nancy O.
    ALT-Web Design & Publishing
    Web | Graphics |  Print | Media specialists
    www.Alt-Web.com/
    www.Twitter.com/ALTWEB

  • Some links the web pages were replaced with fixed references on a saved page

    I saved a http://www.lilypond.org/doc/v2.18/Documentation/notation/index.html page on my hard drive. The links in the table of contents on the left are all on the original site. I looked at the file on the disk, and this is the case. "An example is < a href ="toc-spacing-questions-1"name ="http://www.lilypond.org/doc/v2.18/Documentation/notation-big-page#spacing-issues"> 4. Spacing problems < /a >

    But the original file had links the in the same place (an expert Web site it tells me), < a href = "toc-spacing-questions-1" name = "rating-big-page #spacing - questions" > 4. Spacing problems < /a >

    Not all links are changed: some of them in the body of the text are links local. What I find even more bizarre.

    Why (and how) Firefox changes the HTML text?

    Thanks Finitarry - but the links are changed to point to the original server, not my downloaded copy. That's the problem!

    Also thank cor - el. I use "web page, complete" for download.

    I think I found the problem, now that you pointed out where I should be looking. I found the original HTML code, and in most cases, the references are strictly local. But in the case of problem, the link contains the name of the file, what Firefox interprets as an application to point to the original file on the server rather than the local copy. Is this is a bug or a feature would make an interesting discussion. I'm going to ask that the web Manager is is what they meant to happen. I'll try another browser to see what happens there.

  • linking the two sliders property nodes in a graph

    Hello

    I had a chart with 2 sliders. And I have to be able to set the coordinates of each cursor using nodes of property. "However, if I click on the mouse button right button - create - node - cursor - property cursor position - there are only 3 possibilities of 'Everything', 'X', Y ' that links only to one of the sliders (in fact I don't know who). How is possible to link the nodes property of 2 sliders position to 2 sliders in a chart?

    Thank you very much for the discussion.

    Martin Pekar

    Property nodes run from top to bottom. Resize the node property to the four elements as follows:

    and two positions of the wire.

  • How can I change the account of flight that is linked the Hawaii adventure Pak?

    How can I change the account of flight that is linked the Hawaii adventure Pak?

    You must contact billing support, please click contact us at the bottom of: http://support.xbox.com/en-US/pc/billing-faq

  • A document I had previously recorded on my flash drive. All of a sudden the paragraph symbol appeared at the beginning of each line in the document and in documents on flash drive

    Original title: Word 2003 Documents

    I was working on a document I had previously recorded on my flash drive.  All of a sudden the paragraph symbol appeared at the beginning of each line in the document and all documents on the flash drive.  In addition, it appears on every document in the my documents folder.

    Can anyone help?

    Google search:

    How do I turn off paragraph symbol in Word 2003

    "You should have a paragraph symbol button in the bar... click on this tool and formatting symbols will disappear."

  • Change the paragraphs found in the standard paragraph style?

    I have look here for about an hour and could not find a discussion for this.  I see where it clears the substitutions but not change Style all together.  Here's what I need help do.  If I left saying text 4 selected boxes, I want the power to change the standard paragraph to paragraph and character set to None style style. If there is already can a discussion that I missed in this regard you point me in that direction.  If this is not the case, can I please help with this.

    You can usetpk1982of script to change all the paragraphs of the standard paragraph. But if you only want the block of selected text, then you will need to adjust thescript to change paragraph styles in the selected text frames.

    basically replace line 2 by var allTFrames = app.selection;
    Also, if you need to clear character styles need to do before you change the paragraph style or character styles will be removed and the formatting will be left as a local override.  Your final script after that these changes would be:

    myDoc var = app.activeDocument;

    var myTFrames = app.selection;

    for (var i = 0; i)< mytframes.length;="" i++)="">

    var tFrame = myTFrames [i];

    pStory var = tFrame.parentStory;

    var allParas = pStory.paragraphs.everyItem ();

    pStory.characters.everyItem () .appliedCharacterStyle = app.activeDocument.characterStyles [0];

    allParas.appliedParagraphStyle = app.activeDocument.paragraphStyles [1];

    }

    Note: instead of simply replacing the 2 wire I also changed the name of the variable to reflect rather than leave it in the form allTFrames; and add line 7... Other than these two changes everything was the script of tpk1982

  • Is it possible to link the CTI to a nested sequence?

    I have a nested sequence, and I want to change the position of the keyframes based on what is on the main sequence. I'd like to be able set up the ICT in the main sequence, then go to the nested sequence and have the ICT at the same position, then make the change.

    The way I did it is to calculate the time elapsed since the beginning of the nest in the main sequence and then go to the nested sequence and the displacement of the ICT at that precise moment. Shortly.

    Is it possible to link the CTI to a nested sequence? i.e. everywhere where ICT appears in the main sequence, when you go to the nested sequence, ICT is in the same position.

    I am running CS6.

    I can't think of a way, but it would be a good request for future versions:

    Feature request/Bug Report Form

Maybe you are looking for