How do I reposition curser?

In Dreamweaver, after I setup the page w/ css layers, I get
an image from PS by copy merged. When I paste the image into a
layer, it goes to the curser instead of the top of the layer. The
problem is the curser is 10 px's from the top of the layer. How do
I get the curser to go to the top of the layer or get the image to
go where it should? I am following a total training video. In
setting up up DW, I selected the preformatted CSS style of html
fixed header,2columns and a footer. Next, I gave attributes to the
CSS layers according to the video. There is no padding at the top
of the layer. Then, I delete the text,i.e.(header) in the layer and
copy merge an image from PS and paste into the layer. The image
will not paste to the top of the layer, instead it goes only as
high as the curser, which is 10 px's from the top. I cannot get the
curser to move to the top or paste to the top. Any suggestions?
P.S. I realize this sort of thing should be done in fireworks, but,
am trying to follow course outline.
Rushfar

We would need to see both your HTML and CSS to know what is
happening. The
cursor is being placed within the block at the far left/top
available for
content. If you see it not going all the way left/top, it
must be because
of some internal padding in the block.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Rushfar" <[email protected]> wrote in
message
news:fvme7j$nof$[email protected]..
> Mr Schaefer, I am following a total training video. In
setting up up DW, I
> selected the preformatted CSS style of header,2columns
and a footer. Next,
> I
> gave attributes to the CSS blocks according to the
video. There is no
> padding
> at the top of the block. Then, I delete the text
i.e.(header) in the block
> and
> copy merge an image from PS and paste into the block.
The image will not
> paste
> to the top of the block, instead it goes only as high as
the curser, which
> is
> 10 px's from the top. I cannot get the curser to move to
the top or paste
> to
> the top. Any suggestions? P.S. I realise this sort of
thing should be
> done in
> fireworks, but, am trying to follow course outline.
>

Similar Messages

  • How do you reposition photos within an event

    How do you reposition photos within an event? I've tried dragging them over to the spot I want them in, but they do not stay where I put them. Yet, when I want to reposition photos within albums I have made, they drag over without a problem.

    cynthiafromfreehold wrote:
    How do you reposition photos within an event? I've tried dragging them over to the spot I want them in, but they do not stay where I put them. Yet, when I want to reposition photos within albums I have made, they drag over without a problem.
    That is correct - events are basic and time based and photos can not be manually moved within them - albums are logical grouping and photos can be moved manually - that is exactly how it works
    LN

  • How can i reposition the Home button?

    I find the new position of the Home Button in FF4.0 (way over at the extreme right-hand side of the Navigation Toolbar) both inconvenient and annoying. It now requires a lot more mouse motion to reload the Home page.
    Is there anything I can do to "drag" or reposition the Home Button closer to the left-hand side of the Navigation Toolbar?

    # Right-click on a toolbar and select Customize
    # With the customize toolbar dialog on display, you can drag and drop icons to move them around
    https://support.mozilla.com/kb/How+to+customize+the+toolbar

  • How to fix spinning curser also streaming video hesitates?

    How do I fix a slow imac with a spinning curser and video streaming hesitating ?

    I tried uninstall and re install both Flash Player and Chrome it self but nothing changed.
    I also noticed that when i try to download something on chrome (this is the browser i use for everything), for example a movie trailer from Apple's trailer site (for example this movie trailer iTunes Movie Trailers) i right click and press Save As, it does nothing after that and after let's say some seconds the window pops up asking me where to save it, and i save it. That means that when i press "Save As" it does starts downloading in the background (like the first post in this thread states) and only wneh it finishes downloading the Chrome pop up window appear. When it should pop immediatelly asking me where to save it the moment i right click something and press Save As. At least that what i used to do before THIS whole problem started......
    Any thoughts...??????
    Please i am desperate...... 

  • How to trace the curser event in cs3 using js?

    is it possible to trace the curser event like the menu event tracing?,
    means how?
    thanks
    subha

    Hi subha,
    re: "i dont know where to get that BeforePrint.jsx, but by using scripting guide i able to trace the menu events."
    All of the scripts shown in fragmentary form in the Scripting Guide are included in the associated scripts archive on the InDesign Scripting home page.
    The BeforePrint.jsx script shows how to cancel the display of the Print dialog box; I assume that the same techniques will work for the Save dialog box. No time to check right now.
    Thanks,
    Ole

  • How do I reposition image scroller bar from middle to the right

    I am customising an image thumb scroller. and trying to follow up previously developed code.
    All worked fine until the last moment when thumbnails bar is positioned as if its starting point is in the middle of the screen. I suppose it was developed for the flash screen layout with centered coordinates. My stage probably has them set to the upper left corner.
    I can not make the bar move.
    My stage size is 1024 x 768
    Where do I do my math in the code so the thumbnails will be located in the middle of the screen rather than in its right hand.
    Here are the code snippets responsible for the thumbnails build up:
      const _THUMB_WIDTH:Number = 50;
      const _THUMB_HEIGHT:Number = 64;
      const _IMAGE_WIDTH:Number = 860;//550;original #
      const _IMAGE_HEIGHT:Number = 500;//355;original #
      const _THUMB_GAP:Number = 2;
      const _SCROLL_SPEED:Number = 12;
      const _SCROLL_AREA:Number = 150;
    var _progressBar:MovieClip;
    var _arrowLeft:MovieClip;
    var _arrowRight:MovieClip;
    var _slides:Array;
    var _curSlide:Slide; //Slide that is currently displaying
    var _loadingSlide:Slide; //only used when a Slide is supposed to show but hasn't been fully loaded yet (like if the user clicks "next" many times before all the images have loaded). We keep track of the one that's in the process of loading and should be shown as soon as it finishes, then we set _loadingSlide back to null.
    var _imagesContainer:Sprite; //the Sprite into which the full-size images are placed (this helps manage the stacking order so that the images can always be behind everything else and yet we can addChild() each image so that it shows up on top of the previous one)
    var _thumbnailsContainer:Sprite; //the Sprite into which the thumbnail images are placed. This also allows us to slide them all at the same time.
    var _destScrollX:Number = 0; //destination x value for the _thumbnailsContainer which is used for scrolling it across the bottom. We don't want to use _thumbnailsContainer.x because it could be in the process of tweening, so we keep track of the end/destination value and add/subtract from it when creating our tweens.
    var _minScrollX:Number; //we know the maximum x value for _thumbnailsContainer is 0, but the mimimum value will depend on how many thumbnail images it contains (the total width). We calculate it in the _setupThumbnails() method and store it here for easier/faster scrolling calculations in the _enterFrameHandler()
    _thumbnailsContainer = new Sprite();
    addChild(_thumbnailsContainer);
    //_thumbnailsContainer.x = -550;//moves x position of thumbnails, instead done in line 273 thumbnail.x = curX - 590;
    _thumbnailsContainer.y = _IMAGE_HEIGHT;//moves y position of thumbnails
    _thumbnailsContainer.alpha = 0; //we want alpha 0 initially because we'll fade it in later when the thumbnails load.
    _thumbnailsContainer.visible = false; //ensures nothing is clickable.
    var xmlLoader:XMLLoader = new XMLLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/data.xml", {onComplete:_xmlCompleteHandler});
    xmlLoader.load();
    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,
    //x:260, y:320,//doesn't work here but works in line 69
    scaleMode:"proportionalInside",
    bgColor:0x000000,
    estimatedBytes:13000,
    onFail:_imageFailHandler}),
    //loops through all the thumbnail images and places them in the proper order across the bottom of the screen and adds CLICK_THUMBNAIL listeners.
    function _setupThumbnails():void {
    var l:int = _slides.length;
    var curX:Number = _THUMB_GAP;
    for (var i:int = 0; i < l; i++) {
    var thumbnail:Sprite = _slides[i].thumbnail;
    _thumbnailsContainer.addChild(thumbnail);
    TweenLite.to(thumbnail, 0, {colorTransform:{brightness:0.5}});
    _slides[i].addEventListener(Slide.CLICK_THUMBNAIL, _clickThumbnailHandler, false, 0, true);
    thumbnail.x = curX;
    thumbnail.y = -234;//defines y position of the thumbnails row
    curX += _THUMB_WIDTH + _THUMB_GAP;
    _minScrollX = _IMAGE_WIDTH - curX;
    if (_minScrollX > 0) {
    _minScrollX = 0;
    function _enterFrameHandler(event:Event):void {
    if (_thumbnailsContainer.hitTestPoint(this.stage.mouseX, this.stage.mouseY, false)) {
    if (this.mouseX < _SCROLL_AREA) {
    _destScrollX += ((_SCROLL_AREA - this.mouseX) / _SCROLL_AREA) * _SCROLL_SPEED;
    if (_destScrollX > 0) {  //this number is 1/2 the stage size, previously was at 0 it defines the left position of the thumbnails scroll end, has to be indentical to the number below
    _destScrollX = 0;    //this number is 1/2 the stage size, previously was at 0 it defines the left position of the thumbnails scroll end, has to be indentical to the number above
    TweenLite.to(_thumbnailsContainer, 0.5, {x:_destScrollX});
    } else if (this.mouseX > _IMAGE_WIDTH - _SCROLL_AREA) {
    _destScrollX -= ((this.mouseX - (_IMAGE_WIDTH - _SCROLL_AREA)) / _SCROLL_AREA) * _SCROLL_SPEED;
    if (_destScrollX < _minScrollX) {
    _destScrollX = _minScrollX;
    TweenLite.to(_thumbnailsContainer, 0.5, {x:_destScrollX});

    Hi, thanks for taking a look at my problem.
    I assume that the code was difficult to read due to an unusual line brakes, which somehow I got when pasting on this site.
    Please take a look I am pasting the code anew in it entirety:
    (please let me know if you would like me to separate the areas which I believe give me troubles to address my previously describe problem:
    All worked fine until the last moment when thumbnails bar is positioned as if its starting point is in the middle of the screen. I suppose it was developed for the flash screen layout with centered coordinates. My stage probably has them set to the upper left corner.
    I can not make the bar move.
    My stage size is 1024 x 768
    Where do I do my math in the code so the thumbnails will be located in the middle of the screen rather than in its right hand.)
    (Also wanted to mention that there an external file Slide.as which is not responsible for the construction and positioning of the thumbnails)
              import com.greensock.*;
              import com.greensock.loading.*;
              //import com.greensock.events.LoaderEvent;
              import com.greensock.loading.display.*;
              //import com.greensock.TweenLite;
              import com.greensock.events.LoaderEvent;
              //import com.greensock.loading.ImageLoader;
              //import com.greensock.loading.SWFLoader;
              //import com.greensock.loading.LoaderMax;
              //import com.greensock.loading.XMLLoader;
              import com.greensock.plugins.AutoAlphaPlugin;
              import com.greensock.plugins.ColorTransformPlugin;
              import com.greensock.plugins.GlowFilterPlugin;
              import com.greensock.plugins.BlurFilterPlugin;//i added this filter to blur the progressBar
              import com.greensock.plugins.TweenPlugin;
              import flash.display.MovieClip;
              import flash.display.Sprite;
              import flash.events.Event;
              import flash.events.MouseEvent;
              //public class SlideshowExample extends MovieClip {
                          const _THUMB_WIDTH:Number = 50;
                          const _THUMB_HEIGHT:Number = 64;
                          const _IMAGE_WIDTH:Number = 860;//550;original #
                          const _IMAGE_HEIGHT:Number = 500;//355;original #
                          const _THUMB_GAP:Number = 2;
                          const _SCROLL_SPEED:Number = 12;
                          const _SCROLL_AREA:Number = 150;
                         var _progressBar:MovieClip;
                         var _arrowLeft:MovieClip;
                         var _arrowRight:MovieClip;
                         var _slides:Array;
                         var _curSlide:Slide; //Slide that is currently displaying
                         var _loadingSlide:Slide; //only used when a Slide is supposed to show but hasn't been fully loaded yet (like if the user clicks "next" many times before all the images have loaded). We keep track of the one that's in the process of loading and should be shown as soon as it finishes, then we set _loadingSlide back to null.
                         var _imagesContainer:Sprite; //the Sprite into which the full-size images are placed (this helps manage the stacking order so that the images can always be behind everything else and yet we can addChild() each image so that it shows up on top of the previous one)
                         var _thumbnailsContainer:Sprite; //the Sprite into which the thumbnail images are placed. This also allows us to slide them all at the same time.
                         var _destScrollX:Number = 0; //destination x value for the _thumbnailsContainer which is used for scrolling it across the bottom. We don't want to use _thumbnailsContainer.x because it could be in the process of tweening, so we keep track of the end/destination value and add/subtract from it when creating our tweens.
                         var _minScrollX:Number; //we know the maximum x value for _thumbnailsContainer is 0, but the mimimum value will depend on how many thumbnail images it contains (the total width). We calculate it in the _setupThumbnails() method and store it here for easier/faster scrolling calculations in the _enterFrameHandler()
                         //function SlideshowExample() {
                                  //super();
                                  //activate the plugins that we'll be using so that TweenLite can tween special properties like filters, colorTransform, and do autoAlpha fades.
                                  TweenPlugin.activate([AutoAlphaPlugin, ColorTransformPlugin, GlowFilterPlugin, BlurFilterPlugin]);//i added BlurFilterPlugin at the end
                                  _progressBar = this.getChildByName("progress_mc") as MovieClip;
                                  _arrowLeft = this.getChildByName("arrowLeft_mc") as MovieClip;
                                  _arrowRight = this.getChildByName("arrowRight_mc") as MovieClip;
                                  //////////my additions to make progress bay blurry
                                  TweenLite.to(progress_mc.progressBar_mc.gradientbar_appLoader_mcPopUp_mc, 0, {blurFilter:{blurX:21, blurY:8}});//i added this line to make ProgressBar_mc to blur
                                  TweenLite.to(progress_mc.rectangleGray, 0, {blurFilter:{blurX:21, blurY:8}});//i added this line to make ProgressBar_mc to blur
                                  _arrowLeft.visible = _arrowRight.visible = false;
                                  _imagesContainer = new Sprite();
                                  this.addChildAt(_imagesContainer, 0);
                                  _thumbnailsContainer = new Sprite();
                                  addChild(_thumbnailsContainer);
                                  //_thumbnailsContainer.x = -550;//moves x position of thumbnails, instead done in line 273 thumbnail.x = curX - 590;
                                  _thumbnailsContainer.y = _IMAGE_HEIGHT;//moves y position of thumbnails
                                  _thumbnailsContainer.alpha = 0; //we want alpha 0 initially because we'll fade it in later when the thumbnails load.
                                  _thumbnailsContainer.visible = false; //ensures nothing is clickable.
                                  var xmlLoader:XMLLoader = new XMLLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/data.xml", {onComplete:_xmlCompleteHandler});
                                  xmlLoader.load();
                         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.@na me + "Thumb",
                                                                                                                                                          width:_THUMB_W IDTH,
                                                                                                                                                          height:_THUMB_ HEIGHT,
                                                                                                                                                          //centerRegist ration:true,
                                                                                                                                                          //x:260, y:320,//doesn't work here but works in line 69
                                                                                                                                                          scaleMode:"pro portionalInside",
                                                                                                                                                          bgColor:0x0000 00,
                                                                                                                                                          estimatedBytes :13000,
                                                                                                                                                          onFail:_imageF ailHandler}),
                                                                                                        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,
                                                                                                                                                  x:-420, y:-260,
                                                                                                                                                  scaleMode:"proportionalInside",
                                                                                                                                                  bgColor:0x000000,
                                                                                                                                                  estimatedBytes:820000,
                                                                                                                                                  onFail:_imageFailHandler})
                                  //now create a LoaderMax queue and populate it with all the thumbnail ImageLoaders as well as the very first full-size ImageLoader. We don't want to show anything until the thumbnails are done loading as well as the first full-size one. After that, we'll create another LoaderMax queue containing the rest of the full-size images that will load silently in the background.
                                  var initialLoadQueue:LoaderMax = new LoaderMax({onComplete:_initialLoadComplete, onProgress:_progressHandler});
                                  for (var i:int = 0; i < _slides.length; i++) {
                                            initialLoadQueue.append( _slides[i].thumbnailLoader );
                                  initialLoadQueue.append(_slides[0].imageLoader); //make sure the very first full-sized image is loaded initially too.
                                  initialLoadQueue.load();
                                  _setupThumbnails();
                         function _initialLoadComplete(event:LoaderEvent):void {
                                  //now that the initial load is complete, fade out the progressBar. autoAlpha will automatically set visible to false once alpha hits 0.
                                  TweenLite.to(_progressBar, 0.5, {autoAlpha:0});
                                  //fade in the thumbnails container
                                  TweenLite.to(_thumbnailsContainer, 1, {autoAlpha:1});
                                  _setupArrows();
                                  //setup the ENTER_FRAME listeners that controls the thumbnail scrolling behavior at the bottom
                                  this.stage.addEventListener(Event.ENTER_FRAME, _enterFrameHandler, false, 0, true);
                                  //now put all the remaining images into a LoaderMax queue that will load them one-at-a-time in the background in the proper order. This can greatly improve the user's experience compared to loading them on demand which forces the user to wait while the next image loads.
                                  var imagesQueue:LoaderMax = new LoaderMax({maxConnections:1});
                                  for (var i:int = 1; i < _slides.length; i++) {
                                            imagesQueue.append( _slides[i].imageLoader );
                                  imagesQueue.load();
                                  //now start the slideshow
                                  _showNext(null);
                        //loops through all the thumbnail images and places them in the proper order across the bottom of the screen and adds CLICK_THUMBNAIL listeners.
                         function _setupThumbnails():void {
                                  var l:int = _slides.length;
                                  var curX:Number = _THUMB_GAP;
                                  for (var i:int = 0; i < l; i++) {
                                            var thumbnail:Sprite = _slides[i].thumbnail;
                                            _thumbnailsContainer.addChild(thumbnail);
                                            TweenLite.to(thumbnail, 0, {colorTransform:{brightness:0.5}});
                                            _slides[i].addEventListener(Slide.CLICK_THUMBNAIL, _clickThumbnailHandler, false, 0, true);
                                            thumbnail.x = curX;
                                            thumbnail.y = -234;//defines y position of the thumbnails row
                                            curX += _THUMB_WIDTH + _THUMB_GAP;
                                  _minScrollX = _IMAGE_WIDTH - curX;
                                  if (_minScrollX > 0) {
                                            _minScrollX = 0;
                         function _setupArrows():void {
                                  _arrowLeft.alpha = _arrowRight.alpha = 0;
                                  _arrowLeft.visible = _arrowRight.visible = true;
                                  _arrowLeft.addEventListener(MouseEvent.ROLL_OVER, _rollOverArrowHandler, false, 0, true);
                                  _arrowLeft.addEventListener(MouseEvent.ROLL_OUT, _rollOutArrowHandler, false, 0, true);
                                  _arrowLeft.addEventListener(MouseEvent.CLICK, _showPrevious, false, 0, true);
                                  _arrowRight.addEventListener(MouseEvent.ROLL_OVER, _rollOverArrowHandler, false, 0, true);
                                  _arrowRight.addEventListener(MouseEvent.ROLL_OUT, _rollOutArrowHandler, false, 0, true);
                                  _arrowRight.addEventListener(MouseEvent.CLICK, _showNext, false, 0, true);
                         function _showNext(event:Event=null):void {
                                  //if there's a _loadingSlide we should assume that the next Slide would be AFTER that one. Otherwise just get the one after the _curSlide.
                                  var next:int = (_loadingSlide != null) ? _slides.indexOf(_loadingSlide) + 1 : _slides.indexOf(_curSlide) + 1;
                                  if (next >= _slides.length) {
                                            next = 0;
                                  _requestSlide(_slides[next]);
                         function _showPrevious(event:Event=null):void {
                                  //if there's a _loadingSlide we should assume that the previous Slide would be BEFORE that one. Otherwise just get the one before the _curSlide.
                                  var prev:int = (_loadingSlide != null) ? _slides.indexOf(_loadingSlide) - 1 : _slides.indexOf(_curSlide) - 1;
                                  if (prev < 0) {
                                            prev = _slides.length - 1;
                                  _requestSlide(_slides[prev]);
                         function _requestSlide(slide:Slide):void {
                                  if (slide == _curSlide) {
                                            return;
                                  //kill the delayed calls to _showNext so that we start over again with a 5-second wait time.
                                  TweenLite.killTweensOf(_showNext);
                                  if (_loadingSlide != null) {
                                            _cancelPrioritizedSlide(); //the user must have skipped to another Slide and didn't want to wait for the one that was loading.
                                  //if the requested Slide's full-sized image hasn't loaded yet, we need to show the progress bar and wait for it to load.
                                  if (slide.imageLoader.progress != 1) {
                                            _prioritizeSlide(slide);
                                            return;
                                  //fade the old Slide and make sure it's not highlighted anymore as the current Slide.
                                  if (_curSlide != null) {
                                            TweenLite.to(_curSlide.image, 0.5, {autoAlpha:0});
                                            _curSlide.setShowingStatus(false);
                                  _curSlide = slide;
                                  _imagesContainer.addChild(_curSlide.image); //ensures the image is at the top of the stacking order inside the _imagesContainer
                                  TweenLite.to(_curSlide.image, 0.5, {autoAlpha:1}); //fade the image in and make sure visible is true.
                                  _curSlide.setShowingStatus(true); //adds an outline to the image indicating that it's the currently showing Slide.
                                  TweenLite.delayedCall(5, _showNext); //create a delayedCall that will call _showNext in 5 seconds.
                         function _prioritizeSlide(slide:Slide):void {
                                  TweenLite.to(_progressBar, 0.5, {autoAlpha:1}); //show the progress bar
                                  _loadingSlide = slide;
                                  _loadingSlide.imageLoader.addEventListener(LoaderEvent.PROGRESS, _progressHandler);
                                  _loadingSlide.imageLoader.addEventListener(LoaderEvent.COMPLETE, _completePrioritizedHandler);
                                  _loadingSlide.imageLoader.prioritize(true); //when the loader is prioritized, it will jump to the top of any LoaderMax queues that it belongs to, so if another loader is in the process of loading in that queue, it will be canceled and this new one will take over which maximizes bandwidth utilization. Once the _loadingSlide is done loading, the LoaderMax queue(s) will continue loading the rest of their images normally.
                         function _cancelPrioritizedSlide():void {
                                  TweenLite.to(_progressBar, 0.5, {autoAlpha:0}); //hide the progress bar
                                  _loadingSlide.imageLoader.removeEventListener(LoaderEvent.PROGRESS, _progressHandler);
                                  _loadingSlide.imageLoader.removeEventListener(LoaderEvent.COMPLETE, _completePrioritizedHandler);
                                  _loadingSlide = null;
                         function _completePrioritizedHandler(event:LoaderEvent):void {
                                  var next:Slide = _loadingSlide; //store it in a local variable first because _cancelPrioritizedSlide() will set _loadingSlide to null.
                                  _cancelPrioritizedSlide();
                                  _requestSlide(next);
                         function _progressHandler(event:LoaderEvent):void {
                                  _progressBar.progressBar_mc.scaleX = event.target.progress;
                         function _clickThumbnailHandler(event:Event):void {
                                  _requestSlide(event.target as Slide);
                         function _rollOverArrowHandler(event:Event):void {
                                  TweenLite.to(event.currentTarget, 0.5, {alpha:1});
                         function _rollOutArrowHandler(event:Event):void {
                                  TweenLite.to(event.currentTarget, 0.5, {alpha:0});
                         function _enterFrameHandler(event:Event):void {
                                  if (_thumbnailsContainer.hitTestPoint(this.stage.mouseX, this.stage.mouseY, false)) {
                                            if (this.mouseX < _SCROLL_AREA) {
                                                      _destScrollX += ((_SCROLL_AREA - this.mouseX) / _SCROLL_AREA) * _SCROLL_SPEED;
                                                      if (_destScrollX > 0) {  //this number is 1/2 the stage size, previously was at 0 it defines the left position of the thumbnails scroll end, has to be indentical to the number below
                                                                _destScrollX = 0;    //this number is 1/2 the stage size, previously was at 0 it defines the left position of the thumbnails scroll end, has to be indentical to the number above
                                                      TweenLite.to(_thumbnailsContainer, 0.5, {x:_destScrollX});
                                            } else if (this.mouseX > _IMAGE_WIDTH - _SCROLL_AREA) {
                                                      _destScrollX -= ((this.mouseX - (_IMAGE_WIDTH - _SCROLL_AREA)) / _SCROLL_AREA) * _SCROLL_SPEED;
                                                      if (_destScrollX < _minScrollX) {
                                                                _destScrollX = _minScrollX;
                                                      TweenLite.to(_thumbnailsContainer, 0.5, {x:_destScrollX});
                        //if an image fails to load properly, remove it from the slideshow completely including its thumbnail at the bottom.
                         function _imageFailHandler(event:LoaderEvent):void {
                                  var slide:Slide;
                                  var i:int = _slides.length;
                                  while (--i > -1) {
                                            slide = _slides[i];
                                            if (event.target == slide.thumbnailLoader || event.target == slide.imageLoader) {
                                                      slide.dispose();
                                                      _slides.splice(i, 1);
                                                      _setupThumbnails();
                                                      return;

  • 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.

  • How can I reposition in a query...

    I have a quey on a table. I had inserted a new record in a table and I want to reposition on it in this query.

    I don't fully understand your question so bear with me.
    Before you issued the query you had inserted a record into the table you are querying against from Forms? So you know what the data is in that row?
    If that is so you can iterate over the block's records with FIRST_RECORD and NEXT_RECORD and when you find the record you want to position the cursor on, you exit the loop.

  • How do i reposition desktops and full screen apps in the top of mission control?

    Full screen apps have there own space and so do desktops, how do i re-order them?

    Hi Anthony, hi ya guys!
    Actually you can do a bit of a trick to re-arrange a fullscreen apps but there is one thing which you should know - the first screen can't be a fullscreen app screen.
    So, here is what you can do.
    Example: you have 3 fullscreen apps running on your OS: Pages, iPhoto, Mail.
    So you go to Mission Control and you see on the top the first screen which is an empty screen or a screen with any opened apps (not a fullscreen apps) and also you see your fullscreen apps in a row of 3 screens.
    So talking about these 3 screens (windows). Your Pages screen is the first fullscreen app window, iPhoto is the 2nd and Mail is the 3rd but you want to make it the 1st. So to do this you need to go to your second window (iPhoto), and press twice the Mail icon in your dock (one click and then another click).
    It will make your 3rd screen with Mail to take a place of 1st screen and iPhoto will be moved to the end.
    It all should be done while you are in a MC.
    Good luck!

  • How can i reposition lines accurately in Ai CS6?

    i can't accurately reposition lines at 1000% zoom. even in preview mode. I tried it in cs5 and it works fine. installed an update in cs6 but still the same.

    Is Align to Pixel Grid on? Check in the Transform Panel. It will be on by default in an RGB based document.

  • How can I reposition my smart mailbox folders

    Once I've created the "smart mailbox folders" they seem to be permanenthly set in the position.
    How can I move them up or down from there?
    Thanks

    Do a Google search for Holy Grail CSS template. It will do
    what you want
    but it doesn't always play nice in DW design view because of
    the weird
    floats.
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Chris Jumonville" <[email protected]> wrote
    in message
    news:g2c796$7bd$[email protected]..
    > Here is the deal. My website is
    http://www.jonbarron.org.
    >
    > I made the site entirely using CSS-P, so no tables
    except for data.
    Anyways I
    > have been spending tons of time lately on SEO and in the
    time I've been
    > spending I've kind of become an SEO expert on the
    matter. The one thing I
    am
    > trying to do right now is a coding problem though. What
    I want to do is
    take
    > the content of my main page and move the div that holds
    the content to the
    top
    > of the HTML code. However when you look at the page in a
    browser I still
    want
    > it to look EXACTLY like it looks right now but when you
    look at the source
    of
    > the code it will display the content near the top of the
    code. This is
    better
    > in most cases for search engines. So far my site is a
    Page Rank 5 with
    Google
    > and it's going to be a 6 next so I'm getting there
    slowly but surely.
    >
    > If anyone can help me with this or show me a link to a
    tutorial (I can't
    seem
    > to find one), I would highly appreciate it!
    >

  • How do I reposition an inserted green screen clip into a corner of the host clip

    Help needed on moving or repositioning an inserted green screen clip to a corner of a host clip for presentation purposes, any ideas ??? Thanks

    You can drag and drop a photo at any point (at any frame... 30 frames per second.) Make sure you go to iMovie Preferences and enable Advanced Tools. You can drop a photo, and a pop up menu will come up. Choose Cutaway from the menu.
    Further you can use drag and drop to select a range of frames, and then split the clip.
    For example, lets say I have a clip of 60 frames (or 2 seconds).
    I can drag so that the yellow border covers the first 30 frames. Then right-click/Split Clip. (Or EDIT/Split Clip.
    I then have two virtual clips in the project. (Note: the underlying clip in the Event has not changed).
    I recommend you watch the [Video Tutorials|http://www.apple.com/findouthow/movies>
    Or see [Ken Stone's Tutorial|http://www.kenstone.net/fcphomepage/imovie_09stone.html]
    Or take a look at the HELP files.

  • How do i reposition a submenu BENEATH the menu?

    hi, I am trying to use as little horizontal space as possible, to leave as much of the page for images as possible. i don't want the submenu sticking out horizontally from the main menu. sthank you for any help.

    Hi lgj777,
    Submenus of vertical menus will display adjacent to the parent menu item. They cannot be moved underneath the parent menu item.
    You could create this type of effect using an accordian widget, but you would need to create your page links manually.
    Please post this as a feature request in our ideas forum: http://forums.adobe.com/community/muse/ideas
    Best regards,
    Corey

  • How do I stop curser from leaving magnetic lasso trail everywhere on picture trying to edit?

    Nothing I've tried helps.  Windows 7.

    Hi Jona Lewa Koola,
    please have a look at this:- http://helpx.adobe.com/photoshop-elements/using/making-selections.html
    Sarika

  • How to reposition split screen clip keeping complex keyframing?

    New to PP and trying to learn best practices for split screen sequences.
    Lets say the screen is split into 3 vertical panels each with its own video of a person, the panels created by cropping. Each person has been meticulously position/scale/cropping-keyframed to center their faces in the middle of the vertical panel, rather than bouncing around the frame like in the original clips.
    How do I reposition this center panel to the left side with one fell swoop, keeping all the keyframes so the face is still centered in the panel?
    PPCS6 / mac 10.6.8

    Adjust the Anchor Point of the clip on the timeline:
    MtD

Maybe you are looking for