Alert in excess of table

Hello

I need to know that any table contains text overset in the document. Coding tried does not work as expected, please help me with this problem:

if(app.activeDocument.stories.everyItem().tables.everyItem().cells.anyItem().overflows==true){
    alert("Overset table found")
    }

Kind regards

Kitty

Hello Kitty,

Try this,

If (app.selection [0].columns.everyItem (). cells.everyItem (). overflows.join () .indexOf ('true')! = - 1).

Alert ("Overset");

Tags: InDesign

Similar Questions

  • Oracle Excessive Partition table

    People,
    We have a server Oracle 10 g. My question concerns an Oracle table that until now has 183 scores. Whoever created this table, put in place to add a new partition at the end of each month. I checked and verified in each partition, there are anywhere between 20 000 and 40 000 lines. Each line consists of 218 bytes. My manager is to get rid of these partitions. He just wants me to check that let down the barriers would not impact the response time that much. I can see Adding a partition of all ranks from 500 000 to 1 000 000, but having a partition for 20, 000 to 40 000 lines seems excessive to me. At the pace partitions are added to this table, in 5 years, it might have more than 600 scores. Finally, like anything else in life, there must be some back of draw for Oracle table partitioning. I saw a lot of 'Pros' on the Web but not 'jerks '.

    I would appreciate your opinion on it.

    Seyed

    I agree with your idea that the partitioning for 40K lines (with the information provided) seems excessive. Do the calculation lines 40 K * 218 partitions should be out only about 8 million, I would not immediately consider a candidate for partitioning.

    Partitioning of the benefits that you are aware of; most of them involves the use of large data sets. Pruning is a huge advantage by excluding the vast amounts of data that are unwanted review of the join.

    There are disadvantages too, for the most part buried under the volume of data partitions work usually with. There is a performance slightly beat on standard queries against a partitioned table while SQL decides which partitions to hit. You can observe this by querying the table, then by a specific partition trying only to get data for a specific partition.

    There is also the question of how many partitions you want to keep track of? You ask the right questions.

    Its possible that the partitions help performance; the only way to be sure is to create a table that is not partitioned using DEC, indexes, and constraints such as the partitioned table and run performance tests.

  • SQLite can extract data on the BB Simulator?

    Hello world. I'm creating a database of HTML5 based using the webworks platform in BB simulators. Unforuntaely, my database is unable to retrieve the data. It can create the database, create tables, and even insert data, but it simply refuses to extract the data. No errors are thrown or picked up.

    Here's a part of my code. I tried to debug the days without success. Any help is appreciated!

    function setupDB() {
    try {
    db = openDatabase('IESSSdb', '1.0', 'MG app db', 5 * 1024 * 1024);
    
        if (db) {
            db.transaction(function (tx) {
    
    tx.executeSql('CREATE TABLE IF NOT EXISTS maagData (id int unique, name text, group text, value int, unit text, change text)');
            tx.executeSql('CREATE TABLE IF NOT EXISTS settings (id unique, appSettings text, userSettings text)');
            tx.executeSql('INSERT INTO maagData (id, name, group, value, unit, change) VALUES (?, ?, ?, ?, ?, ?)', [1, 'kingsha', 'SUPPLY', '999', 'MW', 'up']);
    
            alert('I made the tables');
    
            //select stuff
     tx.executeSql('SELECT name,value FROM maagData WHERE key = 1', [], function (tx, results) { document.getElementById("taContents").value = results.rows.item(0).name + "=" + results.rows.item(0).value; alert('i found it' + results.rows.item(0).name); });
    
             alert('done selecting');
    
            },
            function (tx, error) {
                // error
                alert('1.Something went wrong: '+ error.message);
            });
        }
        else {
            alert('could not find a db man');
            document.getElementById('taContents').value += "\r\nNo DB\r\nopenDatabase:\r\n" + openDatabase;
        }
    }
    catch (err) {
        alert(err);
        document.getElementById('taContents').value += err;
    }
    }
    

    As I mentioned previously, the tables are created successfully. It's just the "select" transaction does not work. I have no clue there?

    Hi kingsha,

    There are two main problems with your code.

    The biggest problem is that you are not taking into account the nature of JavaScript. JavaScript has essentially 1 wire, and all database methods are asynchronous. This means that when the method returns, its unlikely the code actually finished, but you always try invoke the next part. This has the potential to cause you serious problems in the future.

    The second problem is that some of your SQL was flawed. The Group of words and the value cannot be used for the column names. And you have used the term key and id.

    function onError (tx, err) {
        alert("Error on transaction with message: " + err.message);
    }
    
    function onDBCreate(db) {
        db.transaction(function (tx) {
            tx.executeSql('CREATE TABLE IF NOT EXISTS maagData (id int unique, name text, groupName text, intValue int, unit text, change text)',
                [],
                function (tx, r) {
                    tx.executeSql('INSERT INTO maagData (id, name, groupName, intValue, unit, change) VALUES (?, ?, ?, ?, ?, ?)',
                        [1, 'kingsha', 'SUPPLY', '999', 'MW', 'up'],
                        function (tx, r) {
                            tx.executeSql('SELECT name,intValue FROM maagData WHERE id = 1',
                                [],
                                function (tx, results) {
                                    alert(results.rows.item(0).name + "=" + results.rows.item(0).intValue);
                                },
                                onError);
                        },
                        onError);
                },
                onError);
        });
    }
    
    function setupDB(){
        try {
            var db = window.openDatabase('sasdfasdffd', '1.0.1', 'adasdfasdfc', 5 * 1024 * 1024, onDBCreate);
        } catch (err) {
            alert("Caught Error: " + err);
        }
    }
    
  • DML throw/Skip/ignore Transactions with asynchronous CDC

    Hi all

    We have set up CDC with LogMiner in our database and we wonder how we can take specific DML instructions in CDC. Our goal is to avoid the propagation of the changes affecting entire tables and are unrelevant to the target of data warehouses.

    We tried with stop and restart both apply and capture processes (dbms_apply_adm.stop_apply, dbms_capture_adm.stop_capture) without success and neither alter the value change works.

    BEGIN

    DBMS_CDC_PUBLISH. () ALTER_CHANGE_SET

    change_set_name = > "XXXXX."

    enable_capture = > ' n ");"

    END;

    in the past, we used "begin dbms_apply_adm.set_parameter('XXXXXX','_ignore_transaction','1243213421')" to remove the capture of product requests, but we cannot identify the transactions unless it is saved in the file alert nor in the tables SPILL.

    Do you have an idea how we can achieve it? Our goal is to avoid these changes to the change tables.

    Thanks in advance for your help

    Hello

    I finally did with the following syntax:

    BEGIN

    DBMS_STREAMS_ADM. () ADD_TABLE_RULES

    table-name => ' OWNER. TABLE ',

    streams_type-online "capture."

    streams_name-online "Nom_flux."

    queue_name => ' Nom_file_d ' waiting. "

    inclusion_rule => FALSE,

    and_condition => ': lcr.get_tag () = HEXTORAW ("50")',

    include_tagged_lcr-online TRUE

    );

    END;

    --------

    I use this for queries that I want to throw:

    Start

    DBMS_STREAMS. SET_TAG (tag-online HEXTORAW('50'));

    commit;

    DML STATEMENTS...

    commit;

    DBMS_STREAMS. SET_TAG (tag-online null);

    end;

  • Traffic (dynamic Images) in the analysis of OBIEE11g

    Hi all

    I'm trying to deliver a dashboard alert page. This alerts page contains a table with four columns:
    Names 1) measure.
    (2) real value of measures.
    (3) target action.
    (4) status. (Red, green or yellow signals)

    I am able to fill the first three values in the above list in my page. Now I have to fill the fourth column so that:
    case 1) real value if > target value, then a picture of the Green Signal must fill.
    case 2) real value if < target value, then an Image of the Red Signal must fill.
    case 1) real value if value = target, then a yellow Signal Image must fill.

    I need help/advice on how complete this fourth column. I did the same thing in Cognos. Need help for OBIEE11g.


    Thank you best regards n
    Dev

    Hi Dev,
    Follow these steps

    Criteria-> 'Choose the 4 column' column Proparties-> conditional formatting-> add a Condition->' choose column 4'
    Choose the condition and value
    Press OK

    @ Edit Format-> Style - Section "cell"
    Click on the square next to the Image
    @Graphics -? choose 6st image or any other

    Mark correct or useful if pls help

  • Adding and deleting images in the Group of the user interface

    We try to make a user interface to display a preview of the images three at a time using pageination.

    In the Code below, I can successfully remove the three images currently in my group, but when I go to add the three images, they add with success but they do not appear in the group. The result of the alert is my three new image objects.

    myImageGroup.remove(myImageGroup.children[2]); panel.layout.layout (1);

    myImageGroup.remove(myImageGroup.children[1]); panel.layout.layout (1);

    myImageGroup.remove(myImageGroup.children[0]); panel.layout.layout (1);

    Alert (myImageGroup.Children);

    Table = table + 3;

    myImageGroup.add ("image", undefined, imageArray [activeImage]);

    myImageGroup.add ("image", undefined, demonstration [Table + 1]);

    myImageGroup.add ("image", undefined, demonstration [London + 2]);

    Alert (myImageGroup.Children);

    Any ideas on how to get them to appear?

    Thank you

    Randy

    > I know it's probably very basic inDesign scripting

    Not at all!

    Apart from the script by Marc, Gerald Singelmann has a script on his blog (http://indesign-faq.de/de/ScriptUI_scrollbar) that does exactly what you want. Its code can be informative for you.

    Peter

  • Collection ArrayCollection in flex and ArrayList in java




    Salvation of this world don't
    Here I am with my problem with the hope someone can solve it
    I am totally new to flex and I work only for 3 days in flex. and I learned a little more.
    I want to get the values of database that is received from java to flex datagrid object by using the data provider.
    I did quite well in my opinion. But I could not produce the result in the data grid. Since I am very new. I don't know what is happening.

    my code is here, please help me.

    My mxml file: Myadmin.mxml

    <? XML version = "1.0" encoding = "utf-8"? >
    "" < mx:Application xmlns:mx = ' http://www.adobe.com/2006/mxml ' layout = "vertical" >
    < mx:RemoteObject id = "ber" destination = "dock" showBusyCursor = "true" fault = "faultHandler (event)" > "
    < name mx:method = "getBerth" result = "resultHandler (event)" / >
    < / mx:RemoteObject >

    < mx:Panel id = 'Top' title = "MaBase" width = "100%" height = "40%" enabled = "true" >
    < mx:TextArea id = "sql" width = "100%" height="100%"/ >

    < mx:Button label = "Execute" click = "handleSend ()" / >

    < / mx:Panel >

    < mx:Panel id = "bottomPanel" title = "Results" width = "100%" height = "60%" enabled = "true" >
    < mx:DataGrid id = "dg" dataProvider = "{result}" width = "100 percent" height="100%"/ >


    < / mx:Panel >
    < mx:Label id = "resultLabel" text = "Onumae puriyale ulgathulae" / >

    < mx:Script >
    <! [CDATA]

    Mx.rpc.events import. *;
    Import mx.collections. *;
    Mx.controls import. *;
    Import mx.utils.ObjectUtil;




    caching empty ArrayCollection collection so that we don't continue to create
    new

    private var emptyResults:ArrayCollection = new ArrayCollection();

    [Bindable]
    public var result: ArrayCollection collection = emptyResults;







    private void resultHandler(event:ResultEvent):void
    {
    Alert.Show ("event.result table of results", ObjectUtil.toString (event.result as ArrayCollection collection));
    result = ArrayCollection (event.result);
    var myCursor:IViewCursor=result.createCursor();
    var oldLength:int = result.length;

    Alert.Show (oldLength.ToString ());




    }

    private void faultHandler(event:FaultEvent):void
    {
    Alert.Show (event.fault.faultString, "Error");
    }

    private function handleSend (): void
    {


    ber.getBerth ();


    }




    []] >
    < / mx:Script >


    < / mx:Application >

    My java object: Berth.java


    package samples.sqladmin;
    import java.sql. *;
    Import Java.util;
    import java. IO;

    public class Berth

    {
    Public Shared Sub main (String args []) throws exceptions
    {
    List ArrayList = getBerth();
    System.out.println ("the list is =" + list);
    }

    public static ArrayList getBerth () throws Exception {}
    Connection con = null;
    Statement st = null;
    ResultSet rs = null;
    ResultSetMetaData rsmd = null;
    List ArrayList = new ArrayList();
    HashMap line = null;
    try {}
    Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver");
    } catch (ClassNotFoundException nctf) {}
    System.out.println (CNFE.getMessage ());
    }
    try {}
    con = DriverManager.getConnection ("jdbc:odbc:Jurong", "","");
    St = con.createStatement ();
    String sql = "select * berth;
    RS = ST. ExecuteQuery (SQL);
    rsmd = rs.getMetaData ();
    int colCount = rsmd.getColumnCount ();
    While (RS. Next {}
    line = new HashMap();
    for (int i = 1; i < = colCount; i ++) {}
    Row.put (rsmd. GetColumnName (i), rs.getString (i));
    }
    List.Add (Row);
    }

    }
    {} catch (SQLException sqle)
    System.out.println ("enna da yogans eeeeee...");
    System.out.println (sqle.getMessage ());
    }

    If (con! = null)
    con. Close;
    If (st! = null)
    St.Close ();
    back list;

    }

    }

    my remote-config file is:

    < destination id = "dock" >
    Properties of <>
    samples.sqladmin.Berth < source > < / source >
    < / properties >
    < / destination >

    I got the table in flex collection object, but it gives the values received in java

    Please help me.
    Thanks in advance
    yogans.

    Hi my dear friends

    I'm sorry to put you in trouble. I got the result. The problem is
    not with the code. its with my system. The problem is that I have configured
    same name for datesource for system and user DSN DSN name. After that I deleted
    a user DSN data source. I got it working.

    Thank you very much william, thank you much Nelson for your spontaneous response

    Thank you
    Yogans

  • Check material shortages can notify

    In R12, we wondered if the simultaneous program "Check material shortages" may send a notification to the applicant when the flag of the shortage of material changes from 'Yes' to 'No'.

    Thank you

    Sanjib

    In your original post everything you said it was
    "Notice to the applicant when the flag of the shortage of material changes from 'Yes' to"No '"

    I assumed that you meant that the flag has been changed on the master of the order of the day and that is why I recommended alerts to the master of the order of the day.

    Now I understand you meant the work orders.
    I don't think that seeded shipment notification process will do what you need. You will need to write an alert on the wip_requirement_operations table.

    Hope that answers your question
    Sandeep Gandhi
    Independent consultant
    513-325-9026.

  • How to detect excess content accurately when you use tables?

    Hello, all. I am familiar with the way to detect the content in excess of a block of text, namely:

    If (myTextFrame.parentStory.contents.length > myTextFrame.contents.length) {}

    Alert ('there is overset text');

    } else {}

    Alert ("' there is no overset text");

    }

    However, the content of my story is three tables, rather than text. Each table contains dozens of cells filled with text. Yet, the 'length' of the framework property is only 3! How can I accurately read the length of the content as most of it is in the tables so that I can test it for overset text?

    In case it helps someone, a more detailed description is:

    1. If there are three tables in the history and only 2 adjustment on a block of text of page size, the length property of this frame will be 2. Kind of weird, but is not a problem yet.
    2. In the same scenario, however, if the third table that BEGINS on page but spills on (creating a situation in excess), the length property of this frame will be 3 - causing her think test there is NO overset text! InDesign sees just 3 characters from history and only 3 characters on this page.
    3. When I look at the property 'content' of the story, he reads just 3 characters square. They obviously have some sort of special character. InDesign apparently takes the notion of 'table' and simply writes a character of space reserved for it in the property 'content '.

    I'll have to create a routine to loop through every cell of each table and add it somehow to get the length you want? How I just test for in excess-ness?

    Thank you!

    There might be a better way, but I just built this expression:

    app.activeDocument.stories.item (0).tables.lastItem (). cells.lastItem (). point insertionPoints.last (). parentTextFrames.length

    ;-)

    Dirk

  • Alert on custom table does not

    Hello

    I create a custom alert based on a custom table. The event fires only when insert or update the table.

    And then I create or update the data, but the alert does not and then I check the history of this alert, no data found.

    My diagram is PVL and was recorded in Oracle.

    My custom table is XPV_INV_TRANSPORT_COST_DTL and has been registered with the AD_DD API. REGISTER_TABLE and AD_DD. REGISTER_COLUMN.

    and this custom table stands and all the privileges granted to applications too.

    Is there any step I'm missing to generate the alert?

    Any Suggestion?

    Kind regards

    THERY

    Hello

    I found a solution, in the installation of the tab of the alert form, I filled the work unit and how it works!

    My Question is if this (operational unit) field must be filled?

  • Question: How can I format message summarized as alert Oracle table?

    Hi Expertise,

    I have problem with oracle alert I designed the model for the message it will be veiw table on the mail and this is the model:

    Capture2.PNG

    then when I tested and sent mail it just like that:

    Capture.PNG

    so please help me to find what is the right format and how I can do

    and one more thing please when I was reading the Oracle User Guide alert I didn't thing that (do not use spaces 1 and 2 in the lines of the model of the summary) what this means please help thanks for your time

    Hello

    I guess we cannot table format to alerts, it is better to find another way like pl/sql code...

  • User alert at points outside the table in Extendscript

    I have a script that checks a folder for the files contained in a table format image.

    I have to be able to warn the user if:

    1. a folder they choose contain any type of file not included in the table (illegal file type).
    2. the folder they choose more than one file type included in the table (mixed types of legal files).

    or

    1. the folder they choose contains any type of file, not in the table more one type of file that is in the table (mix of types of illegal & legal files).

    Here's the code that checks through a folder for certain types of files.

    var DARKfileList = [], FILE_TYPE, FTlen, i, SEARCH_MASK;
    FILE_TYPE = ["orf", "tif", "tiff", "jpg", "jpeg"];
    FTlen = FILE_TYPE.length;
    for (i = 0; i < FTlen; i++) {
        SEARCH_MASK = "*." + FILE_TYPE[i];
        DARKfileList = DARKfileList.concat(DARKinputFolder.getFiles(SEARCH_MASK));
    }
    alert('found: ' + DARKfileList.length + ' files');
    

    For now I have sort of reached part 1 but it is messy because it simply checks if DARKfileList is empty. Can I use this to alert the user that the file that they choose in a vacuum, but I would much prefer another search for "types of illegal files" it's checking the empty list:

    if (DARKfileList.length == 0)
    {
        alert('Folder does not contain allowed file types!','DARK FRAME folder error');
    } 
    

    Kind regards..

    It's weird, it was not the subfolder thing this morning, when I tried, but I added a few lines to make sure that the files are only of the parent folder.

    #target photoshop
    
    var fileTypes = ['TIF', 'TIFF', 'JPG', 'JPEG','PSD','RAF'];//keep uppercase
    var allFiles = new Array()
    var fileList = new Array();
    var legalTypes = new Array();
    var illegalTypes = new Array();
    var folderToUse = Folder.selectDialog ('Select a folder');
    var searchMask = '*.???*'
    allFiles = folderToUse.getFiles(searchMask);
    for(var i = 0;i1&& illegalTypes.length ==0){alert('More than one legal file types.\nNo illegal file types.')}
    if(legalTypes.length==1&& illegalTypes.length > 0){alert('only one legal file type.\nContains illegal file types.')}
    if(legalTypes.length>1&& illegalTypes.length > 0){alert('More than one legal file type.\nContains illegal file types.')}
    if(legalTypes.length==0 && illegalTypes.length > 0){alert('No legal file types.\nContains illegal file types.')}
    
    function checkFiles(fileArray){
        if(fileArray.length>0){
            for(var i =0;i		   
  • Trigger the alert based on the data in the Table

    Hello

    Need your help on how to proceed on the scenario below.

    I have a table that stores some of the newspapers that has an attribute date, name, name of the table and the count attribute to load the batch for each race counts.

    I need to compare the counts of Eve with the current day counties and trigger an alert if there is a gap in the counties (as say if there is more than 30% of the deviation of County which we set up in the parameter value)

    How can I get above, that I must write a procedure, or sent using sql.

    Please suggest.

    Thank you and best regards,

    Jessica

    If compared with the previous run using only data from yesterday and today:

    with

    run_stats as

    (select 'CDR_SCAN' job_name, systimestamp - 1 last_update_dt, 'CDR_MASTER' table_name, 1000 row_count union double all the)

    Select 'CDR_SCAN', systimestamp, 'CDR_MASTER', 700 dual Union all

    Select 'CDR_DETAIL_JB', 1-systimestamp, 'CDR_DETAIL', 2000 of all the double union

    Select 'CDR_DETAIL_JB', systimestamp, 'CDR_DETAIL', double union all 0

    Select 'CDR_DETAIL1_JB', 1-systimestamp, 'CDR_DETAIL1', 1000 Union double all the

    Select 'CDR_DETAIL1_JB', systimestamp, 'CDR_DETAIL1', double union all 800

    Select 'BILLING_JB', systimestamp-1, "BILLING", 1000 dual Union all

    Select "BILLING_JB", systimestamp, "BILLING", 600 double Union all

    Select 'CDR_DETAIL_JB1', 1-systimestamp, 'CDR_DETAIL', 2000 of all the double union

    Select 'CDR_DETAIL_JB1', systimestamp - 2/24, "CDR_DETAIL", 5000 Union double all the

    Select 'CDR_DETAIL_JB1', systimestamp - 1/24, "CDR_DETAIL", 3000 Union double all the

    Select 'CDR_DETAIL_JB1', systimestamp, 'CDR_DETAIL', 2500 double

    )

    Select job_name, last_update_dt, table_name, row_count,

    -case when row_count / lag (row_count) over (partition of the table_name, job_name arrested by last_update_dt)<>

    then more "decrease of 30%.

    When row_count / lag (row_count) over (partition of the table_name, job_name order of last_update_dt) > 1.5

    then more "increase by 50%.

    end alert

    of run_stats

    where last_update_dt > = trunc (systimestamp) - 1

    JOB_NAME LAST_UPDATE_DT TABLE_NAME ROW_COUNT ALERT
    BILLING_JB 07.04.23.000000 2 DECEMBER 14: 00:00 BILLING 1000 -
    BILLING_JB 07.04.23.240081 3 DECEMBER 14: 00:00 BILLING 600 reduction of 30% more
    CDR_DETAIL_JB 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL 2000 -
    CDR_DETAIL_JB 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL 0 reduction of 30% more
    CDR_DETAIL_JB1 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL 2000 -
    CDR_DETAIL_JB1 05.04.23.000000 3 DECEMBER 14: 00:00 CDR_DETAIL 5000 more 50% increase
    CDR_DETAIL_JB1 06.04.23.000000 3 DECEMBER 14: 00:00 CDR_DETAIL 3000 reduction of 30% more
    CDR_DETAIL_JB1 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL 2500 -
    CDR_DETAIL1_JB 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_DETAIL1 1000 -
    CDR_DETAIL1_JB 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_DETAIL1 800 -
    CDR_SCAN 07.04.23.000000 2 DECEMBER 14: 00:00 CDR_MASTER 1000 -
    CDR_SCAN 07.04.23.240081 3 DECEMBER 14: 00:00 CDR_MASTER 700 -

    Concerning

    Etbin

  • Textframe excess tables appear in reverse order

    Hi people,

    I have a script that generates a textframe, then a bunch of tables are essentially brought superimposed in the TextFrame. Something like this (please forgive the html notation - there is not really like that, but you get the drift)

    < Textframe >

    < Table1 >

    < Table2 >

    < Table3 >

    table < 4 >

    < Table5 >

    < table > 6

    < Tableau7 >

    < Table8 >

    \L Table9 >

    < / Textframe >

    Everything works fine as long as the length of the column is deep enough to accommodate the textframe news. However, if the info is greater than the height column, forcing the Textframe back excess, that's where the trouble starts. Once excess occurs, and I try to copy / paste (manual or automatic overflow), text, tables come out like this:

    < Textframe >

    < Table1 >

    < Table2 >

    < Table3 >

    table < 4 >

    < Table5 >

    < table 6 > < - This is the last table that started in front column

    \L Table9 > enter in excess.

    < Table8 >

    < Tableau7 >

    < / Textframe >

    What IS consistent is that the table AFTER the last table that starts before the excesses of the winds being at the bottom of the heap, with virtually everything after the last 'good' table (the last table that started in the column before going "in excess") being in sense reverse order.

    I was now all day, try idLocationOptions.idAfter - anything and everything I could think to throw at it, everything to nothing does not.  I use ID CS6, Win7 and scripts in VB.Net. If you can think of nothing to try it in VB or Javascript (I'm not too good with Applescript I'll try) please let me know your opinion.

    Thanks much for any help.

    TT

    Hi people,

    Seems that I have found an answer. I thought I tried, but I forgot that I had a DIFFERENT routine, putting a graph inbetween two tables and graphics should have been the last table - and so, whenever I saw the graph between the two tables, I thought that I had the same problem since the contents of the table all pretty much looks the same. So I have set hours ago kept and fair problem to try to solve it again... Aarrgg...

    While I don't really understand WHY all the tables will cool after the excesses, here is what fixed it for me when adding another table:

    TF. Tables.Add (idLocationOptions.idAfter, tf. Paragraphs.LastItem)

    (where tf = a TextFrame)

    Hope this helps someone.

    Thank you

    TT

  • Table of contents Table of contents in excess but cannot be a text box

    I'm building a book ID CS6.  My OCD is in a file of preliminary pages.  When I update my OCD, it updates only through Chapter 9, even through there are 11 chapters.  When I open the table of contents in the mode of the editor of history, it is said there is overset text and show the rest of the chapters for the TOC.  However, when I try and expand the area of text, nothing happens. I checked the file for Chapter 9 and see nothing different from other files.  I already rebuilt this book because the models and other once got all twisted up.  I prefer not to rebuild again.

    Screen shot 2014-01-07 at 3.57.09 PM.png

    It turns out that the problem was caused by the dashed line.  I had the line set at 1 p p 0 and - 1 0 to leave a space for the chapter number.  However, when the number became 2 digets (10, 11, etc.) the text was obliged to the mark of the tab, made wide for the text box and so in excess.  I don't know why he didn't just go on a new line, but by increasing the dash a little, the text appeared.

Maybe you are looking for

  • Cannot remove from the applications folder

    Having a problem of deletion of any application in the Applications folder. I use El Capitan 10.11.6. If I try and drag any application to the trash or command + DELETE, I get the message 'the point 'whatever' cannot be moved to the trash, because so

  • Cannot start linux USB drive on the PC of Compaq CQ2903ES

    Hello I am trying to install linux on a Compaq CQ2903ES desktop PC. I disabled startup secure on the bios, but the system does not boot from a linux live USB. Any suggestions? Thanks in advance.

  • Satellite A40 - question about upgrading the processor

    If I upgrade my Satellite A40 processor with hyper-threading technology to 3 .00GHz, the problem s s don't past not my chipset for hypo threads, should I have a problem on my terms of portable?...

  • Can damage the FPGA module if I connect accidentally two pins writing together.

    My current configuration has a PXI chassis with two FPGA modules.  Each FPGA module has an adaptation Module 6581 on that.  I would like to test the signal through my system path by having the user to move some cables that would be a reason for a ret

  • Printer. HP psc 1350 all - in - one.

    I bought a new laptop but cannot find the driver for the hp psc 1350 all - in - one printer. I even bought software for the driver online, but still no luck. Help, please.