Costomizing ScrollPane track

I've tried to Costomizing ScrollPane track without changing
the size of image area.
Its a horizontal ScrollPane, that is covered on one side
which doesn't allow you to see the left scroll button.
I wanted to slide the button and track over but keep the
ScrollPane the same size.
Is it possiable to ajust the scroll track and bttn size
without have to make the viewable of the ScrollPane the same width?
Basically I wanted to us a costum UI Compent and ajust the
track to be smaller than the viewable area, as of right now the
only way I can make the track smaller is by scaling down the whole
ScrollPane.
Thanks to anyone who can help.
andelunn

open this search page and start at the top link -
interesting reading
http://onesearch.sun.com/search/developers/index.jsp?a
nd=getAdjustmentType&nh=10&Search.x=25&Search.y=13&phr
=&qt=�=&field=&since=&col=devforums&rf=0
I've already read the documentation on AdjustmentEvent
My problem is, no matter what type of scroll is done, the getAdjustmentType returns the same value.
getAdjustmentType() always returns a 5, which is the same as AdjustmentEvent.TRACK.

Similar Messages

  • Please Help me place the arrows of my ScrollPane scroll bar together on one end of the scroll track!!

    I have a scrollpane component with a movie clip of some
    thumbnail images.
    I just want to have its scrollbar arrows together on one end
    of the track (or together ANYwhere) instead of having them at
    opposite ends of the scroll track.
    I have been able to customize the appearance of the
    scrollpane and its scrollbar using the HaloTheme library, but that
    approach has so far been of no use in getting the arrows together.
    I cannot tell you how deeply any help will be appreciated. I
    will probably sob and mewl with gratitude, the way I imagine
    someone lost in a vast rain forest for many weeks mewls when
    rescued. I am desperate. I am going insane. Please, please help me.

    Cherrylanenc are you on a managed network?  If not then I would recommend reviewing the steps listed in Sign in, activation, or connection errors | CC, CS6, CS5.5 - http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html.

  • Adding a progress loader to a dynamic text field / scrollPane

    I have a dynamic text field which is loading images from an external html.  This text is named scrollPaneImage and is a child of a movieClip called scrollPaneContent.  I then load scrollPaneContent into a scroll pane named scrollPane
    When the user interacts with my swf different images are loaded into scrollPaneImage.  Since some of the images take a few seconds to load, I'd like there to be a progress loader displayed in the scrollpane.
    I have tried adding the progress event listner to the dynamic text, the movie clip and the scrollpane and cannot get it to respond or track the loading.
    scrollPaneContent.addEventListener(ProgressEvent.PROGRESS,reportProgress);
    function reportProgress(e:ProgressEvent):void {
        trace(e.bytesLoaded + " loaded out of " + e.bytesTotal);
         trace("LOADED");
    Can anyone suggest what I might be doing wrong or of another approach?
    thanks in advance,
    Josh

    Hi KGLAD.  Thanks for the response.  Yes my code is a little messy.  Here I have included everything and tried to do a little cleaning.  Is there enough code here for you to get an idea of how/when things are firing?
    import com.google.maps.LatLng;
    import com.google.maps.Map;
    import com.google.maps.MapEvent;
    import com.google.maps.MapType;
    import com.distriqt.gmaps.kml.utils.*;
    import com.greensock.*;
    import com.greensock.easing.*;
    import com.greensock.TweenLite;
    import flash.geom.Point;
    import com.greensock.plugins.*;
    TweenPlugin.activate([AutoAlphaPlugin]);
    import com.google.maps.controls.NavigationControl;
    import com.google.maps.controls.MapTypeControl;
    import com.google.maps.controls.OverviewMapControl;
    import com.google.maps.overlays.GroundOverlay;
    import com.google.maps.overlays.GroundOverlayOptions;
    import com.google.maps.LatLng;
    import com.google.maps.LatLngBounds;
    import com.google.maps.MapMouseEvent;
    import com.google.maps.controls.*;
    import com.google.maps.overlays.Marker;
    import com.google.maps.InfoWindowOptions;
    import com.google.maps.overlays.MarkerOptions;
    import com.anttikupila.utils.JPGSizeExtractor;
    import flash.display.StageAlign;
    import flash.display.StageScaleMode;
    import flash.events.Event;
    import flash.net.URLLoader;
    import fl.controls.UIScrollBar;
    import flash.events.Event;
    import fl.events.ScrollEvent;
    import flash.sampler.NewObjectSample;
    [Embed(source="ICONS/PHOTO_BLACK.png")]var photoIcon:Class;
    [Embed(source="ICONS/BLOG_BLACK.png")]var blogIcon:Class;
    scrollPane
    // GMAP PARAMETERS
    var map:Map = new Map();
    map.key = "map key";
    //map.key = "api key";
    //define the size of the map extent....
    map.sensor = "false";
    map.setSize(new Point(stage.stageWidth, stage.stageHeight));
    map.addEventListener(MapEvent.MAP_READY, onMapReady);
    map.addEventListener(MapEvent.MAP_READY, createmarkers);
    map.addEventListener(MapEvent.MAP_READY, createMarkerArrays);
    map.addEventListener(MapEvent.MAP_READY, createPhotoPingers);
    this.addChild(map);
    map.setSize(new Point(stage.stageWidth, stage.stageHeight));
    //on map ready params
    function onMapReady(event:Event):void
    map.setCenter(new LatLng(48,-113.5), 8, MapType.PHYSICAL_MAP_TYPE);
    map.enableScrollWheelZoom();
    map.disableContinuousZoom();
    //Marker options for a photo piece
    var photoMarkerOptions:MarkerOptions = new MarkerOptions();
    photoMarkerOptions.icon = new photoIcon();
    photoMarkerOptions.hasShadow=false;
    //Marker options for a blog piece
    var blogMarkerOptions:MarkerOptions = new MarkerOptions();
    blogMarkerOptions.icon = new photoIcon();
    blogMarkerOptions.hasShadow=false;
    //load xml tester
    var pntloader:URLLoader = new URLLoader();
    var pntxml:XML = new XML();
    pntloader.addEventListener(Event.COMPLETE, loadpntXML);
    pntloader.load(new URLRequest("map_feed.xml"));
    // create an array of jpgs to index
    var JPGIndexArray:Array = new Array();
    //Create array that will be populated with points
    var pointsArray:Array = new Array();
    //Load the XML
    function loadpntXML(e:Event):void {
        pntxml=new XML(e.target.data);
        pntxml.ignoreWhite = true;
         for (var i:int = 0; i< pntxml.row.length(); i++){
         pointsArray[i]="mrk"+i;
         JPGIndexArray[i]="JPG"+i;
         //trace(pntxml);
    //Create the markers and add them to the map
    function createmarkers(event:Event):void
         for (var i:Number = 0; i < pntxml.row.length(); i++) {
         var markerOptions:MarkerOptions = new MarkerOptions();
          if (pntxml.row[i].TYPE=="PHOTO")
               markerOptions.icon = new photoIcon();
               markerOptions.tooltip = "Photo";
               markerOptions.hasShadow=false;
          else if(pntxml.row[i].TYPE=="BLOG")
               markerOptions.icon = new blogIcon();
               markerOptions.tooltip = "Blog Entry";
               markerOptions.hasShadow=false;
          else
               null     
          pointsArray[i] = new Marker(new LatLng(pntxml.row[i].LAT,pntxml.row[i].LONG),markerOptions);
         markerA.push(pointsArray[i]);
          map.addOverlay(pointsArray[i]);
          pointsArray[i].addEventListener(MapMouseEvent.CLICK,indexCalledMarkerRecord);
          pointsArray[i].addEventListener(MapMouseEvent.CLICK,scrollPanePopulate);
    // PING PHOTO DIMENSIONS BEFORE LOADING //
    var je : JPGSizeExtractor = new JPGSizeExtractor( );
    je.addEventListener( JPGSizeExtractor.PARSE_COMPLETE, jeLoadHandler );
    je.addEventListener( JPGSizeExtractor.PARSE_FAILED, jeParseFailed );
    function createPhotoPingers(event:Event):void{
         for (var k:Number=0; k <pntxml.row.length(); k++){
         JPGIndexArray[k]=new JPGSizeExtractor();
         JPGIndexArray[k].debug = false;
         JPGIndexArray[k].addEventListener(JPGSizeExtractor.PARSE_COMPLETE, jeLoadHandler );
         trace("madeit");
         pingPhotoUrls();
    function pingPhotoUrls():void
         for (var i:Number = 0; i < pntxml.row.length(); i++) {     
          var calledMarkerUrl=pntxml.row[i].URL_OF_CONTENT;
          JPGIndexArray[i].extractSize(calledMarkerUrl);     
    var JPG1=null;
    function jeLoadHandler(e:Event) : void {
         trace(e.currentTarget.width + "x" + e.currentTarget.height );
         imageWidths.push(e.currentTarget.width);
    function jeParseFailed( event : Event ) : void {
         trace( "Parse failed" );
    var imageWidths = new Array;
    // FUNCTIONS FOR INDEXING CALLED MARKERS//
    //Create blank array for use in indexing
    var markerA:Array=[];
    //VAR FOR USE IN INDEXING CALLED MARKER
    var pointindex=null;
    //INDEX CALLED MARKER POINT XML RECORD
    function indexCalledMarkerRecord(e:MapMouseEvent):void{
         pointindex=genIndexPos(markerA,Marker(e.currentTarget));
         //trace(pntxml.row[pointindex].DESC);
    //FUNCTION FOR INDEXING CALLED MARKER
    function genIndexPos(a:Array,e:Marker):uint{
         for(var i:uint=0;i<a.length;i++){
              if(a[i]==e){
                   return i;               
                   return null;
    //           SCROLLPANE FUNCTIONS              //
    this.addChild(scrollPane);
    scrollPane.setSize(255,300);
    scrollPane.x=-200;
    scrollPane.y=-200;
    scrollPane.alpha=0;
    scrollPaneContent.mouseEnabled=false;
    spHeader.closeBox.addEventListener(MouseEvent.CLICK, function(eMouseEvent):void
                                                                TweenLite.to(scrollPane, .5,{autoAlpha:0,overwrite:true});                                                            
    spHeader.forDrag.addEventListener(MouseEvent.MOUSE_DOWN, function (e:MouseEvent):void
              scrollPane.startDrag();          
    spHeader.forDrag.addEventListener(MouseEvent.MOUSE_UP, function (e:MouseEvent):void
              scrollPane.stopDrag();
    spHeader.forDrag.buttonMode=true;
    spHeader.forDrag.useHandCursor=true;
    spHeader.width=300;
    scrollPane.source = scrollPaneContent;
    scrollPaneContent.scrollPaneText.autoSize='left';
    scrollPaneContent.scrollPaneImage.autoSize='center';
    scrollPaneContent.scrollPaneImage.autoSize=TextFieldAutoSize.CENTER;
    scrollPaneContent.mouseEnabled=false;
    scrollPaneContent.scrollPaneText.condenseWhite = true;
    // Add listener.
    scrollPane.addEventListener(Event.COMPLETE, completeListener);
    scrollPaneContent.addEventListener(ProgressEvent.PROGRESS,reportProgress);
    function completeListener(event:Event):void {
    trace('Scrollpane content loaded');
    function reportProgress(e:ProgressEvent):void {
        trace(e.bytesLoaded + " loaded out of " + e.bytesTotal);
        trace("LOADED");
    function scrollPanePopulate(event:Event){     
         //show scroll pane
         scrollPane.x=33;
         scrollPane.y=33;
         TweenLite.to(scrollPane, .5,{autoAlpha:1,overwrite:true});
         TweenLite.to(spHeader, .5,{autoAlpha:1,overwrite:true});
         //create the temp variables
         var calledMarkerIndex=pntxml.row[pointindex].ID;
         var calledMarkerDate=pntxml.row[pointindex].DATE;
         var calledMarkerDescription=pntxml.row[pointindex].DESC;
         var calledMarkerContent=pntxml.row[pointindex].URL_OF_CONTENT;     
         var imgWidth=JPGIndexArray[pointindex].width;
         var imgHeight=JPGIndexArray[pointindex].height;
         scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#000000'>"+calledMarkerDescription;
         var imgBoxHeight=scrollPaneContent.scrollPaneImage.height;
        var txtHeight=scrollPaneContent.scrollPaneText.height;
        var contentHeight=(imgBoxHeight+txtHeight);
        scrollPane.setSize(300,(contentHeight+15));     
         //size the text box
         scrollPaneContent.scrollPaneText.width=270;
         //if image is wide or tall, scale accordingly and create a string that will be used
         if(imgWidth>=imgHeight){          
              var imgSource:String = "<img src="+"'"+calledMarkerContent+"'"+"width='"+250+"'"+"height='"+150+"'"+"/>";                    
              var calledImgHgh=160;          
         else
              var imgSource:String = "<img src="+"'"+calledMarkerContent+"'"+"width='"+110+"'"+"height='"+167+"'"+"/>";          
              var calledImgHgh=177;          
         //fill in the text
         scrollPaneContent.scrollPaneImage.htmlText=imgSource;
         //scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#000000'>"+calledMarkerDescription;     
         //pan the map to the called position
         map.panTo(pointsArray[calledMarkerIndex-1].getLatLng())
         //add the header to the SP and scale accordingly
         scrollPane.addChild(spHeader);
         spHeader.x=-1;
         spHeader.y=1;
         spHeader.width=299;
         if (txtHeight>=250){          
              scrollPane.setSize(300,275);          
              scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#000000'>"+calledMarkerDescription+"<br><br>";
         if (txtHeight<=5){
              scrollPane.setSize(300,200);
              scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#000000'>"+calledMarkerDescription;
         if (txtHeight>=5){
              scrollPane.setSize(300,275);
              scrollPaneContent.scrollPaneText.htmlText="<font size='12' color='#000000'>"+calledMarkerDescription+"<br><br>";
         // CREATE TEMP VARIABLES FOR POSITIONING AND PLACE DYNAMIC TEXT
         var scTextY=scrollPaneContent.scrollPaneText.y;
         var scImageY=scrollPaneContent.scrollPaneImage.y;
         var scTextHeight=scrollPaneContent.scrollPaneText.height;
         scrollPaneContent.scrollPaneText.y=scImageY+calledImgHgh;
         //update the scrollpane and reset the scrollbar
         scrollPane.update();
         scrollPane.verticalScrollPosition=(0);
         scrollPane.verticalScrollBar.height=270;
         scrollPane.verticalScrollBar.x=281;
         scrollPane.verticalScrollBar.y=3;
    spHeader.alpha=0;
    this.addChild(spHeader);
    var photoMarkersArray=new Array();
    var photoMarkersIndexArray=new Array();
    //CREATE ARRAY OF PHOTO MARKERS
    function createMarkerArrays(e:Event):void{
    for (var j:int=0; j<pntxml.row.(TYPE=="PHOTO").ID.length(); j++){
              var tempMarkerIndex=pntxml.row.(TYPE=="PHOTO").ID[j];
              var tempMarkerRef="mrk"+tempMarkerIndex;
              photoMarkersArray.push(tempMarkerRef);
              photoMarkersIndexArray.push(tempMarkerIndex);

  • ScrollPane doesn't display its content

    I created a scrollpane in as3 and set its source to another object, which contains several rows of icons.
    The scrollbar in the scrollpane is getting the right length, which means the object was loaded as expected, but the contant is not showing correctly.
    I created a Thumbnail class for this file to load and make each individual thumbnail.
    Here is my code, the red text is where each thumbnail is loaded:
    import fl.containers.UILoader;
    import caurina.transitions.*;
    import flash.events.Event;
    import fl.containers.ScrollPane;
    var urlRequest:URLRequest = new URLRequest("pics.xml");
    var urlLoader:URLLoader = new URLLoader();
    var myXML:XML = new XML();
    var xmlList:XMLList;
    myXML.ignoreWhitespace = true;
    urlLoader.addEventListener(Event.COMPLETE,fileLoaded);
    urlLoader.load(urlRequest);
    var arrayURL:Array = new Array();
    var arrayName:Array = new Array();
    var holderArray:Array = new Array();
    var nrColumns:uint = 3;
    var sprite:Sprite = new Sprite();
    addChild(sprite);
    var thumb:Thumbnail;
    var thumbsHolder:Sprite = new Sprite();
    sprite.addChild(thumbsHolder);
    var loaderHolder:Sprite = new Sprite();
    loaderHolder.graphics.beginFill(0x666666,1);
    loaderHolder.graphics.drawRoundRect(0,0,450,340, 20,20);
    loaderHolder.graphics.endFill();
    loaderHolder.x = 280;
    loaderHolder.y = 240;
    sprite.addChild(loaderHolder);
    var photoLoader:UILoader = new UILoader();
    photoLoader.width = 450;
    photoLoader.height = 340;
    photoLoader.y = 5;
    photoLoader.x = 5;
    photoLoader.buttonMode = true;
    photoLoader.addEventListener(MouseEvent.CLICK,onClickBack);
    loaderHolder.addChild(photoLoader);
    var scrollPane:ScrollPane=new ScrollPane();
    var skin:MovieClip = new MovieClip();
    scrollPane.x = 805;
    scrollPane.y = 405;
    scrollPane.width = 215;
    scrollPane.height = 280;
    scrollPane.setStyle( "skin", skin );
    scrollPane.setStyle( "upSkin", skin );
    scrollPane.source = thumbsHolder;
    sprite.addChild(scrollPane);
    function fileLoaded(event:Event):void
    myXML = XML(event.target.data);
    xmlList = myXML.children();
    for (var i:int=0; i<xmlList.length(); i++)
      var picURL:String = xmlList[i].url;
      var picName:String = xmlList[i].big_url;
      arrayURL.push(picURL);
      arrayName.push(picName);
      holderArray[i] = new Thumbnail(arrayURL[i],i,arrayName[i]);
      holderArray[i].addEventListener(MouseEvent.CLICK,onClick);
      holderArray[i].name = arrayName[i];
      holderArray[i].buttonMode = true;
      if (i<nrColumns)
       holderArray[i].y = 440;
       holderArray[i].x = i * 65 + 840;
      else
       holderArray[i].y = holderArray[i - nrColumns].y + 65;
       holderArray[i].x = holderArray[i - nrColumns].x;
      thumbsHolder.addChild(holderArray[i]);
      scrollPane.update();
    function onClick(event:MouseEvent):void
    photoLoader.alpha = 0.1;
    photoLoader.source = event.currentTarget.name;
    photoLoader.addEventListener(Event.COMPLETE, fadeOut);
    function fadeOut(event:Event):void
      Tweener.addTween(photoLoader, {alpha:1, time:0.5, transition:"linear"});
    function onClickBack(event:MouseEvent):void
      Tweener.addTween(loaderHolder, {alpha:.5, time:2, transition:"linear"});

    Bold is about the only text editing feature that works in the current editor panel.  The rest were disabled due to spam-related abuse (addng white text, etc)
    I cannot really follow what is going into where and where it is being put (just too lazy to track it down at this time of night), but it sounds like it might be possible that your content is being planted at a location that it is not visible in the scrollpane panel.  The scrollpane is only 215 pixels wide but you have something called a loaderHolder that is being placed at x = 280.  And then elsewhere you have holderArray[i].x = i * 65 + 840;, which is placing it well beyond the 215 width.

  • Control over the scrollPane component.

    Gidday
    I've got some moveieClips in container in a scrollpane component.
    The movieClips are draggable.
    I'd like to add extra functionality where if an item is dragged and touches the bottom of the scrollpane, it automatically scrolls up, and the reverse if you touch the top with a dragged object.
    I tried the scrollDrag, but I only want it to scroll once the dragged item touches the bottom or top.
    So I wrote this and put it in the drag function:
        if  ((this.hitTestObject(MovieClip(this.root).rowsHolderTopLine))  && MovieClip(this.root).rowsHolder.y < 200)
                trace(MovieClip(this.root).rowsHolder.y);
                MovieClip(this.root).rowsHolder.y = MovieClip(this.root).rowsHolder.y+10;
                this.y = this.y-10;
    It needs a bit of work, and I think I can get it working, but the one thing I'm stumped on is how to make the scrollbar move too.  Is there a way to communicate with the component using code (I created this component from the component inspector)?
    Thanks
    Shaun

    OK - I think I've got it:
    MovieClip(this.root).playlistScrollPane.verticalScrollPosition = MovieClip(this.root).playlistScrollPane.verticalScrollPosition-10
    this.y = this.y-10;
    Needs a bit of work, but it's on the right track.
    Cheers
    Shaun

  • Should I build my own component, or is there a solution to my built-in ScrollPane woes?

    "I am desperate. I am going insane. Please, please help me."
    That is how my last post ended. And no one replied, which I
    suppose means that there is no solution to the problem I have with
    the ScrollPane component in flash 8.
    I just want to put both of the scroll arrows of the
    ScrollPane's scroll bar together on the same end of the scroll
    track, instead of at opposite ends of the track.
    I have customized everything else about the ScrollPane with
    HaloThemes and setStyle, etc, but cannot seem to re-position the
    arrows.
    So, I am wondering if I should just make my own scroll pane.
    I have been cautioned against using too much actionscript in flash,
    though, so I am wary. Anyone know of a reliable method for making a
    scroll pane for images with scroll arrows that can be positioned
    together?
    Or should I stick it out with the built-in ScrollPane?

    No, what you ask is not possible with the standard
    components.
    I don't understand why you would be cautioned against using
    "too much actionscript" in Flash....
    Everything I do is built entirely with AS these days. I even
    draw out all of my elements at runtime, and this makes my
    interfaces faster, both in loading and in processing. So there is
    nothing wrong with using a ton of AS in Flash. However, if you do
    not know AS very well, these things are fairly difficult to do.
    If you do know AS fairly well, then go ahead and make your
    own Scroll Pane. Best-case scenario, you make a component that fits
    your needs, and is much smaller (file-size) than the ScrollPane.
    The built-in components tend to be a bit bloated. Worst-case
    scenario: Over too much time, you make something that is bigger
    than the ScrollPane component, and pretty much does the job you
    want, but is a bit buggy, and you have quite a few headaches on the
    way.
    Personally, I do not understand why Adobe hasn't given us the
    ability to rearrange the arrows on the UIScrollBar, or even simply
    turn the track off completely. These seem like simple things that
    should be easy for Adobe to add. I really need to compile a list of
    things to submit through the wish list page.
    So, you can stick with the ScrollPane, have it easy and done,
    but with a sub-ideal scrollbar. Or you can work at building your
    own ScrollPane component. If you build your own, you may spend a
    bit of time in development, but you will be able to get your
    scroller to display the way you want.

  • Possible to see at a glance who has/has not viewed pdf via the 'Tracker'?

    We are working on setting up procedures for Browser-based reviews. We were hoping we'd be able to see at-a-glance who had/had not viewed or sent back comments, and the date they sent them in the Tracker, but it seems to be just a list of who it was sent to originally. How do you know who has sent comments, other than manually scrolling through all the comments to see people's names?

    Hi;
    No, there isn't a way for you to see anything about who has saved progress.
    Thanks,
    Josh

  • Unable to capture 2 audio tracks

    FCP refuses to capture 2 audio channels?! I have one mic on channel 1 and another mic on channel 2 but FCP captures only 1 mono track eventhough in Clip Setting both channel 1 and 2 are selected. Does anybody know what could be wrong?
    Another thing is that when I have captured a clip - it won´t appear automatically in the Browser as it always has done? Now I need to import the Clip from my Project folder. FCP going crazy.

    Hi boxpuppy,
    iTunes is not able to import some Windows Media Player files. See this article for further information -
    Importing Windows Media Audio files with iTunes for Windows
    http://support.apple.com/kb/HT1844
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • When creating new track in stereo... track opens in mono in arrange window

    Since upgrading to 8.0.2...weird things are happening to previously saved projects. Stereo tracks are opening up mono and affecting following track. When creating new tracks in stereo.... tracks open mono. I don't know if this is due to 8.0.2 but all these freaky things have happening since. Also, when previewing Apple Loops, I can only hear it on one side, but Loops sounds fine once dragged to arrange window. Is this common or is my computer haunted ? Should I call Ghost Busters ? HELP !!! lol

    Hi there,
    I'm having the same problem as well: creating new tracks results in a mono software instrument, not the usual stereo software instrument. BUT... "Universal Track Mode" is already checked in my Audio prefs. I unchecked & rechecked it, but to no avail... I'm still only getting mono software instruments.
    Any other ideas? No changes have been made to my system, and I'm running the latest version of Logic Pro.
    Kirby

  • Custom report to track the documents

    Hai All,
    My Client requires a custom report to track the document flow any time i.e., once the material arrives the purchase dept makes an entry like PO date the date of arrival,and Gr date the GR approval date and document handed over for  Invoice verification date and payment made date.
    How is achieve this?
    Regards
    R.Senthilnambi

    No My client requirement is not like that,suppose one fine day if he wants to track the positon of GRN document or a bill at what stagei.e.,if in FI if they say they have not received any document to process or they hold the document for days and say just today GRN has been handed over to him ,The Materials guy has to generate a report and say this is the day the document is handed over to you.
    Is this can be done.or only out of SAP.
    Regards
    Senthil

  • Questions on Track Transpose and Score Layout

    Hi all -
    I'm posting these questions for my 14-yr old son who is the Logic Express user, so apologies as I might be asking the questions the wrong way. :-)
    My son is writing an arrangement of the song Friday (Rebecca Black) :-) for his Middle School Marching Band. It sounds pretty cool so far, btw, and I have to admit the song is quite catchy. Haha.
    Question 1: Is there a way to transpose a track independently of other tracks? As you know, some marching band instruments (flute, clarinet, etc) play natively in a different key, and he wants the appropriate key to show in the printed score. When he sets the key for a given track, every other track is changed as well, which won't work.
    Question 2: When printing the score, is there a way to remove the bass clef? For some instruments (trumpet, for example) there are no notes in the bass clef and it's a waste to print the bass clef at all. He just wants the score to be more compact (and use less paper).
    I hope I did his questions justice. :-) Any feedback would be very helpful! Thanks!

    So I asked my son if I asked his questions correctly, and I guess I didn't. :-/ So, thanks, anyway, for reading. I'll be posting a different question shortly.
    Mods: Please delete if needed. Thanks!

  • I've been importing all my old CDs into itunes but one of them which was unknown imported as single tracks. How can I combine these into one album

    I've been importing all my old CDs into itunes but one of them which came up as unknown has imported as single tracks named track 1, track 2 etc. It wasn't an obscure CD (Paul Carrack - the journey so far) but not one that's available in the itunes store. I've manually changed the track names but they all appear as single tracks in the "Albums" section. Is there a way to put them all into an album to show up as an album with the other albums. Other "unknown" CDs I imported have imported with the correct track names but just don't have the album artwork so I don't understand why this one is behaving totally different?

    If you select the tracks all together in iTunes/ Songs then go to File/Get info you will be asked "Are you sure you want to edit information for multiple items?" Go ahead and you can make them into an album, putting in the artist name, etc.

  • How do I find the apps and tracks associated with my ex-husband's account to delete them OTHER than 1 by 1-running Windows 8?

    I recently migrated my extensive library from a Mac authorized with both my and my ex-husband's id's to a Windows 8 machine only authorized with my id. I am finding that a good portion of the apps and tracks are still only authorized by his. How do I find these so I can delete them from my library? Finding them 1 by 1 has been VERY tedious. I have seen a script for the Mac to do this, but no solutions for Windows.

    It doesn't sound like the Exchange environment is configured in a manner to support these types of clients very well.  Have your Exchange team look at the following
    http://blogs.technet.com/b/exchange/archive/2012/11/26/supporting-windows-8-mail-in-your-organization.aspx
    http://blogs.technet.com/b/exchange/archive/2013/10/18/supporting-windows-mail-8-1-in-your-organization.aspx
    From the latter article: "Communications applications can connect to a corporate Exchange service
    configured to require certificate-based authentication. User authentication certificates can be provisioned to Windows 8.1 devices by administrators or end-users can browse to certificate and install to user certificate storage."
    You might want to:
    Ask your Exchange team the public URLs (ExternalURL) for Exchange OWA & ActiveSync
    Open the OWA URL in your Internet Explorer from your Surface
    If you get a Certificate warning, open the certificate and select Install (NOTE: You may have to install the entire certificate chain).  Your desktop support team should be able to support this because it is the SAME process for standard Windows 8x
    desktops.
    Confirm that you can open OWA on your surface with no more certificate or security warnings.  NOTE: The Exchange team will have to configured OWA properly.
    Once confirmed, repeat the same steps for the activesync URL that they provided.
    When done, try using the OWA OR ActiveSync URL value in your settings of your Mail client.
    Good Luck

  • How can I quickly get the same album art for all tracks on an album without manually doing them one at a time?

    I am having trouble with album art linked to each track. My library is ripped from my own cd's and ITunes only provides some of the artwork from a find artwork search. The rest must be found and added one at a time manually from web. This process is tedious and time consuming for me. Is there a file in iTunes related to each album that I can just drop the art once and it shows up linked to all the tracks from that album when they play? I've tried selecting all songs from an album and dragging the artwork to the artwork window once in hopes of all tracks getting the artwork at the same time with no luck. Any advice for this paltry artwork dilemma would be appreciated. If Cassidy & Greene still owned this ******* child of SoundJam I know I would not be having this problem! HaHa...Thanks for any advice/help with this problem.

    Thx 4 quick reply alexbird. Your method will work and after a little experimenting so will this: Just go to the album art view option and highlight the album you want artwork for. Drag the artwork from your album art web search page to bottom left hand album art window in iTunes and just drop it there. A small progress window then appears showing each album track adopting the dropped artwork one by one. It only takes 10-15 seconds for all of the tracks on your album to adopt the new artwork. I then went back and removed unwanted artwork(from the albums that had it) track by track from the get info menu. This goes pretty quick as you just pick track>get info>artwork>highlight art>delete>ok for each track.
    This drag/drop to the album art view page has been the simplest and most effective way I have discovered to manually import album artwork into iTunes so far. Hope this helps someone else out there. Any other methods or suggestions to do this task added to this thread will be duly noted. Thx... Oh, I am currently using iTunes 10.5.1

  • How do I find and clear all ticked Stop Times in music tracks?

    I have lots of music tracks which have the Stop Time ticked under the Options tab in Get Info. I don't know why they are ticked as I didn't do it, but now I want to clear them all as it causes tunes to stop abruptly in playback. I've looked for a script that would do this, but no luck. If there's no available script, perhaps if I could at least find all of the songs with Stop Time ticked, that would be a start. Does anyone either know of a way to clear all ticked Stop Times, or at least create a playlist of all songs with Stop Time ticked? If anyone knows why Stop Time gets ticked for some songs and not others, that would also be useful information. Thanks in advance.

    barney97,
    Maybe this script in can be of help:
    tell application "iTunes"
    if selection is not {} then
    set sel to selection
    repeat with this_track in selection
    try
    set finish of this_track to 1000
    end try
    end repeat
    display dialog "Done!" buttons {"Thanks"} default button 1 giving up after 5
    end if
    end tell
    Replace the "1000" with the number of seconds of your longest track, compile and run the script. The script tries to set the Stop Time to 1000 seconds. If your tracks are shorter in duration, the Stop times just will be cleared.
    Run Script Editor (in ./Applications/Applescript) and copy the script (grey block above) to it.
    Click the 'Compile' button and save it as a script in ./Library/iTunes/Scripts.
    It will then appear in the Script menu in iTunes.
    Next, select all tracks in your Music Library (Command-A) and run the script.
    It's not a very elegant solution, but it works.
    If anyone knows why Stop Time gets ticked for some songs and not others, that would also be useful information.
    I can't tell you that. I've never experienced a phenomenon like that.
    Maybe some iTunes related Widget or iTunes supporting application is responsible for that.
    Hope this helps.
    M
    17' iMac 800 MHz, 768 MB RAM, 200 GB HD, DL burner   Mac OS X (10.4.9)   iTunes 7.2

Maybe you are looking for

  • Replacement Question: Ipod 20G 4th Gen Vs. Ipod 30G 5th Gen

    The 20G non-color display Ipod that I owned for 18 months died mysteriously last Sunday. I lifted it out of the charge dock after it fully charged and the click wheel had become completely unresponsive. The video display was fully functional.... but

  • How to create test scenario for KIT Item?

    Hi All, I want to test how KIT Functionality works in OM. I have tried looking into User Guides / Web but I am not able to get specific functionality related to KIT Item testing in OM. If anyone has idea of how KIT item works and what are the setups

  • Robohelp output opens blank on software that utilizes Apache

    Hi, Has anybody got any ideas about Robohelp running on software that uses Apache. My file opens fine locally if I open the start page manually, but as soon as the help file is loaded into the software product it opens as a blank page in Firefox. App

  • Burning a Podcast to a CD

    I want to burn a Podcast onto a CD. Is this possible? I brought an audio podcast into iTunes, and now I want to burn it onto a CD but there isn't a "burn" button like there normally is for an audio file. Do I need to convert it somehow? Thanks!

  • Difficulties in buying

    Dear All, May I please, have more explanation about the following e-mail? Dear Giulia Ricci, We appreciate your recent order; however, we regret that we are unable to process the transaction at this time. If you feel that this order has been declined