Importing another swf file into the flash-homepage (swf is a gallery)

hi there!
have a problem that i cant resolve myself ..
i downloaded a free of use gallery from juliuswebdesign.com (this gallery) and i'm trying to load it in my flash site ..
now, the gallery works if i open it directly (i open the swf file)
BUT
when i try to load the external swf file into my site
loadMovie("image_gallery.swf", box);
then the movie loads .. the gallery is displayed the message "loading xml file" displays and then when the xml is loaded the message "loading image 1/7" displays and only the first image loads.
once the first image is loaded it will not be displayed (it remains outside of my swf file .. i can see it when i resize the window) and no other images will be loaded.
if i open the gallery.sfw file again everything works fine .. the problem is only if i try to load the gallery.swf in another swf ..
something must be wrong ..
i tryed to opern the gallery.fla file and copt everything directly in my site and the problem remains the same .. only 1 image loaded and not displayed in the gallery ..
i'ts like something in my site "blocks" the gallery beeing loaded..
any suggestions?

to the gallery's fla add the following and retest:
this._lockroot = true;

Similar Messages

  • How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    How do you import a .png file into the Final Cut Pro X and at the same time keep the file's original transparency settings?

    Go to the Info inspector for the still image and in settings select the alpha type.

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • Cannot import a .mov file into the library

    I am trying to import a .mov file into my library so I can
    create a .fla file. Every time I try to import it into the library
    using the import wizard, it starts the importing process and always
    quits not quite two minutes into the process. It then returns me to
    the front page of the import wizard. I have done this before with
    absolutely no problems.
    The one thing that I am wondering about is the size of this
    particular .mov file. It is 377MB. Do you think this may be part of
    my problem? Thank you in advance for anyone's input or
    suggestions!

    Jeremy Williams wrote:
    > I am trying to import a .mov file into my library so I
    can create a .fla file.
    > Every time I try to import it into the library using the
    import wizard, it
    > starts the importing process and always quits not quite
    two minutes into the
    > process. It then returns me to the front page of the
    import wizard. I have
    > done this before with absolutely no problems.
    >
    > The one thing that I am wondering about is the size of
    this particular .mov
    > file. It is 377MB. Do you think this may be part of my
    problem? Thank you in
    > advance for anyone's input or suggestions!
    I would consider 10mb to be too big for a flash file. Even if
    it was CD
    I would load it dynamically to avoid performance problem.
    377mb is out of the question way beyond flash ability to
    maintain stable
    performance, not just the final output but the IDE itself.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • How to import a XML file into the document?

    Hai,
    i had created a table using xml file....
    Now i want to import that xml file tabel into the document...
    Can any one tell me how to import the xml file into the document?
    thanks
    senthil

    Hai...
    this is senthil...
    i'm beginner for creating adobe indesign plugins..
    i want to import a html file in the document...
    i want to create a table by using html tags and
    that table will be imported into the document..
    How shall i do it?
    can any one plzz explain me?

  • How to import an .csv file into the database?

    and can we code the program in JSP to import the.csv file into the database.

    It is better to use Java class to read the CSV file and store the contents in the database.
    You can use JSP to upload the CSV file to the server if you want, but don't use it to perform database operations.
    JSPs are good for displaying information on the front-end, and for displaying HTML forms, there are other technologies more suitable for the middle layer, back end and the database layer.
    So break you application into
    1) Front end - JSPs to display input html forms and to display data retrieved from the database.
    2) Middle layer - Servlets and JavaBeans to interact with JSPs. The code that reads the CSV file to parse it's contents should be a Java Class in the middle layer. It makes use of Java File I/O
    3) Database layer - Connects to the database using JDBC (Java Database Connectivity), and then writes to the database with SQL insert statements.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Keeping the above concepts in mind, first build a simple JSP and get it to work,
    then research on Google , for Java File I/O , discover how to read a file,
    Then search on how to readh a CSV file using Java.
    After researching you should be able to read the CSV file line by line and store each line inside a Collection.
    Then research on Google, on how to write to the database using JDBC
    Write a simple program that inserts something to a dummy table in the database.
    Then, read the data stored in the Collection, and write insert statements for each records in the collection.

  • How to import jar & exp file into the eclipse 3.1 + jcop

    hi, I am new to the javacard technology.
    I have implementing applet by using eclipse 3.1 + jcop plugin.
    recentlly, i got jar and exp file from someone. and I have to import given two files in the my applet.
    Q1. but i don't know how to use(import) two files into the elipse.
    and...
    I have tried to put the export file structure in the build path, but I am still getting the same error:
    Q2. "resolving constant-pool of clazz cash/ccash; failed: no such clazz cash/ccash;", what means?
    anyone help me~plz!
    many thanks..
    lsh.
    Message was edited by:
    neonoble

    1) In the Package explorer right-click the project you want to import the jar files into.
    2) Click import
    3) Select Archive file in the Import dialog box and click next
    4) Browse to the jar file and select it
    Socx

  • What should I do when I can't import mp3 audio files into my Flash library?

    Hi!
    I am currently working on a flash animation title sequence but for some strange reason I am unable to import the mp3 audio into my flash library.  I keep getting an error message stating that it can not import. 
    Signed,
    Confused animator ZagonGirl

    The file is protected with DRM, encoded oddly or whatever. Try to convert it in an external program.
    Mylenium

  • How integrate swf files into my flash

    Hi, I´m new to flash programming, and I have to take an
    existing swf and make some small changes to it. I decompiled it
    into an fla file but there are quite a few sprites which are
    themselves swf files which did not get into the decompiled fla.
    How do I put them back into the project so that when I make
    it into an swf again it will be just like the original?
    thanks, Diana

    I already have that , it didnt decompile completely, the
    sprites that are
    swfs did not decompile. they also have this in them, what
    does that mean?
    class mx.core.UIComponent extends mx.core.UIObject
    static var symbolName: String = "UIComponent";
    static var symbolOwner = mx.core.UIComponent;
    static var version: String = "2.0.1.78";
    static var kStretch: Number = 5000;
    var focusEnabled: Boolean = true;
    var tabEnabled: Boolean = true;
    var origBorderStyles = {themeColor: 16711680};
    var clipParameters = {};
    static var mergedClipParameters =
    mx.core.UIObject.mergeClipParameters(mx.core.UIComponent.prototype.clipParameters,
    mx.core.UIObject.prototype.clipParameters);
    var __height;
    var __width;
    var _focusrect;
    var _parent;
    var _xscale;
    var _yscale;
    var addEventListener;
    var dispatchEvent;
    var drawFocus;
    var enabled;
    var focusManager;
    var invalidate;
    var removeEventListener;
    var stylecache;
    var watch;
    function UIComponent()
    super();
    function get width()
    return this.__width;
    function get height()
    return this.__height;
    function setVisible(x, noEvent)
    super.setVisible(x, noEvent);
    function enabledChanged(id, oldValue, newValue)
    this.setEnabled(newValue);
    this.invalidate();
    delete this.stylecache.tf;
    return newValue;
    function setEnabled(enabled)
    this.invalidate();
    function getFocus()
    var selFocus = Selection.getFocus();
    return selFocus === null ? null : eval(selFocus);
    function setFocus()
    Selection.setFocus(this);
    function getFocusManager()
    this;
    while (this != undefined)
    if (this.focusManager != undefined)
    return this.focusManager;
    __reg2 = this._parent;
    return undefined;
    function onKillFocus(newFocus)
    this.removeEventListener("keyDown", this);
    this.removeEventListener("keyUp", this);
    this.dispatchEvent({type: "focusOut"});
    this.drawFocus(false);
    function onSetFocus(oldFocus)
    this.addEventListener("keyDown", this);
    this.addEventListener("keyUp", this);
    this.dispatchEvent({type: "focusIn"});
    if (this.getFocusManager().bDrawFocus != false)
    this.drawFocus(true);
    function findFocusInChildren(o)
    if (o.focusTextField != undefined)
    return o.focusTextField;
    if (o.tabEnabled == true)
    return o;
    return undefined;
    function findFocusFromObject(o)
    if (o.tabEnabled != true)
    if (o._parent == undefined)
    return undefined;
    if (o._parent.tabEnabled == true)
    o = o._parent;
    else
    if (o._parent.tabChildren)
    o = this.findFocusInChildren(o._parent);
    else
    o = this.findFocusFromObject(o._parent);
    return o;
    function pressFocus()
    var __reg3 = this.findFocusFromObject(this);
    var __reg2 = this.getFocus();
    if (__reg3 != __reg2)
    __reg2.drawFocus(false);
    if (this.getFocusManager().bDrawFocus != false)
    __reg3.drawFocus(true);
    function releaseFocus()
    var __reg2 = this.findFocusFromObject(this);
    if (__reg2 != this.getFocus())
    __reg2.setFocus();
    function isParent(o)
    while (o != undefined)
    if (o == this)
    return true;
    o = o._parent;
    return false;
    function size()
    function init()
    super.init();
    this._xscale = 100;
    this._yscale = 100;
    this._focusrect = _global.useFocusRect == false;
    this.watch("enabled", this.enabledChanged);
    if (this.enabled == false)
    this.setEnabled(false);
    function dispatchValueChangedEvent(value)
    this.dispatchEvent({type: "valueChanged", value: value});
    "fojool-br" <[email protected]> escribió en el
    mensaje
    news:[email protected]...
    > Hi diana
    >
    > Of a look in this software, the fact can be that it
    helps you
    >
    > Flash Decompiler Trillix page:
    http://www.flash-decompiler.com/

  • HT5295 How do I import an opml file into the iOS podcast app?

    I have been using Instacast and would like to import my large podcast list into the IOS Podcast app. How do I do it? I'm using a first generation iPad.

    David
    I put the files on my Hard Rive, but it still will not open the files. Do I need to go the website where I originally obtained the files. I dragged them to my desktop, but I am still doing something wrong. I appreciate your advice.
    Leslie

  • Insert an swf file into another Flash file

    Hi,
    I'm a newbie to flash trying to insert an SWF flash file (a game) into another Flash file. However, when I import the swf file into the library and drag it onto the frame (and insert the stop(); command onto the frame action to stop it playing the whole movie), the SWF file plays constantly, ignoring all the actionscript and button commands in the game SWF file.
    When I try inserting it using the Window component, the game SWF refuses to play at all - it just stops (clicking buttons in the game work, but it goes-to-and-stops instead of go-to-and-play like it's supposed to do). The only other component I could find was called "Loader". Using this doesn't work either, it won't play any of the animation, just like using the "Window" component
    When the game SWF is played by itself (by just double-clicking to open it from Windows Explorer or embedding it in a web page), it works fine.
    Any help how to do this would be appreciated.
    Thanks.

    Hi,
    I'm posting in this thread because my problem seems similar but may be not...
    In my first swf, I'm loading a second swf via loadClip().
    My second swf works well alone but when I try to integrate itself in my first swf I'm losing my events. My events only works on my first swf.
    I'v tried your trick with _lockroot but he doesn't work for me too.
    Is someone have an idea to help me ?
    Thx
    My code is really basic
    First swf:
            var mcloader:MovieClipLoader = new MovieClipLoader();
            var listener:Object = new Object();
            listener.onLoadInit = function (mc:MovieClip){
                main_obj.__preloader.die();
                obj[funct](target_mc, param);
            mcloader.addListener(listener);
            mcloader.loadClip(file_name, __loader);
    Second swf:
        var box:MovieClip = this.createEmptyMovieClip("box"+depth, this.getNextHighestDepth());
        //Draw box
        drawBox(...);
        // Event on Box, Change Alpha and show arrow or not
        box.onRollOver = function() {
            drawBox(...);

  • Dynamically importing a .mov file into flash

    Hi,
    I need to import a .mov file into a flash file and create a
    .swf movie. I can do it through File > Import Movies option. But
    I want to make it dynamic and import the movie. I would like to use
    ActionScripts rather than the File> Import options. Pls let me
    know if this is possible. Let me know if you have any questions.
    Appreciate any help.
    Thanks & Regards,
    Magesh

    You can only dynamically load at runtime FLV movies.
    You can automate the authoring time environment but this is
    only with the Authoring tool. See
    Extending
    Flash

  • Dynamic swf file into dreamweaver cs4

    Good evening to all,
    Can a basic slide show created in Flash cs4 using as2 to load the images dynamically be inserted into a Dreamweaver cs4 page ?
    The swf file shows up but I can't figure out where to put the linking images so the 2 basic "next" and "previous" buttons work ?  
    Thank as always,
    Fred...

    When you load the swf file into the html page, that becomes the swf's reference for loading files.  So if your structure has a folder containing the html file and another folder for the flash file and another folder for the images, as in...
    main_folder...
         - html file
         - flash folder
              - - flash file
         - images folder
              - - image files
    then you need to change where the swf file is looking for the images because when it is in the html page, that is essentially the folder it is trying to get the images to load thru.
    For instance, if you originally tested using Flash with the swf file targeting the images using...
    "../images/imagefile.jpg"
    (or something like that... those dots confuse me at times)
    and the structure is as I described, then when testing in the html file the targeting would need to be changed to...
    "images/imagefile.jpg"
    Just think of the swf file as living in the html file's folder as far as targeting any files it needs to load, because once it is loaded into that page, it has basically moved to that new location.

  • Bizarre problem trying to import .MTS (AVCHD) files into PSE7 Organizer

    Hi
    b Summary of problem:
    *I recently upgraded to PSE 7 / PRE 7
    *I am trying to import .MTS (AVCHD) files into the PSE7 Organizer
    *I get a "...did not contain any supported file types..." error on attempted import
    b HOWEVER...
    *I can edit same footage in PRE7
    *This footage is automatically added to the Organizer
    *I can play this footage in the PSE7 organizer but generating thumbnails takes ages
    *Camera: Sony HDR SR12 producing .MTS files (full 1920x1080i HD)
    *PC: Intel Core i7 940 CPU, 6GB RAM, RADEON HD 4870 512MB
    *OS: Vista 64 bit
    b Detail:
    I have recently upgraded my PRE/PSE bundle to ver 7 primarily because the new version of PRE boasts support for AVCHD.
    Having installed the new software I quickly tried editing footage in PRE7 with video taken on my Sony HDR SR12 camera (footage taken in full 1920x1080i HD) and it works! Hoorah! I can now finally edit AVCHD footage in it's native format using PRE. Thank you Adobe!
    But my joy was very shortlived because when I tried to import some other footage from the same batch into my PSE7 Video Catalog it wouldn't work. I got a pop up box containing the following error:
    i "Nothing was imported. The file(s) or folder(s) selected to import did not contain any supported file types, or the files are already in the catalog."
    Under this message is a list of the files that I tried to import. Next to each one there is a reason (it's the same reason for each clip):
    i "Reason: The file is damaged or is a format that cannot be included in the Organizer."
    To import files I use the following method: File / Get Photos and Videos / From Files and Folders
    HOWEVER, the files that I imported directly into PRE7 in order to edit them have (surprise, surprise!) automatically been added PSE7 Organizer's Catalog. It takes a quite a while to generate a thumbnail for each clip but it does eventually do it and when it does I can play that footage in PSE7.
    Just in case you're confused by this stage... If I try and manually add files to the PSE7 Organizer it doesn't work BUT if I edit that footage in PRE7 and then load the PSE7 Organizer I see the footage has been automatically added. This makes no sense whatsoever!
    Am I doing something really stupid here? Why oh why will the PSE7 Organizer not import .MTS (AVCHD) files?!
    NB: While searching for a solution to this problem I have, thanks to this Forum, found out about the K-Lite Codec Pack. I downloaded and installed the Basic pack v4.4.5 and now I can, at least, play my .MTS video files in Windows Media Player... I wish I had found out about that a couple of months ago because it would have saved me from buying Cyberlink PowerDVD 8!
    Please someone help before I lose the plot.
    Thanks
    Patrick
    b PC: Intel Core i7 940 CPU, 6GB RAM, RADEON HD 4870 512MB, Vista 64 bit
    b Camera: Sony HDR SR12 producing .MTS files (footage in full 1920x1080i HD)

    Hi
    I'd just like to add an update to this post.
    b Summary:
    *K-Lite Codec Pack clashes with Sony's Picture Motion Browser (PMB) software
    *Analysis of video in Sony's PMB is well worth doing!
    *You can Drag and Drop clips from Sony's PMB into PRE7
    b Detail:
    As you've probably gathered I have now settled on using Sony's Picture Motion Browser (PMB) to Catalog all my video. Sorry Adobe to talk about someone elses product but the Adobe Organizer just can't cope with AVCHD footage no matter how you manage to import it! It's far too sluggish and my PC has an Intel Core i7 940 CPU with 6GB RAM and a 10,000 RPM HDD!
    Anyway, in my first post you'll have read me raving about the K-Lite Codec Pack but sadly I've had to uninstall it because it kept on causing PMB to crash. PMB runs much smoother and quicker WITHOUT that codec pack. Something about it clashed with PMB. The once agile PMB became sluggish and unresponsive.
    Having now removed the codec pack PMB is back to being agile and generaly lovely.
    To view AVCHD footage outside of PMB I have reverted to using Cyberlink's PowerDVD 8 - there's always a pregnant pause between double-clicking on the clip and it playing but that's the only drawback.
    If you are going to use Sony's PMB for cataloging your video collection (and I recommend you do so BUT only if you have AVCHD footage - otherwise stick to Adobe's Organiser) then I can fully recommend "Analyzing" all of your footage. This takes time and a bit of patience because it kept stopping for no apparent reason but would readily start up again (without having to do anything else) BUT once it's done it'll reward you with the following:
    *Filter on any combination of Scenery, People, Smiles - e.g. with a click of a button you can isolate footage that contains smiles, etc
    *Face Search - if you select some or all of the footage in the right-hand pane it will then put a small thumbnail for all of the different faces in that selected footage in the bottom "Face Search" pane. If you then click on one of those thumbnails it will jump to the clip(s) that contain that face and grey out all the other clips
    *Expand Videos - This tool is brilliant! In normal viewing mode you get a thumbnail of the video whether you're in Folder view, Calender view or Detail List view. If, however, you select "Expand Videos" from the tool bar it will show you a series of frames contained within that clip. You can choose from "Highlights" or various regular intervals (5 secs, 10 sec, 30 sec, 1 min, etc). The Highlights option does a pretty good job of picking out the significant changes within the clip
    Lastly, I have discovered that you can drag a clip from Sony's PMB into PRE7. It won't let you put it directly onto the Timeline but it will let you drop it into the Project file list (found under the Edit tab).
    I do hope that this info has helped others like me who are trying to get to grips with editing and cataloging AVCHD footage.
    Patrick

  • How do I add a jar file into the build path of the compiler?

    Hey,
    I'm trying to import a jar file into the build path of the compilation process, but it does not find the packages or the classes that are in it.
    I think I don't add it right...
              ArrayList<String> options=new ArrayList<String>();
              options.add("-d");
              options.add(targetDirectory);
              options.add("-classpath");
              for(String str:includeDirectory)
                   options.add(str);
              if (!compiler.getTask(writer, fileManager, diagnostics, options, classes, compilationUnits).call());
                    ....and I've tried this way:
         public void setTargetDirectory(String targetDirectory) {
              this.targetDirectory = "-d " + targetDirectory;
         private void compile(Iterable<? extends JavaFileObject> compilationUnits) throws Exception {
              ArrayList<String> options = new ArrayList<String>();
              options.add(targetDirectory);
              String classPath="-cp ";// tried this also with "-classpath"
              for (String str : includeDirectory)
                   classPath+=str+":";
              options.add(classPath);
         if (!compiler.getTask(writer, fileManager, diagnostics, options, classes, compilationUnits).call())
              // throw new Exception("Compilation Error");
         }Thanks in advance,
    Adam.
    Edited by: Adam-Z. on Feb 24, 2010 5:41 AM
    Edited by: Adam-Z. on Feb 24, 2010 5:42 AM

    Thank you for your reply,
    Q: Are there .class files in that directory in that jar file? (the compiler doesn't ( can't )) look for directories, it can just look for specific files , and scan to get a list of all files matching certain criteria. So if there are no class files, it will say the package doesn't exist, even if there is a directory, possibly containing other files.yes there are class files in the jar, the tree structure:
    j2MeDataChunkGenerator_Plugin\(lots of class files)
    META-INF\manifest.mf
    and thats it.
    , your code will only work on windows because other platforms use a different path separator. You should use java.io.File.pathSeparator not explicit ';" when building your classpath. (this is unrelated to your problem, but you should correct it)will do, thanks.
    Q: Is that error in your post formatted by your own diagnostics? (we could possibly help you better if we didn't have to guess!!)I would not post my own error code, this text is generated by the compiler diagnostic.
    {code}
         System.err.println(" Error details: " + diagnostic.getMessage(null));
    {code}
    Q: Is line 3 of ImageCroper_Editor.java (sic) an import statement? (we could possibly help you better if we didn't have to guess!!)it is an import error... didn't the error message stated that it is an import problem? wired, I'm sure before it did. anyway it is an import error.
    Also you don't show us what the variable includeDirectory is in terms of type, and contents, that might be helpful. (we could possibly help you better if we didn't have to guess!!)It has only one String object: "D:\%Important Documents\WorkSpaces\PacMan\ApplicationManager\Plug-in\Data Chunk Designer.jar"
    the last file on the classpath list.
    Q: Have you proven this? that i did post, in this long line of text.
    Q: Is the compiler finding other classes (in other packages) in that same jar file?No. all the class files are in the jar, they all have entries that start with "j2MeDataChunkGenerator_Plugin\*.class", and since I get 47 errors I guess it does not load any other class.
    thank you for you comments, the problem with having these errors, is that I can't even get a piece of information where this error is coming from, only that it is an import loading error package not found, what does that mean? that the jar was not loaded in compilation(no error about this), that the jar is corrupted(no error about this), that the path is incorrect(it is correct I made sure), that there is no such package in the jar(There is), that the compiler does not load the package(does it even do that?), really I can't even guess why this happens, I've been at this on and of all day today, really annoying.
    Thanks,
    Adam.

Maybe you are looking for

  • Using fieldnames table in GUI_DOWNLOAD method

    Hi Experts, I need to download an itab data with field names as headers. I am using this but getting error 'Formal parameter "FIELDNAMES" does not exist. However, the parameter "FILENAME" has a similar name'. CALL METHOD cl_gui_frontend_services=>gui

  • The app console doesn't match. It gives error -1712

    THE app console doesn't match. It gives erro -1712. The store has already changed the memory

  • Satellite L - LCD monitor flashing black after desktop loads

    My LCD monitor has started flashing black at startup. It doesn't do it if I log off and log back in, only on startup. I can log in, the desktop loads and everything looks normal then after about 7 seconds everything goes black, then the taskbar quick

  • Did your 7.1.2 upgrade finish well?

    Had a touch of an issue upgrading the iGadgets last night, in that the process refused to complete normally and had to be force-restarted. Rather than redoing the whole story, here's the details of my post in the iPad forum: iOS 7.1.2 upgrade odditie

  • Selecting record from cdpos

    Hi SAP team, How to select record from CDPOS when value_old field is initial. For currency field . Thanks & Rgds, Santhosh Kumar. Moderator message: please search for information and try yourself before asking. Edited by: Thomas Zloch on Mar 9, 2011