Navigating the Timeline from Movieclip

Hi there
I'm hoping someone can help me with this. I have created a
scrolling image gallery in Flash which works fine from the Timeline
(Scene 1). Now I am using it inside a movie clip called gallery I
need to know how to get it to load the images into the main loading
area now that it is within a movie clip. The code that makes the
images load into the loading area at the moment is this
on(press){
_root.the_entire_gallery.gotoAndPlay("pic5");
I'm assuming that now it is inside a movie clip I need to add
something other than _root. to get it to access the images but I
don't know what. I've tried _parent but to be honest I'm clutching
at straws as I don't really understand what it does.
Hope someone can help.
Thanks

Hi there
I have tried both the solutions you suggested without any
luck. Is there a way I can send you a copy of the fla and you will
be able to see how it is set up?
Perhaps a simpler example is the button inside the gallery
movieclip, this doesn't work from inside here either it has the
following code on it ...
on (press) {
_root.gotoAndStop("sketchbook");
...that let's it work from the main timeline but now that the
frame label "sketchbook" is inside the gallery movieclip how do I
get it to reference that because nothing is happening as I take it
_root. is pointing it to the main timeline?
I have tried on (press) { gallery.gotoAndStop("sketchbook");
I know it all works if I don't put it into a movieclip but I
want to have everything neat and tidy on the timeline. It would
really help to be able to send you the fla.
Thanks, Jo

Similar Messages

  • Moving the timeline from a loaded swf file

    Hi,
    I have been at this problem for awhile now.
    I have a two swf files, whic are loaded using ths code as an example:
    stop();
    var req:URLRequest = new URLRequest("Enchilada_A.swf");
    var loader:Loader = new Loader();
    function imageLoaded(event:Event):void {
        ldContainerB.addChild(loader);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
    loader.load(req);
    The first one is triggerrd by a MC button that is on the timeline.
    That first swf loads fine.
    At the end of that file(which is short animation)
    I have code that says:
    MovieClip(parent).gotoAndStop("frameThree");
    I have also tried:
    MovieClip(root) and
    if (movie Clip is parent) {
    MovieClip(parent).gotoAndStop("frameThree");
    and/MovieClip(parent).nextFrame();
    I have also tried placing this. or root. into the code.
    I am not talking to the timeline from this swf file.
    Once the timeline moves to the next Frame the new swf file can load.
    My solution was to combine both swf files into one, which loads from the timeline button.
    It works and I can gt by but I really woud like to learn how to load a swf and talk to the timeline fro more flexibilty.
    I'm out of strategies.
    Is my code in the wrong place(at the last frame of the animation?
    Should it be written on the timeline by creating a new var that has a function once the animation is completed.
    Any suggestions and/or commens would be greatly appreciated.
    Thanks.

    Thanks,
    I finally had a chance to get back to this project and used your suggestions, whichare definitiley helpful. I also, created a new and very basic version of the project so I could easily see what was happening.
    This is the code that works:
    stop();
    MovieClip(parent.parent).nextFrame();
    trace(container_mc);
    I'm still trying to understand how the child parent relationship is working but this will get me going in the right direction.

  • Change a text field on the timeline from a class

    Hi,
    I need some help in changing the content of text fields that are on the stage of the main timeline from within an external class. I have created a countdown timer which is called from the Document Class. I think it is a problem with the scope of the variable but I can't work it out.
    Main Document Class:
    package
        import flash.display.*;
        import flash.events.*;
        import count_timer;
        import RectangleButton;
        public class main extends MovieClip
            public function main()
              [create a Start Btn]
                var startBtn_mc:MovieClip = new MovieClip  ;
                addChild(startBtn_mc);
                var startBtn:RectangleButton = new RectangleButton("Start",90,25,18,0xCC0000,0x000000);
                startBtn_mc.x = 105;
                startBtn_mc.y = 200;
                startBtn_mc.addChild(startBtn);
                startBtn_mc.addEventListener(MouseEvent.CLICK,onClickStartBtn);
                function onClickStartBtn(event:MouseEvent):void
                    var inputDay1:String = dayInputtxt.text;[these are input fields on the stage]
                    var inputHr1:String = hrInputtxt.text;
                    var inputMin1:String = minInputtxt.text;
                    var inputSec1:String = secInputtxt.text;
                    var counter:count_timer = new count_timer(inputDay1,inputHr1,inputMin1,inputSec1);
    Countdown Timer:
    package
        import flash.display.*;
        import flash.utils.Timer;
        import flash.events.*;
        import flash.text.*;
        import RectangleButton;
        public class count_timer extends MovieClip
    //not sure this is correct
    public var daytxt:TextField;
    public var hrtxt:TextField;
    public var mintxt:TextField;
    public var sectxt:TextField;
            public function count_timer(inputDay1,inputHr1,inputMin1,inputSec1)
                var inputDay = inputDay1;
                var inputHr = inputHr1;
                var inputMin = inputMin1;
                var inputSec = inputSec1;
                var msinputDay:Number = Number(inputDay);
                var msinputHr:Number = Number(inputHr);
                var msinputMin:Number = Number(inputMin);
                var msinputSec:Number = Number(inputSec);
                var ms:Number = Number(msinputDay);
    //convert input to milliseconds
                ms = ms + msinputDay * 24 * 60 * 60 * 1000;
                ms = ms + msinputHr * 60 * 60 * 1000;
                ms = ms + msinputMin * 60 * 1000;
                ms = ms + msinputSec * 1000;
                addEventListener(Event.ENTER_FRAME, loop);
                function loop(e:Event):void
                    ms = ms - 1000;
                    var sec:Number = Math.floor(ms / 1000);
                    var min:Number = Math.floor(sec / 60);
                    var hr:Number = Math.floor(min / 60);
                    var day:Number = Math.floor(hr / 24);
                    sec = sec % 60;
                    min = min % 60;
                    hr = hr % 24;
                    daytxt.text = day.toString();[everything appears to work to these variables. I think it should be root.]
                    hrtxt.text=(hr<10)?"0"+hr.toString():hr.toString();
                    mintxt.text=(min<10)?"0"+min.toString():min.toString();
                    sectxt.text=(sec<10)?"0"+sec.toString():sec.toString();
               if (ms <= 0)
                        removeEventListener(Event.ENTER_FRAME, loop);
                        gotoAndPlay("TimesUp");
    Many thanks in advance.

    Your code is not going to work as you show it. First, you should not be putting your class methods inside the constructors... And yes - scope. You make your new count_timer as a local variable inside a function that is called on click. Essentially, the timer is gone just as fast as it's created. If you want the timer available to the other methods in the class it should be declared as a private var in the class definition.
    And I agree with kokorito - have your timer extend EventDispatcher and then it can do like: dispatchEvent(new Event("myTimerEvent")); and you can then add an eventListener to it when you create it in your main class. You just listen for "myTimerEvent" or whatever string you use, and call whatever function you want - just like using any other listener.

  • Opening the Canvas window and the Timeline from the browser

    I am on an Intel 2x2.66 Dual Core using OS 10.4.11 and working in FCP 6.04.
    I know this is a stupid question but having been a composer all my life, I am not up to speed on FCP and I seem to be unable to find the answer in my manual.
    I dragged a QuickTime movie to the browser window. It is 500x375 in dimension and uses a H.264, AAC codecs. (info I got from the Get Info window).
    The video shows up and plays in the Viewer window but I cannot get the Canvas window nor the Timeline to open.
    I have tried selecting the sequence from the list in the browser and then control clicking it and looking at the shortcut menu there. The manual says I should choose Open Timeline from this shortcut menu but that is not even a choice I have. I don't mean it is grayed out, I mean there is no Open Timeline choice on the menu.
    As an alternate, the manual suggests selecting the sequence and then choosing View > Sequence in Editor. I tried this also. There is no Sequence in Editor choice under the View menu. There is a Clip in Editor choice but when I select that it simply opens the movie in Quicktime.
    I am aware that I am probably forgetting something simple or doing something stupid but I cannot figure it out. Help would be much appreciated.
    Thomas

    the simple fact that is being eluded to here is that without an active sequence in the project (shown in the browser) there is no canvas or timeline. If you delete your sequence from the browser, the timeline and canvas will disappear, and you will have to create a new sequence, then open that sequence by double clicking it, to get those windows back. Canvas and Timeline display sequence content. No sequence, no c/t.

  • Looking for some help with the Timeline from SIMILE

    Remember this widget... An interesting widget for displaying timelines
    Well I am trying to use is and have now got it working. I what to have a hyperlink to the page in my application that is the detail of the pice of the row in the timeline.
    Any ideas.
    Edited by: Chris Wendell on Nov 17, 2008 4:41 PM

    I got a link to a 2nd Apex page working some time back. I included my link by appending something like this to the main chunk of text:
    -- 2nd page is "2"
    htf.escape_sc('&lt;BR&gt;&lt;A HREF="f?p='||v('APP_ID')||':2:'||v('SESSION')||'::'||v('DEBUG')||'::P2_ID:'||id||':" target="_blank"&gt;Edit&lt;/A&gt;')
    I think you could just use the documented "link" attribute though ( htp.p('link="' ||' http://www.yahoo.co.uk"'); )
    The final step I needed was to close the pop-up edit form after submit. Solution also came from this forum. On the page #2, Optional URL Redirect > URL > URL Target "javascript:{doSubmit('SAVE');window.opener.location.reload();window.close();}"
    Also - the 2nd page has an unconditional branch back to the main timeline page, so it refreshes after submitting the detail page.
    Edited by: maceyah on Jan 8, 2009 11:23 AM

  • How do I locate a clip in the timeline from the browser

    I am using FCE and I know that I can locate a clip from the timeline by using shift F.
    I want to check on a clip in the browser and find where it is in the timeline. How do I do that?

    Open the clip from the browser into the viewer. Press the F key. If the clip is used in the timeline, the playhead will move to the clip.

  • CONTROLLING THE TIMELINE FROM EXTERNAL MC

    I have a website
    http://www.charlesmarsden-smedley.com/index1.html
    that I am building.
    In the projects section, if you navigate to Projects >
    Museum > Tower of London. You will see 'more information' link.
    This loads an external Movie clip for the text feild. I would
    like to make the 'more information' dissappear when it is clicked
    and the text appears in the target. The way I thought is best is to
    move the timeline on one frame and just remove the link, but when I
    click on 'back to images' link it reloads the images (external MC)
    but the 'more information' link is still hidden.
    How can I control the main timeline from an extrernal movie
    clip?
    Am i being rediculously long about this operation?
    thanks
    Harky

    maybe you didnt understand correctly.
    the 'more information' link loads an external movie clip (the
    text) into the right side of the page.
    At the bottom of this movie clip is a green link 'back to
    images' this button sits within the movie clip. So my problem is
    making this button controll the main timeline (as its root is the
    movie clip root, not the main web page root)

  • Help with button that goes back to main timeline from movieclip

    I have a movie created that is broken down into sections on the timeline (home about contact etc)
    Each section has a movieclip
    I want to be able to be in the about movieclip and click a button that will bring you back to the main timeline contact section
    Heres is the actionscript I am using to navigate the main timeline for each section
    stop();
    //handle events for buttons...
    index.addEventListener(MouseEvent.CLICK, clickSection);
    about.addEventListener(MouseEvent.CLICK, clickSection);
    wind.addEventListener(MouseEvent.CLICK, clickSection);
    turbines.addEventListener(MouseEvent.CLICK, clickSection);
    services.addEventListener(MouseEvent.CLICK, clickSection);
    invest.addEventListener(MouseEvent.CLICK, clickSection);
    contact.addEventListener(MouseEvent.CLICK, clickSection);
    function clickSection(evtObj:MouseEvent){
                    //go to the section clicked on...
                    gotoAndStop(evtObj.target.name);

    if that code is on the timeline of a movieclip whose parent is the main timeline, use:
    MovieClip(parent).gotoAndStop("frame label in main timeline");

  • Extracting portions of the timeline from iMovie to create a 'Sound File'

    Hello
    I recently used my Cannon GL2 as a field recorder to record 16 bit audio sound effects.
    I'd like to extract certain portions of the timeline to create various 'Sound Files' which will be used later (as sound effects), in either iMovie, or FCE HD.
    In iMovie HD, the only method I'm familiar with to extract a portion of the timeline to a 'Sound File', is to FIRST export that portion to a Quicktime File. Then I use 'Sound Studio 2.2.4' to import the Quicktime File. In Sound Studio, I can then create either an AIFF File, or Wav File.
    From there, I open iTunes, and import the Wav File. Now I convert that Wav File to an MP3 (if I need to compress the size of the file).
    I know I can import Raw DV Video Files (Captures), into Garage Band, but then I can't export that edited project into a Sound File.
    But I do know I can use Garage Band to edit (EQ), a portion of the timeline, then Export that portion (as I explained above). But I'm still going through some extra steps .....
    With all I'm mentioned, perhaps I need to get another software program in order to eliminate a step on my way to exporting a portion of a Video timeline from either iMovie, or FCE, and get straight to creating a sound file suitable for later import back into FCE, or iMovie?
    Thanx for your comments
    Mike

    Hey Piero
    Comestah?
    I'm an Italiano too My Granparents are from Bari
    Well yes thank you - that certainly answered part of my question
    Now I wonder if I can extract just a 'PORTION' of the timeline? I tried to insert division points without actually cutting out all the unwanted stuff, and highlighted just that portion, but the Audio Extract process reverts back to extracting the ENITIRE timeline. So I guess I'd have to actually cut and delete all the unwanted parts, then 'save as' to that NEW iMovie project reflecting just that edit in order to extract JUST that audio piece?
    I wonder if the process is more precise in FCE?
    Gracias
    Mike

  • Linking to a point on the timeline from a separate html page

    Hi,
    I'm using Edge Animate 1.0 in windows Vista.
    I want to link from an html page to within a point (label) on the timeline. What code would I need to put on the button?
    John

    worked a few months on an js file, to make this kind of stuff alot easyer for beginners and a timesaver for an experts (simplify and less coding for edge animate)
    will be released over a few days

  • Two problems : navigating the timeline and know where your shot matching originates

    Hello,
    - I wonder how you can navigate the timeline freely (I'm on PC in direct link mode) to be able to use, for example, the C shortcut easily when you edit a one hour film. In a word, I can't find how I can zoom on the secondary playhead instead of the first playhead, so I can see clearly on which clip I use the C shortcut function
    - When I use the shot matching function, is there anyway to know, afterwards, on which clip it originated ? Because now I want to do shot matching on another similar clip, but if I do it on the previously shot matched clip, it produces odd results.
    Thanks.
    Fred

    To zoom on the second/third playhead make it master by selecting the playhead number. Master playhead is displayed orange:

  • Control the Timeline, from a button inside a movieclip.

    First off, I have a movie clip called mc_instructions.  Inside the movie clip, about 940 frames into it, a button appears called btn_ready.  I need this button to bring me to frame 3 on the main timeline when clicked on.
    How can I do this in ActionScript 3.0?
    I can't figure it out!
    Thanks
    Don

    on frame 940:
    btn_ready.addEventListener(MouseEvent.CLICK,f);
    function f(e:Event):void{
    gotoAndStop(3);

  • Access main timeline from movieclip

    I want the to have a command on the end frame of a move clip to gotoAndPlay the second frame on the main time line. How can I do that?
    I tried it as gotAndPlay (2), I added Scene 1, and that didn't work. I even put a frame label on it and it doesn't recognize the frame label.

    Delete the additional scene, as it only complicates the matter.
    At the end of your nested MovieClip write:
    MovieClip(root).gotoAndPlay(2)
    or
    MovieClip(root).gotoAndPlay("framelabel")
    //substitute framelabel with the actual label you put on the frame

  • Navigate to point on Edge Timeline from a menu outside of edge

    Is it possible to navigate to a point on the timeline from a menu that is outside of the edge animation?
    I have a file set up that has about six screens on it.  Each screen represents a different navigation tab.  The actual file has left and right buttons that create a scroll effect either right to left, or in reverse.  This works fine.  Each transition is marked with a label, such as "Slide01", "Slide02" etc and I am using  | sym.Play("Slide01") | to good effect.
    What I need to do though is create a menu on a web page that takes a user straight to the correct point on the animation.  For example, the second navigation option would take them to the second screen of the edge file.
    Any help would be greatly appreciated.

    We ended up using the following code
    $('#test').click(function(){
    var Comp = AdobeEdge.getComposition('EDGE-XXXXXXXX');
            Comp.getStage().getSymbol("SYMBOLNAME").stop("FRAMELABEL");
    You can replace .stop() with .play() depending on what you want the movie to do.
    We're currently working on parsing a URL to the movie so that you can navigate to a specific part of the animatio when you land on it from another page.  This may prove interesting for pre-loaders though.

  • How do i reposition the timeline to the left margin?

    I dip into FCP Pro X when I have a new project to edit - in between doing other things.  The interface reminds me of the dash on my old Merc A160.  It has very few buttons and they have multiple functions, but to change the time on the clock I always have to consult the manual.  Less is not always more - something Apple struggle to understand sometimes.  If I was using FCP all the time (heaven would be not having several different jobs) I would probably figure it out - but, because there is nothing intuitive about the interface, I have to relearn how to use it every time I come back to it.  Just like the buttons on my Merc.  I have completed a couple of editing projects in FCP.  But I haven't looked at it for some months.  In between I have been using Resolve (because a lot of my footage is shot in Log mode - something FCP doesn't handle at all - and I have to use a LUT to make the clips usable in the editing process).
    I have a wedding to edit.  Three cameras, three audio tracks on the cameras plus the church PA audio and a Roderick recording from a mic work by the groom.  I would like to choose an audio track and sync the video to that - but I learned last time that is not possible (or not easy).
    I looked at multicam sync clips but I can't see how I can use this to fit my workflow - it requires too many decisions up front and I don't have small clips - I have two 1hr "clips" and some smaller ones from the handheld camera.  I don't want to chop up the "master" clip and I can't see how to easily sync everything together in such a way that I can see it all.   Yes I see that I can choose different angles in a different editor, but I don't want to get into that at this stage - I just want to see all my material in a timeline so I can make major edit decisions first.  Oh I wish I had not thrown out FCP 10...
    So what I want to do this morning is just drop clips into the timeline from the main camera, chop it up and remove the bits of the ceremony that I don't want in the final video and then choose clips from the other cameras to replace the main camera. 
    So, I drop a clip in the timeline.  Its the warmup to the wedding.  People are sitting down.  The organ is playing.  I don't want this in this timelines.  So I trim the clip from left to where I want it to start.  Great.  Except...
    ... the timeline now starts halfway across the display and I have a blank black box to the left.  I cannot, for the life of me, see how to move the start of the clip back to the left margin.  Nor can I imagine why anyone at Apple thinks this is a useful thing to do?
    In between all of this I have the usual Yosemite instability issues and, for whatever reason, Preview keeps crashing so using the FCP User Guide is more or less impossible.
    Any clues?
    And don't say use Resolve on Windows instead.  I don't need much persuasion, and I hate Windows.

    I don't agree with you here.  Resolve is much easier to use - I don't have to try and get into the heads of the developers and its is easy to see how my material slots into the editor.
    I am still trying to get my head around the way FCP organises the material.  Events/Projects?  What are they thinking here?  How does this fit into a wedding video?  I can create meaningful "events" (wedding/photoshoot/reception) etc but why would I?.  Is a "project" just a timeline - a "sequence" in normal film editors?  Why not call it that then?  I cannot figure out what kind of environment Apple were imagining when they came up with this way of organising things?  They must have had some kind of job in mind where events and projects make sense.  The manual is silent on where the clips actually go - are they organised within events?  within projects"  or within both?  Whatever it is, it might be easier to understand what FCP is doing if Apple explained what this structure means and why they have adopted it.  I am left to guess.
    What I can't seem to get rid of is the groups (I have no idea what else to call them) which are just a date and under which my clips appear.  I don't want this hierarchy but I can't see how to get rid of it...   Clips that should be together, but were filmed on different dates, are in different places - and I cannot see how to group them together without these dates imposing another level of hierarchy,  I struggled through the last couple of videos not really understanding where my clips were and ended up with multiple copies all over the place.  Right now I don't know if I have all my footage in the library or not - its so hard to construct a meaningful organisation in this crazy interface.  I just deleted 8 copies of a lapel mic audio track - I have no idea how I got 8 copies of that into this library.  Does FCP just import duplicates without warning?  Its so hard to correlate what is in the library with my folder structure on disk...
    To my mind, this is one project - a wedding video.  And this video will include multiple sequences.  But my clips need to be ordered in such a away that makes sense to me - I am not sure how to do that in FCP, but its easy in file manager.  The clips were shot in various locations on multiple occasions.  But this has nothing to do with the finished product, which will have its own order of things, not necessarily related to the order of shooting.  In FCP (or Resolve) I would have the clips in bins and my various sequences which I could then assemble.   Now I guess these are projects?  They aren't "projects" at all - at least to in my mind.  I don't like having to think about this project (the wedding video) in some weird way which only makes sense to the FCP developers.  Maybe they never filmed a wedding!
    Thanks for the advice re multicam clips.  I came to the same conclusion  but there is an awful lot of stuff to synchronise and I am not confident that FCP will do this in one go.  But now I have to learn and get familiar with the different editing environment for multicam clips.  Oh joy!  I am hoping I can add more clips to a multicam clip afterwards - once I sort out how to get my footage into some meaningful structure without all these surplus dates...  The clips have been imported so that the file structure creates keywords - which would be ok, perhaps, except for this extra date-related hierarchy which means I have to keep expanding the tabs to see the clips.
    As for Synchronised clips, if you read the user guide there is nothing to warn you that this is an audio-only sync.  Or which video track you are going to end up with. "For example, if you select two video clips and three audio clips from different sources that were all recorded during the same take, Final Cut Pro automatically analyzes and syncs the clips together into a new clip in the Browser."  Perhaps, when they wrote this manual, they were thinking this would create a multicam clip.  Or maybe its an old manual - I don't suppose they get updated automatically.  Maybe I better go look to see if there is a newer version on Apple's website.
    I seem to spend a lot of my time undoing the default settings in FCP.  I don't want my footage disappearing into an impenetrable amorphous mass in some hidden library somewhere, so I have to remember to change that default - the wording in the inspector is not very clear and sometimes I find that it is importing the material into its library and creating another copy.  I generally only notice when my backup software suddenly starts copying gigabytes of data to tape...
    I don't want to see my footage an in iMovie layout with no tracks either.  Especially my audio tracks, so I always have to unpack them.  I miss the little buttons to turn off different audio tracks - yes I know there is another way to do this, but its not obvious (as with everything else in this software) and means fumbling around in the interface to find how to do it - and its slower if you want to flip between audio tracks to decide which one to use at any given point.  Its the same with synchronising clips.  You expect to select the clip, right click and get a sync option.  But its in a separate menu under Clip.  Why?  If you want to copy a clip to another library its not under a clip menu - but under the file menu?  Why?  I think its a terrible mess - and I think that Apple introduced a level of complexity to this interface with little to show for it.  I am new to Resolve.  It looks complicated with all its colour wheels and stuff, but actually its very intuitive and easy to use.  And its very easy to structure clips and sequences without having to spend hours trying to figure out how Apple think you should do things.  if you use FCP all the time then fine - you get used to it.  But is it truly a better way to work?   I like structure - it helps me to understand my material - but FCP is anti-structure and forces a virtual schema on its users.  If you like that, well and good - but it shouldn't be compulsory.
    I got my head around using keywords - but I hate it - its just extra work for me and I hate the loss of the direct relationship with my material.  Its very hard to see whether I have used all the material or not and how it all fits together.  Now I have duplicated stuff everywhere and lots of things missing - but no real organisation.  And I have to remember how I keyworded clips to find them - not easy in a big project.  And since I have lots of big clips I have to remember not to change the I/O points without first saving the subclip and assigning a keyword.  Extra work and easy to stuff up.  Its a problem too if you edit a subclass without realising it is just a virtual clip so every instance will be edited.  Sometimes thats a good thing, but not always.  The issue is that this happens invisibly so you have to be very careful working with these virtual clips.  Subclips are safer - you always know whats happening - and that's increasingly difficult when you have lots of subclips which are really the same material but grouped separately.
    Its much the same with all Apple's software today - its all written from some other planet.  I have had to take out a subscription to Office 365, use Dropbox and oneDrive instead if iCloud and download Resolve to deal with my Blackmagic camera.  Its a consumer world at Apple now - and an iMovie view of the world.  Apple like to hide half the functionality because they think it makes things look easy.  Their manuals are useless and their online Help worse.
    And yes, thanks for the Shift-Z.  That works, though finding it in the manual is another matter.  But why this behaviour in the first place?  Is there any reason why you would want your timeline to start halfway across the screen?  Why doesn't the clip just snap back to the left as it would in any other editor?  Its little quirks like this that make this a very frustrating experience.  I am not editing all the time - I am just as likely to be in Dreamweaver, Indesign, Illustrator or Photoshop - or working on business projects.  I don't feel I should have to wade through a badly written user guide or ask basic questions in this forum every time I come back to FCP Pro X - that was never the case with the old FCP.  Its just like the clock on my car - daylight saving happens here twice every year and the time has to be changed.  I always need to refer to the manual.  To my mind that is a crap user interface.
    FCP Pro X has some nice new features.  But its hard to justify this when everything else is so hard to use.  Its like connected tracks.  Why is that an improvement?  I always start with an audio track from my master camera - because its on tape and runs for the whole take - but its impossible (or very difficult) to do this in FCP Pro X.  If I have a jumble of clips and its not clear where they fit, I can't assemble them, in sequence on a separate track - I have to connect them, arbitrarily, to an existing track.  And then undo that connection later.  I have to rethink my workflow every time to try and fit in with FCP Pro X.
    In an earlier life I was a software developer.  The golden rule of applications in business was that you built your application to suit the workflow of the user.  You could streamline it, but not change the sequence unless the business had made a decision to do that already.  I wrote quite a few large applications for various areas of the business - I used them to make sure they worked, and I used the existing workflow.  A user could come back from holidays and know immediately how to use the app to do their job.  A new user could use the app without weeks of training.  Its not hard to write intuitive software - but its impossible if you set out to impose a new workflow or method of organisation on a user.
    Apple seem to have missed this altogether.  FCP will always be a dog, for that reason alone.  I have never used Avid or Premiere Pro, but I imagine no-one else has adopted Apple's upside-down way of doing things.  That spells lots of training issues for anyone adopting FCP Pro X.  And now since you have to work with  colour grading apps, like Resolve, users have to work backwards for Apple and forwards for everyone else, in the same project.
    After this project I am going to look seriously at Premiere Pro - but only if I decide I can't use Resolve on its own for everything.  I have been an Apple diehard for 12 years after being a Windows guru for a decade before that.  I am close to giving up on Apple.  Having to buy Office was very difficult - but the Apple apps have been dumbed down (Pages) or were never up to the mark (Numbers).  I can't use iCloud because it doesn't support half my material so I have Microsoft oneDrive which also goes against the grain.  And I am running Yosemite which means crashes at regular intervals and reboots several times a day.
    I am an Apple shareholder too.  But I beginning to think they have lost the plot.  I hope not.

Maybe you are looking for

  • Spatial Index problem again

    I have a TAR open and I am awaiting an answer, but the representative is based in Austraila so I am assuming I will not get another answer until tomorrow, so hopefully someone can see what I have going on and can offer some advice (Thanks in advance

  • USB drives aren't recognized in Windows after Yosemite update.

    On my Windows partition, my flash drives aren't recognized anymore. I've tried installing the Windows Support Software. That doesn't seem to do it.

  • X2goserver-git broken, possibly caused by libpng upgrade

    Tried to connect to my server via x2go today and would get an error, so I remembered the last announcement and went on to recompile all the AUR x2go git packages I use, starting with nxcomp-x2go-git, but the compilation stops with this error message:

  • Need Query to display

    Hi Folks, I need query for displaying following: Adjusted A/R Balance:- Sum of all open Receivables transactions for the Bill To address for a :Particular_Customer. Total of all open items (Invoice, Credit Memos, CLAIMS, ON ACCTS, UNAPPLIED, DEBIT ME

  • Problem starting DBAUD and OSAUD Collector!

    Hi all, 1.While i was trying to start DBAUD collector on AV server, i got this error in "Audit Errors" of av em, module: zaac , on line 7662 ora-12154: tns could not resolve the connect identifier specified 2.the OSAUD is starting but i have this err