[JS][CS3] Import ai into another ai

Hi,
My goal is to import [rather than place] another ai into the target ai, with all attributes of the objects + layering preserved.
There are two shortcut methods available:
a) groupItems.createFromFile(srcFile) - but this creates over-complicated layering, creates additional clipping masks, and other garbage.
b) placing an ai - this, in turn, flattens the whole imported contents into one object which, for example, disables further text replacements.
Neither is an option for me. Looks like one must loop recursively with the duplicate() method applied to all pageItems, but maybe someone has been up to something more clever?
regards,
m.

try67,
I read your post. So, when you place your ai using my code and position it by:
pi.position = [0,0]
it gets offset?
createFromFile - unless I'm missing something, this method is completely useless to me (in gentle words) due to the above-mentioned reason. But other methods destroy many formatting attributes, as well as relative positioning of the items. Good it works for you!
happy coding
m.

Similar Messages

  • I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?

    I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?  I get an "X" when trying to copy to the "automatically add to itunes" folder on the 2nd computer.

    ok... so i i just made sure all my music is all together in 1 folder and i am going to trash my old music folder that is in the itunes folder... and follow your directions - let itunes start w/new library and bring my music in. Well, last little hurdle/question. I noticed that the place where my itunes library is - on an external drive doesnt have much space left on it. The place where i gathered all my music together in order to start fresh - is a different external drive and has LOTS of free space on it.
    SO... i now would like to just keep all that freshly compiled clean music right where it is but in advanced preferences I want to point to that new folder on the drive that has so much more space. So... should i delete the old music then go into itunes with a blank library and change the folder in preferences - quit and go back in and then follow your steps to loading my music? If i change the setting of where itunes looks for the music - that doesn't wipe out the old stuff... it just mixes it all up together right? I dont want that!!
    i promise this is the last question - i would love to fix this problem tonight and just be DONE!
    Thanks in advance for your patience and knowledge!!
    Lisa

  • Import iCal into another program

    Is it possible to export a calendar that's in iCal and import it into another program? In other words is there a way to share my calendar with a non-mac user other than through a .MAC account?

    With the release of iCal 3 in Mac OS X 10.5 and iCal Server with Mac OS X 10.5 Server in the near future, this will be possible, as iCal has been rewritten to conform with the the emerging CalDAV standard. It's not possible to do using iCal at the moment, as it does not have the capability to host read-write calendar objects.
    There is an open-source version of the iCal Server: Darwin Calendar Server.
    You won't need .Mac to do this, but in any event, .Mac cannot interact with computers not running OS X, eliminating the one you want to share calendar data with.

  • Importing XSD into another XSD

    Hi All,
    Is it possible to import one XSD into another XSD. I want to have all the elements like odsCadEvent, odsCadAgency, odsCadUnit defined in separate XSD and imported into the master.xsd. This way I don't have the data defintions in the master.xsd
    My sample XSD let's say (master.xsd) is big and will grow further.
    <xs:schema targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/ortdOdsCadEvent" xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/top/ortdOdsCadEvent"
    elementFormDefault="qualified" attributeFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xs:element name="odsCad" type="odsCadCollection"/>
    <xs:complexType name="odsCadCollection">
    <xs:choice>
    <xs:element name="odsCadEvent" type="odsCadEvent" minOccurs="0" maxOccurs="1"/>
    <xs:element name="odsCadAgency" type="odsCadAgency" minOccurs="0" maxOccurs="1"/>
    <xs:element name="odsCadUnit" type="odsCadUnit" minOccurs="0" maxOccurs="1"/>
    </xs:choice>
    </xs:complexType>
    <xs:complexType name="odsCadEvent">
    <xs:sequence>
    <xs:element name="datasetname" minOccurs="1" maxOccurs="1">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="32"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="messagesequence" type="xs:decimal" minOccurs="1" maxOccurs="1"/>
    <xs:element name="eventid" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="eventrevisionno" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="createdatetimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="callsourceofevent" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="8"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="callername" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="50"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="streetaddresscaller" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="80"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="currentrecord" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventappartmentno" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="14"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventareaoflocation" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="40"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcommonplacename" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="80"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventdirectionalprefix" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="4"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventdirectionalsuffix" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="4"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventstreetname" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="240"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventstreettype" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="4"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventsuburb" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="40"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventstreetno" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="11"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="locationcomment" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="100"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="locationinterestsearch" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="patientname" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="45"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="updatedatatimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="xcordofevent" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="crossstreetname1" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="60"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="crossstreetname2" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="60"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="ycordofevent" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="directorymelway" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="11"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="directoryvicroads" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="11"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="communicationdifficulty" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="20"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="destcommonplacename" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="80"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="callerphonenumber" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="25"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="autokey" type="xs:decimal" minOccurs="0" nillable="true"/>
    <xs:element name="transstartdatetime" type="xs:dateTime" minOccurs="0" nillable="true"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="odsCadAgency">
    <xs:sequence>
    <xs:element name="datasetname" minOccurs="1" maxOccurs="1">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="32"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="messagesequence" type="xs:decimal" minOccurs="1" maxOccurs="1"/>
    <xs:element name="eventid" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="eventrevisionno" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="agencyeventnumber" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="12"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="agencyeventnumberrevision" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="agencyid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="9"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="createdatetimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="alarmlevelofevent" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="datetimefirstunitarrived" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="numberunitonevent" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="currentrecord" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="scheduleeventdestinationeid" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="dispatchgroup" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="5"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="dispatchedtimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="eventstatus" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="datetimestampheldagreedrespons" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="heldeventtypecode" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="heldunitid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="10"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="polygonareacode2" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="6"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="polygonareacode3" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="7"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="polygonareacode4" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="5"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="polygonareacode5" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="5"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="openandcurrent" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="datetimestamppendingevent" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="employeeidprimmember" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="primaryunitid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="10"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="priority" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="datetimestampstatuschange" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="datetimestampeventcreated" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="datetimestamptransportarrived" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="datetimestamptransport" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="updatedatatimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="datetimestampclose" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="terminalwhocloseevent" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="15"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="reopened" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcodesubcode" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="16"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcode" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="16"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcodedescription" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="80"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="timeeventaddedtosystem" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="16"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="autokey" type="xs:decimal" minOccurs="0" nillable="true"/>
    <xs:element name="transstartdatetime" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="psychCategory" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="psychUrgency" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="1"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="beginDataEntry" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="eventCreationTime" type="xs:dateTime" minOccurs="0" nillable="true"/>
    </xs:sequence>
    </xs:complexType>
    <xs:complexType name="odsCadUnit">
    <xs:sequence>
    <xs:element name="datasetname" minOccurs="1" maxOccurs="1">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="32"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="messagesequence" type="xs:decimal" minOccurs="1" maxOccurs="1"/>
    <xs:element name="eventid" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="eventrevisionno" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="agencyeventnumber" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="12"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="agencyeventnumberrevision" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="agencyid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="9"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="unitid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="10"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="carid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="6"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="unitstatus" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="2"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="createdatetimestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="dispatchgroup" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="5"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="xcordlastposition" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="ycordlastposition" type="xs:int" minOccurs="0" nillable="true"/>
    <xs:element name="location" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="240"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="mdtunitid" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="24"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcodesubcode" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="16"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="eventcode" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="16"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="unithistorycomment" minOccurs="0" nillable="true">
    <xs:simpleType>
    <xs:restriction base="xs:string">
    <xs:maxLength value="200"/>
    </xs:restriction>
    </xs:simpleType>
    </xs:element>
    <xs:element name="datetimeupdatestamp" type="xs:dateTime" minOccurs="0" nillable="true"/>
    <xs:element name="autokey" type="xs:decimal" minOccurs="0" nillable="true"/>
    <xs:element name="transstartdatetime" type="xs:dateTime" minOccurs="0" nillable="true"/>
    </xs:sequence>
    </xs:complexType>
    </xs:schema>
    Thanks

    It is possible. I have used import in wsdl for clean definition. The same should apply to XSD also.
    http://www.xfront.com/HideVersusExpose.html should be helpful in understanding the design aspects.
    Eg.
    <wsdl:definitions name="testAdapter" targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/JCADBTest/Project1/testAdapter" xmlns:tns="http://xmlns.oracle.com/pcbpel/adapter/db/JCADBTest/Project1/testAdapter" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:top="http://xmlns.oracle.com/pcbpel/adapter/db/top/testAdapter">
    <plt:partnerLinkType name="testAdapter_plt">
    <plt:role name="testAdapter_role">
    <plt:portType name="tns:testAdapter_ptt"/>
    </plt:role>
    </plt:partnerLinkType>
    <wsdl:types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/testAdapter" schemaLocation="xsd/testAdapter_table.xsd"/>
    </schema>
    </wsdl:types>
    Manoj
    Edited by: Manoj Neelapu on Apr 16, 2010 8:32 AM

  • Import project into another shema (Oracle Database)

    I'm going to import project which use schema of local database. Is there any quick solution to change this schema to remote database without another mapping datastore in interface?

    Yes your understanding is correct. No need to touch the interface/models/datastores/logicalschemaname etc.
    You just need to make sure that the table name and structure of your remote database must be same as the local database.
    Thanks
    Bhabani
    http://bhabaniranjan.com

  • GarageBand project won't import correctly into another project

    I created a long podcast project using GB 3.04. The project consisted of one voice track. I decided to break it into two projects so that I could make it into two episodes. I created a new project and dragged part one to it. This worked just fine -- I was able to import other audio files and create my finished episode. However, when I created a new project for the second episode and dragged part two to it, the track was truncated to a fraction of its size and it contained no sound. The original of part two plays normally when I open it, but several attempts to import it as a track have produced the same result. Is there some setting that I accidentally tripped, or is the project file just corrupt? I don't want to have to re-record the track, but I've resigned myself to the possibility. Thanks.

    Sorry, guess I didn't explain myself well. The original GB project consisted of one voice track that was around 45 minutes long. I decided that I didn't want the podcast episode to be that long, so I split the track region into two regions. Using the Edit -- Copy command, I created a separate GB project and pasted the second of the two regions into it. I tested the new project to make sure that it played properly, then saved it, re-opened the original, and deleted the second region (since it was now in its own project file). I named the original "part 1" and the new project "part 2". I then created a 3rd project file, to which I dragged the part 1 file and added music, imported mp3s from other podcasts, etc. This went off without trouble. However, when I attempted to do the same thing with part 2, I ran into trouble. I dragged the file for part 2 into a new project file, but instead of 18 minutes of voice recording, I get 3 seconds of dead air. If I open the file for part 2, it plays normally. I don't think I did anything differently with the two regions, but it wouldn't be the first time I've changed a setting or something without realizing it.
    Thanks for your interest.

  • How to Import Metadata into another projec

    I am using OWB 10.2. Is there a way to specify which project you want the meta data to be imported to? For instance, I have projectA and Project B. I want to import the meta data into project B. Is this possible?

    I think that idea of user533778 (renaming projects) should work.
    But with my note:
    1) export project A
    2) rename project A to A1
    3) rename project B to A
    4) import project from file (and don't forget set importing option!!!)
    5) rename projects backward (A->B, A1->A)
    Try to set import options:
    - "Import option" to "Update metadata (replace existing objects and create new metadata)"
    - "Match by" to "Names"
    Oleg
    Message was edited by:
    tsiboleg
    Message was edited by:
    tsiboleg

  • Importing schema into another schema using enterprise manager on 11.2.0.3

    I am using OEM database control not Grid Control.
    I am exporting a schema using OEM Data Movement and I want to REMAP it to another schema.
    But it does not populate the Destination Schema with any other schemas other than the Source Schema.
    I only get one item in Destination Schema dropdown which is the same as the Source Schema.
    Any ideas why the Destination Schema dropdown is not populated with all the schemas?
    This is on Windows 2008 R2 64-bit
    This worked fine in 10g versions.
    Edited by: user563987 on Feb 20, 2012 1:48 PM

    I have confirmed with Oracle support that it is a bug which was suppose to have been fixed in this version but obviously is not. They have opened a new bug.
    When you are you are on Grid Control 11.2.0.5? I am not seeing this version? Or am I missing something?
    Thanks.

  • My mac is no longer supported by firefox. Can I recover my bookmarks and import them into another browser?

    The detail is in the question

    FF update to 13 and now you can't open ? sorry about that.
    1. Download (with your safari) a copy of 3.6.28 from
    http://www.mozilla.org/en-US/firefox/all-older
    2. '''Trash''' the current Firefox application to do a clean install.
    3. Install the version that you have downloaded (3.6.28).
    Do not select to remove your personal data, your profile data is stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder], so you won't lose your bookmarks or other personal data.
    see also: [https://support.mozilla.org/en-US/kb/install-firefox-mac?redirectlocale=en-US&redirectslug=Installing+Firefox+on+Mac Installing Firefox on Mac]
    thank and sorry again

  • (CS4) Copy and paste video/sound into another project, sound won't export

    Hello Adobe community
    I am working on a TV show for a community television network in Australia.  I created the opening credits in a seperate project to the edited footage of the show, because my computer is struggling with the size of all the files. So I have two project files. Recently I copied and pasted the edited footage of the show into the project where I have the opening credits (by highlighting all the footage, right clicking and going to copy, then opening the Project with the credits sequence, right clicking and selecting paste). This seems to work. I can hear the sound and continue tweaking and editing. However, when I  export the project, the sound from the footage I have copied into the project can't be heard. I can hear the sound from the credit sequence, but not the sound that has been copied into the project (although on the timeline of the project, I can hear the sound... This problem only presents itself after export).
    I have tried doing the opposite... Copying and pasting the opening credit sequence into the project with the edited footage, and I get the same problem. It doesn't seem to matter which file type I export as. I have tried .AVI and .MPEG2, with the same results.
    I am using Windows 7 64bit version, and Premiere CS4. I have a mixture of .MTS, .WAV and .MP3 audio files in the footage that I copy and paste across. None of them are exporting.
    I have tried moving the copied and pasted audio files on to the same audio tracks as the sound already in the project, but this doesn't work either. The original sound will export, then when it gets to the copied and pasted sound nothing can be heard.
    I have included some screen shots to illustrate the problem below. If you have any questions please let me know.
    Thanks for your time! I have a looming deadline so your help is much appreciated.
    -Robert

    Thanks for your replies everyone. Sounds like cut and paste is not an option. Wow, I didn't realise how much trouble I'd be causing for myself by having different parts of the show in different projects.
    I am reluctant to export the project then import it into another project, because I do not want to lose quality through compression as Ann suggests.I don't know what you  mean, Ann, when you say "Dont think CS4 could import single sequence (forgot)."? Jim, I'm also unsure what you mean when you say "That's what UT is for"?
    However, I went to File/Import/Import Entire Project, and imported the project this way. Then I dragged the little folder icon that appeared in the top left hand corner of the screen onto the timeline. However, when I did this, a few problems occured. Firstly, the original project had footage and audio on many different tracks, but when I imported the project nearly all of the video and audio was on to the one track. Secondly, instead of going for 10 minutes, the imported footage went for a few hours. Thirdly, the sound and images were all out of sync. I have included two images to illustrate this problem:
    Above is the original project. As you can see, I have audio and video on many different tracks, and lots of cuts.
    This is what the project looked like after I had imported it into another project. Nearly everything is on one track, the footage goes for a few hours now (instead of 10 minutes) and the video and sound are all out of sink.
    Then I tried File/Import/Import Selected Sequence. The only sequence I had the option of importing was Sequence 1. I did this, then dragged the folder icon onto the timeline, and I had a similar problem to before. Everything on one track, footage out of sync and going for a few hours.
    Is there a way to import a project and maintain all of the editing (the cuts, the multiple tracks, etc.) as they are in the original? I have spent many hours editing both the footage and the opening credits, so I really don't want to lose all this work when I import one into the other. The good thing about copy and paste is that it maintains all of the original cuts and editing. Shame it is so unreliable.
    Thanks heaps for all your help!
    -Linus

  • Subtitles, extracting from old, and importing and adding another to a new dvd

    I need to add spanish subtitles, in addition to the already existing English subtitles, to a redited timeline. The English subtitles are made in DVD Studio Pro.  I have read the DVD Studio Por manual. I DO NOT find the answers I need in there. I have done the Apple DVD SP Training Series. That does not even come remotely close to answering these questions.  I tried extracting them with DVDSP Subpick, it says Wrong Code. I tried Subtitle Xtractor and it does not open item in item description, reporting only "Error while loading file: Error in Line 1 Error in NODe". Though it says one can open just the subtitle stream, I dont see any directions to tell one how to open just the subtitle stream either.  I tried Text Up 2-1 and it says  "file error wrong type" .
    I cannot fins assets timecode as it says to do iin the manual. I foloow the directions, right click on the timeline but it does not show me any shortcut menu with assets code on it.  I cannot find any directions as to how to save teh subtitles to STL, or txt for that matter. I cannot tell how I have saved this DVDSP  subtitle stream, and I have already burned the dvd.  I need to add spanish subtitles and I would love to not have to start over from scratch, but so far, it looks like I will have to do  that. I am pressed for time.  Any help from anyone?

    There is no method of exporting a subtitle stream to a STL file from a DVD Studio Pro project file.
    You can export the stream as a DVD Studio Pro asset and import it into another project; however, you would have to manually replace the English with corresponding Spanish.  Furthermore, you are likely to find that the Spanish subtitles do not correspond card for card with the English due to inherent differences in the languages.
    Ideally, you would have acces to the English STL document or, better yet, a translation spreadsheet (if one existed in the first place) that you could reformat for import into DVDSP.
    -Warren

  • Importing a project into another project?

    Can I open an existing project and import another saved project?
    Or is there a way to merge two project together?

    Not in PrE. PrPro can do this. The closest that one can come with PrE is to Export/Share from Project 1, as a DV-AVI (for SD material), and then Import that into the other Project. If you do this, I would either edit quite loosely, so you have Handles on the Clips, when Exported, or edit very tightly, and be sure that you do NOT need to do more, as any Handles will be included in Transitions, etc.
    Good luck, and sorry for the bad news,
    Hunt
    PS - maybe by PsE 9?

  • PSE12 Organizer - can you copy photo from one folder to another and import copy into Organizer and still have original in other folder

    I have been using folders to organize all my pictures and I will copy photos from folder to folder, often having them in 2 or 3 folders based on use.  I tried to copy a photo in Organizer PSE12 from one folder to another and you can only move it, that means I can only have one copy of the photo.  That is fine if I am using tags and want to search for it, but I want to have mult copies in mult folders. Organizer will recognize that it is there but it won't import it into the new folder. Until I move it, it stays in the original folder.  I can drag it out of Organizer and drop (copy) it into a new folder fine, but it won't show in organizer in the new folder.  Is there any way to copy and have multiple copies show up in multiple folders?

    Hi,
    The organizer works on the principle of not having multiple copies of the same photo.
    If you have multiple copies spread in different folders, then making changes to one doesn't affect the others. The use of tags and albums are there to give different views of your photos.
    You can't have multiple copies with exactly the same name even if they are in different folders. You could select a photo and duplicate it (File -> Duplicate) and then move the copy into a different folder but the name will be different.
    If you want different folders for a specific reason, it is possible to use albums to collect the group of photos and then export them to a new folder outside of the organizer. You can also rename on export which is useful if you want to arrange the photos in a specific order.
    Hope that helps a bit.
    Brian

  • How can I [cmd]+A including text boxes? Or how to import one Pages document into another Pages document?

    Hi there,
    I am working on my thesis with several Pages documents (for the first time). And I really have searched all over the Internet to find an answer to exactly my question but I cannot find it.
    First my question was: How can I import one Pages document into another one? I found the answer on that (I think) and there is nothing else than just make a new section and copy/paste it in.
    But then another issue pops up: I cannot [cmd]+A my whole document including the texboxes to paste it in the other Pages document. Then the document will be paste without the textboxes (and I have quite a lot of them in that document) and the text will not be at the right place.
    So please explain to me: How I can combine two Pages documents and keep them exactly the way they are? Is that even possible?
    I thank you so much in advance!

    Hi Fruhulda,
    I have already tried to mark the textboxes in line but that did not work, and besides then the text and the boxes won't be at the rigt places either. Thank you for your reply .

  • Import package from one project into another

    Hello everyone,
    I have some projects.
    An enterprise and war project created in netbeans.
    I would like to use some files from one project to another. when I import
    the package I get the error-
    'package x does not exist'
    I have added the package to the project but I still get the error.
    I have also added the project to import to my glasspath but still.
    E.g.
    set classpath
    .;c:\enterpriseA;
    My next idea is to create a war project into my enterprise project and copy the files
    from the war project into it in order to use it. But I'm sure there is a better way.
    THanking you in advance.
    eve
    Edited by: evepokua on Nov 22, 2009 1:44 PM

    One mistake I keep making is that I don't add the package to the
    Dependencies of the plugin I'm writing. You have to go to plugin.xml,
    and add the package you depend on to the Dependencies section. Maybe you
    didn't do this?
    Michael
    nasti wrote:
    > Hello everybody!
    > I am new user of osgi and eclipse. I tried to do some of Oscar examples
    > but I had some problems. Namely, the problem in import of package from
    > one project into another in Eclipse.
    > I add first project to the Build Path of the second one.
    > I add to the first project manifest line: Export-Package example2.service.
    > I add to the second project manifest line: Import-Package example2.service.
    > But when I tried to execute these bundles the
    > java.lang.NoClassDefFoundError was occurred. May be you will help me
    > with this problem.
    > Thanks....
    >
    >

Maybe you are looking for

  • I want to reload 3.6, since 4.0 won't work to my satisfaction.

    I tried upgrading my Win 7 computer to 4.0, but didn't like the new look. After a long chat session with one of your techs, I decided to uninstall 4.0 and reinstall 3.6 Where can I find a download for 3.6?

  • Error load_ocfs

    I am following cook bok instructions: I have downloaded the following files: ocfs-2.4.21-EL-1.0.13-1.i686.rpm ocfs-support-1.0.10-1.i386.rpm ocfs-tools-1.0.10-1.i386.rpm I have installed them, then I run load_ocfs and get error message "Can't locate

  • R31: how to boot from usb?

    I would like to install Linux on my thinkpad r31. Because it seems like the cdrom drive has some issues, I want to boot from usb. I have searched for how to do this, but I cannot find anything. These are my boot options, with my usb pen drive attache

  • Trying to start using Genius

    Hi, I'm in iTunes for Windows and I'm trying to set up Genius. I made an account and all that yadda yadda but when I went to the "Genius" sidebar tab and reentered my data I got stuck at the Terms and Conditions page. Read it, checked the box, presse

  • Public main method in a non-public class

    Hi, It is said that main method in a java class must be public so that it can be invoked by JVM. This works even if the class itself has default modifier. But while programming, any method (be it public) of a class with default access modifier from o