dangnhat / altium-designer-addons

Automatically exported from code.google.com/p/altium-designer-addons
2 stars 3 forks source link

Multiple PCBs in Single Project problem #4

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I tried the MultiPCBProject V2.0 scripts on Altium V13.1.2,
but the "SCH_UpdateAllPCBDocuments" function does not work.

The compile mask is not placed over the respective blankets, resulting in all 
components compiled onto all PCBs.

I watched the videos, and I think I did things correctly, but maybe there's an 
Altium Preference setting that needs to be enabled.

Original issue reported on code.google.com by rcd...@gmail.com on 29 Oct 2013 at 3:52

GoogleCodeExporter commented 9 years ago
I stepped through the code for the "SCH_MaskPCB" function.
The form is presented and I select the desired PcbDoc.
Then the "UpdateOther" function is called.
It gets to the following lines...

    Blanket := BlanketIterator.FirstSchObject;
    While (Blanket <> nil) do

The value for Blanket is always Nil for each Document, so nothing happens.

Original comment by rcd...@gmail.com on 29 Oct 2013 at 4:46