CS3 strange order with LabelGraphics.jsx

Hi all,
I am experiencing a strange behavior with LabelGraphics.
I can not figure how to make the script use a defined list in conjunction with a paragraph style to properly number the images from the beginning of the document downwards (or even continue across an InDesign book).
Any ideas?
Thanx in advance
Michael

to Olav,
Thanx for letting me realise that it is not a problem from my side. I went on and tried the change you suggested and it worked as you predicted. It does not give consistent results. I gets all mixed up when I had more than 3 images on a page.
to loic,
I think that scripting is about cheating. You get to execute mountainous tasks with just one click. I can fully understand your way of thinking. I do not think I could reorder the paragraphs or relink the text frames since I work with long documents in autoflow (chapters of 50+ pages)
The way I see it it would have to be one of two ways.
Either 1. A topleft - bottomright approach, or
2. A gravity like approach. This way the script would "hit" the highest on the page image going to the lower and so on.
So could you please elaborate on your solution? And when I say elaborate I mean provide the copy/paste I would have to apply since I do not know scripting?
It would be great if it worked.
Thanx to both
Michael

Similar Messages

  • I can't update my Photoshop CS3 in order to open pictures made with Canon Eos 60 D

    I can't update my Photoshop CS3 in order to open pictures made with Canon Eos 60 D

    It's not terrible even if you jump a few versions; the Adobe folks don't want change a good thing, so much of what one expects is still where you expect to find it from version to version.  A person who upgrades from Photoshop CS3 to CS6 will find the new Tabbed View, introduced first in CS4, and probably won't like it (at first), but it actually can grow on you.
    With CS6 they've introduced this new "shape layer" abstraction of what was once a fill layer with a vector mask.  Beyond that, I suppose there must be 3D changes, though I haven't the experience to tell since Photoshop CS6 is the first version I've moved up to Extended with.  I admit, the 3D stuff is fun to play with.
    Just to give you an idea of what I've been doing with Photoshop just this evening...  My collaborator and I have been photographing carbon stars - red giant stars whose atmosphere contains more carbon than oxygen, and which are strikingly red.  In this image the carbon star, SAO49477 is the red member of the close double just up-right of center.  The red stuff between the stars is glowing hydrogen gas, singly ionized by starlight to emit a deep red color.  Someday it will coalesce and make more stars.
    -Noel

  • HT1338 We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    We are currently running CS3 on Macs with OS 10.5.8 but need to upgrade the OS in order to prepare e-books. Will we have any problems with CS3 running on the later OS?

    Check the Adobe website for compatibility.
    Ciao.

  • Can i keep using bridge cs3 in combination with photoshop cs5

    can i keep using bridge cs3 in combination with photoshop cs5

    I have a question sort of relevant to this discussion. Had my 8800GT start to fail on me in my MacPro1,1 - in desperation I disassembled the card, cleaned it, applied fresh thermal compound/padding, and stuck it back in. To my amazement the card actually began working again! Before failing a few days later ; ;.
    I ordered a replacement 8800GT on ebay for a considerably low cost, but before it arrived my computer began behaving normally again. From what I'm understanding from this thread, there is absolutely no benefit to installing both cards in my computer at the same time? If that's the case, I'm going to tuck the backup card away and keep riding my self-repaired card until it crashes again.

  • Some strange problem with Flash/As3

    Hi,
    I am having some strange problem with my flash cs3.
    Whatever script I write in as3  doesn't work, even a stop() function doesn't work . But when I change my publish setting to as2 it works fine.
    Not sure about the root cause, may be some setting or preference or my cs3 is corrupted.
    Can anybody please advise.
    Thanks,
    Kishor

    try this
    create a new fla as3,
    select frame 1
    open the actions panel
    paste in the following code
    var squares:Array = new Array;
    setup();
    function setup():void {
        for (var i = 0; i < 25; i++) {
            var square:Sprite = new Sprite();
            //square.name = "square" + i;
            square.graphics.beginFill(Math.random() * 0xffffff);
            squares.push(square);
            squares[i].graphics.drawRect(0, 0, 100, 100);
            squares[i].x = i*3;
            squares[i].y = i*3;
            squares[i].filters = [];
            square.graphics.endFill();
            stage.addChild(squares[i]);
    for (var j = 0; j < squares.length; j++) {
        squares[j].addEventListener(MouseEvent.MOUSE_DOWN, dragMovie);
        squares[j].addEventListener(MouseEvent.MOUSE_UP, dropMovie);
        squares[j].buttonMode = true;
    function dragMovie(event:MouseEvent):void {
        event.target.startDrag();
    function dropMovie(event:MouseEvent):void {
        event.target.stopDrag();

  • Strange problem with my ipod 2g after upgrade to os 4.2

    Strange problem with my ipod 2g after upgrade to os 4.2
    the problem with volume some times when i switch on the ipod i hear the sound
    alarm rings it's work too i can hear it .. but the problem i cant hear anything else as yourtube or music i cant hear buttons sound when i typing
    i hope i get help

    I would try in order:
    - Reset the iPod:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backu via iTunes.
    - Restore the iPod to factory defaults/new iPod.

  • Strange Problem with a Vector wraped inside a Hashtable

    Hi all ,
    I'm having a strange problem with a Vector wraped within a Hashtable inherited Class.
    My goal is to keep the order of the elements of the Hashtable so what I did was to extend Hashtable and wrap a Vector Inside of it.
    Here is what it looks like :
    package somepackage.util;
    import java.util.Enumeration;
    import java.util.Hashtable;
    import java.util.Vector;
    public class OrderedHashTable extends Hashtable {
        private Vector index;
        /** Creates a new instance of OrderedHashTable */
        public OrderedHashTable() {      
            this.index = new Vector();
    //adds a key pair value to the HashTable and adds the key at the end of the index Vector
       public synchronized Object put(Object key,Object value){      
           index.addElement(key);
           Object obj = super.put(key,value);
           System.out.println("inside OrderedHashTable Put method index size = " + index.size());
           return obj;    
    public synchronized Object remove(Object key){
           int indx = index.indexOf(key);
           index.removeElementAt(indx);
           Object obj = super.remove(key);
           return obj;
    public synchronized Enumeration getOrderedEnumeration(){
           return index.elements();
    public synchronized Object getByIndex(int indexValue){
           Object obj1 = index.elementAt(indexValue);
           Object obj2 = super.get(obj1);      
           return obj2;
       public synchronized int indexOf(Object key){
        return index.indexOf(key);
        public synchronized int getIndexSize() {
            return index.size();
        }Everything seemed to work fine util I tried to add objects using a "for" loop such as this one :
    private synchronized void testOrderedHashTable(){
            OrderedHashTable test = new OrderedHashTable();
            for (int i = 1 ; i<15; i++){
                 System.out.println("adding Object No " + i);
                 String s = new String("string number = "+i);
                 test.put(new Integer(i),s);
                 System.out.println("-----------------------------------");
            //try to list the objects
            Enumeration e = test.getOrderedEnumeration();
            while (e.hasMoreElements()){
                Integer intObj = (Integer) e.nextElement();
                System.out.println("nextObject Number = "+ intObj);
        }Here is the console output :
    Generic/JSR179: adding Object No 1
    Generic/JSR179: inside OrderedHashTable Put method index size = 1
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 2
    Generic/JSR179: inside OrderedHashTable Put method index size = 2
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 3
    Generic/JSR179: inside OrderedHashTable Put method index size = 3
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 4
    Generic/JSR179: inside OrderedHashTable Put method index size = 4
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 5
    Generic/JSR179: inside OrderedHashTable Put method index size = 5
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 6
    Generic/JSR179: inside OrderedHashTable Put method index size = 6
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 7
    Generic/JSR179: inside OrderedHashTable Put method index size = 7
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 8
    Generic/JSR179: inside OrderedHashTable Put method index size = 8
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 9
    Generic/JSR179: inside OrderedHashTable Put method index size = 10
    Generic/JSR179: inside OrderedHashTable Put method index size = 10
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 10
    Generic/JSR179: inside OrderedHashTable Put method index size = 11
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 11
    Generic/JSR179: inside OrderedHashTable Put method index size = 12
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 12
    Generic/JSR179: inside OrderedHashTable Put method index size = 13
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 13
    Generic/JSR179: inside OrderedHashTable Put method index size = 14
    Generic/JSR179: -----------------------------------
    Generic/JSR179: adding Object No 14
    Generic/JSR179: inside OrderedHashTable Put method index size = 15
    Generic/JSR179: -----------------------------------
    Generic/JSR179: nextObject Number = 1
    Generic/JSR179: nextObject Number = 2
    Generic/JSR179: nextObject Number = 3
    Generic/JSR179: nextObject Number = 4
    Generic/JSR179: nextObject Number = 5
    Generic/JSR179: nextObject Number = 6
    Generic/JSR179: nextObject Number = 7
    Generic/JSR179: nextObject Number = 8
    Generic/JSR179: nextObject Number = 9
    Generic/JSR179: nextObject Number = 9
    Generic/JSR179: nextObject Number = 10
    Generic/JSR179: nextObject Number = 11
    Generic/JSR179: nextObject Number = 12
    Generic/JSR179: nextObject Number = 13
    Generic/JSR179: nextObject Number = 14
    You can notice that the output seems correct until the insertion of object 9.
    At this point the vector size should be 9 and the output says it is 10 elements long ...
    In the final check you can notice the 9 was inserted twice ...
    I think the problem has something to do with the automatic resizing of the vector but I'm not really sure. Mybe the resizing is done in a separate thread and the new insertion occurs before the vector is resized ... this is my best guess ...
    I also tested this in a pure J2SE evironment and I don't have the same strange behavior
    Can anybody tell me what I am doing wrong or how I could avoid this problem ?
    Thanks a lot !
    Cheers Alex

    Am i doing anything wrong?Uhm, yes. Read the API doc for addElement() and for addAll()

  • Strange behavior with NI 9401

    Hi everyone!
    I think I have a strange problem with the NI 9401 modules.
    My hardware is a CompactRIO and I'm using Labview 8.0.
    I'm reading a 13 bit encoder with two NI 9401 modules: the first for 8 input channels and the second for the other remaining 5. input channels.
    13 bits means that the slots in the outest part of the counter are 8192 so i expect my encoder to count up/down till 8192. What instead happens is that the counter goes up to 7934, then suddenly to 7860, then from 0 to 254 and then finally to 0 again and up again to 7934 and the story always goes on like this. I put the true/false outputs of the encoder in a boolean array and then, from the boolean array to a number. (see the attacched VI)
    Here's how I devided the inputs between the two modules
    -NI 9401 2 :
    DIO0= 2^0
    DIO1= 2^1
    DIO2= 2^2
    DIO3= 2^3
    DIO4= 2^4
    DIO5= 2^5
    DIO6= 2^6
    DIO7= 2^7
    - NI 9401
    DIO0= 2^8
    DIO1= 2^9
    DIO2= 2^10
    DIO3= 2^11
    DIO4= 2^12
    When running the VI I suddenly realized that every time all the input for each modules should be true ( i.e. five leds on for the second module or eight leds on for the first) , the value of all the inputs goes immediately to 0 i.e. all the leds switch off . To make an example: I see 4 leds on for the second module but when comes the time of the fifth, all the leds switch off so it means all the inputs are false which i can't understand. I tried to change the pin assignments in order to read the same inputs from different pins and this did'nt change anything. I tried to use only 4 inputs for the second module and this didn't work. Every time all the inputs for each module should be true it goes up to (n-1) inputs true and the n inputs zero. More information about this strange behaviour: while a normal false input produces a voltage of 0.036 V the voltage I measured from the last pin that should be true and that should give me all the leds on for one module, produces instead -0.146 V.
    This is everything I tried in order to solve this problem but now I'm at a dead end.
    Could it be a kind of module setting which I didn't consider?
    Due to all the attempts I've made I excluded any disfunction of the encoder so I focused my attention to the modules.
    Does anyone of you have any idea?
    Thanks!!
    Rob_F
    Attachments:
    Prova_encoder2.lvproj ‏14 KB
    Prova_encoder2.vi ‏155 KB

    Thanks a lot JMota!
    We just sent back the encoder to the company who sells them. They want to be sure it's not a product defect or, even worse, a problem of conflict with the NI 9401.
    In the meanwhile we built up the acquisition VI for the accelerometer and the encoder. One while loop sends the accelerometer data to a DMA FIFO and another parallel while loop is used to read the encoder outputs and send these data to another DMA FIFO. I did this because I know only 1 DMA FIFO can be used for each channel. When I read the data with two FIFO.read with two parallel loops in the Real-Time I discovered that I can't make them work indipendently as i thought i.e. reading settings of one FIFO.read ( number of elements and loop timing) affects also the other FIFO.read . 
    Any explanation for this behavior?
    Thanks again JMota!

  • Strange behavior with Bindings??

    Hello to all JavaFX 2 Binding experts,
    I have a strange behavior with Bindings in JavaFX 2.2 (Java 1.7 update 21). Please have a look at the following source code:
    package test;
    import javafx.application.Application;
    import javafx.beans.binding.BooleanBinding;
    import javafx.beans.property.SimpleBooleanProperty;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.fxml.FXML;
    import javafx.fxml.FXMLLoader;
    import javafx.scene.Parent;
    import javafx.scene.Scene;
    import javafx.scene.control.Label;
    import javafx.scene.control.RadioButton;
    import javafx.stage.Stage;
    public class BindingVsProperty extends Application
        @FXML
        private RadioButton opt11;
        @FXML
        private RadioButton opt12;
        @FXML
        private RadioButton opt21;
        @FXML
        private RadioButton opt22;
        @FXML
        private Label lbl11And21;
      @Override
        public void start(Stage arg0) throws Exception
            FXMLLoader l_loader = new FXMLLoader();
            l_loader.setLocation(BindingVsProperty.class.getResource("BindingVsproperty.fxml"));
            l_loader.setController(this);
            l_loader.load();
            Scene l_scene = new Scene((Parent)l_loader.getRoot());
            arg0.setScene(l_scene);
            useBinding1();
            //useBinding2();
            //useBinding3();
            arg0.show();
        private void useBinding1() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding2() // OK - ChangeListener.changed(..) is called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            lbl11And21.visibleProperty().bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        private void useBinding3() // NOT WORKING - ChangeListener.changed(..) is not called
            BooleanBinding l_andOpt11Opt21 = opt11.selectedProperty().and(opt21.selectedProperty());
            new SimpleBooleanProperty(false).bind(l_andOpt11Opt21);
            l_andOpt11Opt21.addListener(new ChangeListener<Boolean>()
                @Override
                public void changed(ObservableValue<? extends Boolean> arg0, Boolean arg1, Boolean arg2)
                    System.out.println("Opt 1.1 AND Opt 2.1 changed to: " + arg2);
        public static void main(String[] args)
            launch(args);
    <?xml version="1.0" encoding="UTF-8"?>
    <?import java.lang.*?>
    <?import java.util.*?>
    <?import javafx.scene.control.*?>
    <?import javafx.scene.layout.*?>
    <?import javafx.scene.paint.*?>
    <BorderPane id="BorderPane" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefWidth="371.0" xmlns:fx="http://javafx.com/fxml">
      <center>
        <AnchorPane prefHeight="200.0" prefWidth="200.0">
          <children>
            <Label id="lblAnd" fx:id="lbl11And21" layoutX="82.0" layoutY="121.0" text="Group1 Opt1 AND Group2 Opt1 is true" textFill="#41cc00" visible="false" />
            <RadioButton fx:id="opt21" layoutX="216.0" layoutY="24.0" mnemonicParsing="false" text="Group 2 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group2" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt22" layoutX="216.0" layoutY="67.0" mnemonicParsing="false" text="Group 2 - Opt 2" toggleGroup="$group2" />
            <RadioButton fx:id="opt11" layoutX="29.0" layoutY="24.0" mnemonicParsing="false" text="Group 1 - Opt 1">
              <toggleGroup>
                <ToggleGroup fx:id="group1" />
              </toggleGroup>
            </RadioButton>
            <RadioButton fx:id="opt12" layoutX="29.0" layoutY="67.0" mnemonicParsing="false" text="Group 1- Opt 2" toggleGroup="$group1" />
          </children>
        </AnchorPane>
      </center>
    </BorderPane>
    What I need for my application is the use case in useBinding1(), i.e., a BooleanBinding where several listeners are attached to. The problem is that I never get a callback in the ChangeListener if one of the RadioButton.selectedProperty() is changed.
    Now I tried what happens if I use the same BooleanBinding for another binding to a property plus the listener, now the listener gets callbacks as expected! (see useBinding2() )
    Than I thought may be Bindings must be bound in order to trigger listeners and tried useBinding3() where I bind the BooleanBinding to a new BooleanProperty, in this case the listener doesn't get callback anymore...
    And now I'm very frustrated and hope that anyone out there can help me to understand this strange behavior.
    Thanks a lot!
    WhiteAntelope

    All these work just fine for me: the listeners are all called as expected. Note that the listener is only invoked when the value of the binding actually changes, which doesn't happen every time a radio button is pressed. (For example, if both buttons are unselected, the binding is false. If one button is selected, the binding remains false and the listener is not invoked. When the second button is selected, the binding becomes true, and the listener is invoked.)

  • Save Order with an item not confirmed

    Hello Folks!
    I hope you can have an answer for me:
    I have a sales order with 10 line items. Nine of them have enough stock to be covered but just one not. Currently I can not  save the sales order with the confirmation of the other 9 line items until this item without stock could be covered. This makes this order useless because my customer is complaining.
    What are the modifications needed in the system so that:
    - I keep the 10 line items,
    - confirm only 9 of them
    - leave 1 item pending until the stock arrives ( I do not want to delete the line item without stock from the order. I would like to keep it as it comes from the original order
    Any idea on how to solve this issue?
    Thanks for you time

    Hi María del Carmen,
    I think you should review it with your SD consultant. At first glance is  strange that it errors out instead of warning you, which would still allow you to save the order.
    I think some leads to the problem area: It could be the sales order type has an incompletion log rule that doesn't allow to save the sales order unless the stock is available  or the definiton of  schedules lines, at the order type level, requires stock availability for every line item of the order.
    Hope this helps.
    GG

  • I currently have CS3 on my computer, do I have to uninstall CS3 in order to download CS6 cloud apps?

    I recently purchased a subscription to the CS Cloud - I currently have CS3 installed on my computer, do I have to uninstall CS3 in order to download CS6 cloud apps? Will there be any conflicts if I don't? I am currently running a website with CS3 and building a new one, I don't want to disrupt the current one until the new one is ready.

    No there is no need to uninstall, you can run both on same machine without issues.

  • Strange Issue with Guided Nav and filters

    Hi All,
    I am have a very strange issue with the guided navigation.
    I created an answer in BI and when I look at 'Display Results' in Answers everything shows up fine.
    SELECT LU_PRODUCT.MAJOR saw_0, case WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date-1 AND current_date+29 then '30 Days' WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date+30 AND current_date+59 then '60 Days' WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date+60 AND current_date+89 then '90 Days' else ' > 90 Days' end saw_1, LU_ACCOUNT.ACCTNBR saw_2, FA_ACCTBAL.NOTEBAL saw_3, (FA_ACCTINT_RATEBAND.NOTEBALXINTRATE)/FA_ACCTINT_RATEBAND.NOTEBAL*100 saw_4, REPORT_SUM(saw_3 BY ), AGGREGATE(saw_4 BY ) FROM LDW WHERE (FA_ACCTBAL.EFFDATE = CURRENT_DATE-1) AND (FA_ACCTBAL.NOTEBAL > 0) AND *(LU_ACCOUNT.TERMMATDATE >= current_date-1) AND (LU_ACCOUNT.TERMMATDATE <= current_date+89)* ORDER BY saw_0, saw_1, saw_2
    Type=Report
    Report=/users/administrator/Loan Amounts By Maturity Dates - Drill 1
    But when I link to this answer via guided navigation the filter seems to change??
    SELECT LU_PRODUCT.MAJOR saw_0, case WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date-1 AND current_date+29 then '30 Days' WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date+30 AND current_date+59 then '60 Days' WHEN LU_ACCOUNT.TERMMATDATE BETWEEN current_date+60 AND current_date+89 then '90 Days' else ' > 90 Days' end saw_1, LU_ACCOUNT.ACCTNBR saw_2, FA_ACCTBAL.NOTEBAL saw_3, (FA_ACCTINT_RATEBAND.NOTEBALXINTRATE)/FA_ACCTINT_RATEBAND.NOTEBAL*100 saw_4, REPORT_SUM(saw_3 BY ), AGGREGATE(saw_4 BY ) FROM LDW WHERE (LU_PRODUCT.MAJOR = 'CML') AND (FA_ACCTBAL.EFFDATE = CURRENT_DATE-1) AND (FA_ACCTBAL.NOTEBAL > 0) AND *(LU_ACCOUNT.TERMMATDATE >= CURRENT_DATE-1) AND (LU_ACCOUNT.TERMMATDATE >= CURRENT_DATE-1)* ORDER BY saw_0, saw_1, saw_2
    Type=Report
    Dashboard=/users/administrator/_portal
    Dashboard Page=Loans Maturing
    Report=/users/administrator/Loan Amounts By Maturity Dates - Drill 1
    I am just it is going to the same report. Any ideas on why this is happening??
    Thanks

    Yes,
    these are simply two different reports, as you can see from the filters...

  • Sales order with more than 9 items causing problem

    Hi,
    I have a situation here.
    A sales order is created in the system and since it is order related billing so its billing document is also generated. The billing document is not relevant for accounting. So, the only 2 documents are a sales order and its billing document.
    Due to some technical restrictions,if the number of lines is more than 9 the printout wont come.Henceforth,the user is unable to take a printout so I need to give him a solution.
    What shall I suggest him?

    Hi,
    >So, my question is that,should I ask the user to create a credit memo wrt the billing document and then split the sales order with 2 invoices(one with say 5 and the other invoice with the rest of the quantities)?
    So, if my undestanding is right then you want to create a credit memo after invoice ? If yes, then why are you splitting the sales order ? Also, this is something strange kind of ABAP logic which would not allow to print an invoice with more than 9 line items... Now, as you said if your sales order is having more than 9 line items then only print doesn't come.. right ? then in your case at this moment there are only 9 line items so ideally you'd be able to get a print.. right ?
    I think there is some confusion out here with your two posts.. kindly clarify...
    Hrishi

  • A strange issue with importing avi video

    I have a rather strange issue with importing avi files (which playback normally in other programs) into CS4. When I import an avi recorded from my camera into CS 4 in the preview the sound is played back normally, but the video itself is weird. Pretty much roughly first 5% of it are stretched over the whole spand and slowed down to fit. So the video of 4 minutes will play sound normally for 4 minutes, but replay only 10 seconds of video VERY slowly. I'm a bit puzzled because I've used the same camera with CS3 and never encountered this problem. breaking apart and speeding up the video obviously didn't work because the video only displays the first 5 recorded seconds no matter the speed, tweaking with presets didn't work either.

    subtlemolotov wrote:
    I obviously know it's a photo camera, I own it.
    The point is it's something we needed to know to answer your question.
    subtlemolotov wrote:
    Well I've found a very unprofessional solution.
    "An unprofessional solution?" Kind of like shooting video with an still camera.....

  • Strange Issue With Exporting JPgs

    I am having a strange problem with exporting my vector files to jpgs.  When I export the file as a .jpg then open it some of the text or shapes (like rectangles or squares) are gone.  When I go back and open the .ai file the stuff is there, but it's just gone on the jpg.  If I open the .ai file in Photoshop it is gone also.  I have to save the file as a pdf then open the pdf in Photoshop and export as a .jpg from there.  It is very strange.  If I go into the Illustrator file and re-type the text that disapers, it usualy corrects the probelm.  I am not an expert with Illustrator so I may be doing something wrong, if anyone can help please let me know, thanks!! (I have CS3)

    I am using Windows XP with CS3, I do not see a box to uncheck it.  I  just
    cleared the attributes and reapplied the fill color and that  worked. But I
    only see the overprint on the shapes but when the text is  diapering I do
    not see the overprint in the attributes panel nor on the shape  that is behind
    the text.
    In a message dated 3/12/2010 11:49:57 A.M. Central Standard Time,  foru
    [email protected] writes:
    Just  uncheck the box in the Attributes  panel.

Maybe you are looking for

  • Data Federator 3.1

    I could not locate Data Federator 3.1 on SAP SMP, only XI 3.0 and XI R2 are available for download. Anyone has a link for DF 3.1 download?

  • Video connectors used in London

    I am hoping someone from across the pond can help me. I am going to be in London in a few weeks giving a presentation. I have a MacBook Pro with a Mini DVI connector. I purchased a Mini DVI to VGA connector. I assume the video connection used by proj

  • RoxMediaDB9 Module has Stopped working

    This happens to me constantly when I try to use Roxio Media Manager to transfer files to my 8 hour old Storm. It worked once when I was transfering music. I've tried everything I can think of including un-installing re-installing and so on. I have no

  • Can't run on win7

    I had this installed before but now the online library requires that I reinstall.  Installs okay but won't run; immediately closes.  The event viewer indicates a problem with kernel.dll but I of course have no idea what the error means.  I tried turn

  • Changed batteries in my keyboard and now everything is upside down

    I just changed batteries in my keyboard and now everything on my desktop is upside down.  How do I right it?