Duration of textures

How do I go about changing the duration of a texture? I tried dragging the right side of the texture, but it just slows down the effect. I'm just beginning to use the program. So any help would be great. Thanks
G5 DP 1.8   Mac OS X (10.4.2)  

How do I go about changing the duration of a texture?
In case you haven't stumbled upon it yet, textures in LiveType were designed to be looped.
So, after you've click on your texture's track to activate it, alter the Loop value in the Timing pane of the Inspector palette to suit your need/taste.

Similar Messages

  • Get texture file size, resolution and type.

    Hi!
    My script parsing every layer of AE Composition and creating the list of used textures (files).
    Then copy files in one folder.
    But I would also to compute overall size of all files and to warn user if he break the limit (for example, 10MB for all textures).
    Can you advise me please the right way to get by AE script:
    1. file size.
    2. texture resolution.
    3. texture color depth (is it 16 bits, 32 bits etc...)
    4. actual type of the texture file (.tga, for example). I mean exact type detection, not extension recognition.
    I've checked AE Scripting Guide, and tried to google it, but unsuccessfully
    Is it possible in After Effect?
    Thank you in advance!

    The attributes to an AVItem still image (jpg for this example) are as follows:
    var myItem = app.project.item(1);     //Assumes your still image file is the first item in the project window's list
    myItem.comment
    myItem.duration
    myItem.file
    myItem.footageMissing
    myItem.frameDuration
    myItem.frameRate
    myItem.hasAudio
    myItem.hasVideo
    myItem.height
    myItem.id
    myItem.label
    myItem.mainSource
    myItem.name
    myItem.parentFolder
    myItem.pixelAspect
    myItem.proxySource
    myItem.selected
    myItem.time
    myItem.typeName
    myItem.useProxy
    myItem.usedIn
    myItem.width
    To access the source file attributes use:
    myItem.file
    You then can access file specifics:
    myItem.file.absoluteURI
    myItem.file.alias
    myItem.file.created               //Returns date file was created
    myItem.file.creator
    myItem.file.displayName
    myItem.file.encoding
    myItem.file.eof
    myItem.file.error
    myItem.file.exists
    myItem.file.fsName
    myItem.file.fullName
    myItem.file.hidden
    myItem.file.length               //Returns the file size in bytes
    myItem.file.lineFeed
    myItem.file.modified
    myItem.file.name
    myItem.file.parent
    myItem.file.path
    myItem.file.readonly
    myItem.file.relativeURI
    myItem.file.type               //Returns the type of file

  • Matte with texture

    Hello,
    I did a tutorial, part of which involved placing a ramp found in Mac/Library/Applic support/Live Type/Images into my project and filling it with a texture using the matte.
    My problem is, in the tutorial as well as in subsequent attempts of my own, when I extend the duration of the ramp in my timeline and render it, the animation of the texture in the ramp freezes after about 2 seconds. I'd like to have a 10 second clip with the texture moving normally inside the ramp.
    thanks a lot for any advice,
    mark

    Mark, you just need to adjust the timing parameters of the matte. You can change the speed or you can loop to extend the duration of the matting texture.

  • In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

    In oracle rac, If user query a select query and in processing data is fetched but in the duration of fetching the particular node is evicted then how failover to another node internally?

    The query is re-issued as a flashback query and the client process can continue to fetch from the cursor. This is described in the Net Services Administrators Guide, the section on Transparent Application Failover.

  • Why is the "Free texture" not available to Photoshop Photography Plan subscribers?

    I have subscribed to the Adobe CC Photography Plan since August 2013.  Today I received an email from Adobe with the subject line "New Benefits Added to your Creative Cloud Photography Plan."  The email linked to a web page.  On that page, I clicked the link "Enter the Magical World of Trey Ratcliff."  On that page, there was a link "Free Adobe Photoshop CC texture" (http://inspire.adobe.com/2014/11/7/free_adobe_photoshop_cc_texture.html).  I decided to try the texture - Metal Texture 08 by Niklas K. Andersen.
    Using the Creative Cloud Desktop app on Windows, I found my way to the Market.  For you information, this was my first time using the Market feature.  When I attempted to add it to "My Library," I got the message
    "Market Assets are a Premium feature only available to 'CC Complete' and 'Single App' members"
    Two questions:
    as a subscriber to the CC Photography Plan, am I not a 'Single App' member?
    If the answer to (1) is no, then why doesn't Adobe make it clear that the "Free Texture" is only for premium subscribers?

    John T Smith
    @Jeffrey Tranberry
    Thanks for you answers (and for the link).

  • Clip doesn't retain its proper duration

    Hi there,
    I have a 1 min. 6 sec Quicktime movie that I'm trying to import into Final Cut Pro. My problem is that whenever I try to import it, it doesn't retain the proper duration. It shortens itself to 1 min. and 3 or so seconds.
    I've tried restarting FCP and the problem remained. I double-checked the Quicktime movie, and its duration is still 1 min. and 6 sec. I tried deleting the movie's reference in the Browser and re-imported it, but it still only has a 1 min. and 3 or so second duration. I need the rest of that clip.
    What's even weirder is that when I make a freeze frame of some part of that clip (after it's been imported into the timeline), for some odd reason, the freeze frame references a later part of the clip (not where I chose to mkae a freeze frame).
    I don't know if this will help, but the movie is a credits sequence done in After Effects that I exported to a Quicktime movie using DV/DVCPRO NTSC settings at a very high quality.
    I appreciate all help.
    Thanks,
    Adam

    What's even weirder is that when I make a freeze frame of some part of that clip (after it's been imported into the timeline), for some odd reason, the freeze frame references a later part of the clip (not where I chose to mkae a freeze frame).I don't know if this will help, but the movie is a credits sequence done in After Effects that I exported to a Quicktime movie using DV/DVCPRO NTSC settings at a very high quality.
    "Very high quality" is not helpful. You should have used Animation codec at the same frame rate. Your freeze frame would be easier to build if you did it in AE but, since you're out of time, your credits would be faster to create in FCP using one of the Boris titlers.
    bogiesan

  • How to fill a JPanel with a texture from a image.

    Hello,
    I have a xxx.jpg file. I'd like to use this image to set the background texture of a JPanel.
    Can someone give me a piece of code to do that.
    Many thanks in advance
    Gege

    Since I haven't had no response, I have investigated more and finally solved my problem. Maybe it may help other people to have the answer.
    Here is the piece of code which works fine.
    import java.awt.*;
    import javax.swing.*;
    import java.awt.image.*;
    import javax.imageio.*; 
    public class TestTexture extends JPanel
        java.io.File filetexture    = new  java.io.File("mytexture.jpg");          
    public void paintComponent(Graphics g)
         super.paintComponent(g);
            Graphics2D g2 = (Graphics2D) g;
            if (g2==null)
                System.out.println("error");
                return;
            try
                 BufferedImage  mImage = ImageIO.read(filetexture);
                java.awt.geom.Rectangle2D tr = new   java.awt.geom.Rectangle2D.Double(0, 0, mImage.getWidth(), mImage.getHeight());
                TexturePaint tp = new TexturePaint(mImage, tr);
                     g2.setPaint(tp);
                    java.awt.geom.Rectangle2D  r =  (java.awt.geom.Rectangle2D)this.getBounds(); 
                     g2.fill(r);
       catch (java.io.IOException ex) {}
    }

  • I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.  I've been unable to locate an app that will do this.

    I want to make a slideshow to view on my television with image's duration ranging from seconds to an hour or more and I want to use my iPhone or iPad mini to control the television through my Apple tv.
    I've been unable to locate an app that will do this.  The Photos app that comes with the phone or iPad has extremely limited duration controls.  PhotoStream seems to load everything from my phone or iPad not allowing me to just load up a set group of images.
    iPhoto for iPad is getting some terrible recent reviews.  I tried a couple other free apps but they don't use Airplay.
    I can do something like this with iPhoto and my MB Air, but it's kind of ugly to have the computer open in order to connect by Airplay to my Apple TV.  I've thought the iPad or iPhone would be a lower profile controller.
    Am I out of luck?

    Thanks for your help.  Since I'm uninterested in loading all my photos (the only option) into photostream, I won't be able to use the settings in ATV.  I guess I'm just stuck with using iPhoto on my MB Air.  Thanks again.
    paul

  • Editing text captions changes the Duration setting

    HI,
    I edited a text caption in the Text Caption dialog and closed
    it with the OK button. The duration (Text Caption dialog >
    Options tab > Timing > Display for:) changed although I
    didn't change it. Has anyone had this problem? I looked at the help
    file but didn't find any information.
    Thanks,
    MochaLM

    Hi Rick,
    I sent my reply, but it looks that it didin't get sent, so
    I'm writng this again. Thank you so much for your quick response!!
    I unchecked Calculate Caption Timing, and the problem is resolved.
    You're great! Thanks so much
    !

  • Unable to change Still/Freeze Frame Duration in User Pref Edit tab

    Process-selected new project, change Still/Freeze Frame Duration in user preferences on the edit tab.
    Need to change to 10 minutes. Typed in the field 00:10:00:00. When I hit ok, I get a beep and it defaults back to what was in there, 01:00:00:00. So tried a larger number 02:00:00:00. Same result. A beep.
    So went ahead with project and opened a sequence and tried to change it from the viewer. Same issue.
    Trashed prefs and started from scratch. Same issue.
    Ideas?

    Trashed prefs rebooted originally.
    Process as follows for trashing prefs. First time through I had opened a project. This time did not.
    Open Home Folder
    Open Library
    Open Preferences
    Delete com.apple.finalcutpro.plist
    Open Final Cut Pro User Data
    Delete Final Cut Pro 5.0 Prefs
    Delete Final Cut Obj Cache
    Delete Final Cut Prof Cache
    Run disk utility to repair permissions.
    Reboot.
    Did not open a project this time.
    Same issue but now I am able to put a slug in the time line and by selecting clip properties, can set the duration (was not able to do this before so some progress). Still can't set duration though as earlier described from edit tab on the user preferences page for still/freeze duration.

  • SharePoint 2010 Slow query duration when setting metadata on folder

    I'm getting "Slow Query Duration" when I programmatically set a default value for a default field to apply to documents at a specified location on a SP 2010 library.
    It has nothing to do with performance most probably as I'm getting this working with a folder within a library with only a 1 document on a UAT environment. Front-end: AMD Opteron 6174 2.20GHz x 2 + 8gb RAM, Back-end: AMD Opteron 6174 2.20GHz x 2 + 16gb
    RAM.
    The specific line of code causing this is:
    folderMetadata.SetFieldDefault(createdFolder, fieldData.Field.InternalName, thisFieldTextValue);
    What SP says:
    02/17/2014 16:29:03.24 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa42 Monitorable A large block of literal text was sent to sql. This can result in blocking in sql and excessive memory use on the front end. Verify that no binary parameters are
    being passed as literals, and consider breaking up batches into smaller components. If this request is for a SharePoint list or list item, you may be able to resolve this by reducing the number of fields.
    02/17/2014 16:29:03.24 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa43 High Slow Query Duration: 254.705556153086
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High Slow Query StackTrace-Managed: at Microsoft.SharePoint.Utilities.SqlSession.OnPostExecuteCommand(SqlCommand command, SqlQueryData monitoringData) at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand
    command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock) at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) at Microsoft.SharePoint.Library.SPRequestInternalClass.PutFile(String
    bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int32 cbFile, Object punkFFM, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Obje...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...ct varProperties, String bstrCheckinComment, Byte partitionToCheck, Int64 fragmentIdToCheck, String bstrCsvPartitionsToDelete, String bstrLockIdMatch, String bstEtagToMatch,
    Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields, Guid gNewDocId, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.Library.SPRequest.PutFile(String
    bstrUrl, String bstrWebRelativeUrl, Object punkFile, Int32 cbFile, Object punkFFM, PutFileOpt PutFileOpt, String bstrCreatedBy, String bstrModifiedBy, Int32 iCreatedByID, Int32 iModifiedByID, Object varTimeCreated, Object varTimeLastModified, Object varProperties,
    String bstrCheckinComment, Byte partitionToCheck, Int64 fragmentIdToCheck...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ..., String bstrCsvPartitionsToDelete, String bstrLockIdMatch, String bstEtagToMatch, Int32 lockType, String lockId, Int32 minutes, Int32 fRefreshLock, Int32 bValidateReqFields,
    Guid gNewDocId, UInt32& pdwVirusCheckStatus, String& pVirusCheckMessage, String& pEtagReturn, Byte& piLevel, Int32& pbIgnoredReqProps) at Microsoft.SharePoint.SPFile.SaveBinaryStreamInternal(Stream file, String checkInComment, Boolean checkRequiredFields,
    Boolean autoCheckoutOnInvalidData, Boolean bIsMigrate, Boolean bIsPublish, Boolean bForceCreateVersion, String lockIdMatch, SPUser modifiedBy, DateTime timeLastModified, Object varProperties, SPFileFragmentPartition partitionToCheck, SPFileFragmentId fragmentIdToCheck,
    SPFileFragmentPartition[] partitionsToDelete, Stream formatMetadata, String etagToMatch, Boolea...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...n bSyncUpdate, SPLockType lockType, String lockId, TimeSpan lockTimeout, Boolean refreshLock, Boolean requireWebFilePermissions, Boolean failIfRequiredCheckout, Boolean
    validateReqFields, Guid newDocId, SPVirusCheckStatus& virusCheckStatus, String& virusCheckMessage, String& etagReturn, Boolean& ignoredRequiredProps) at Microsoft.SharePoint.SPFile.SaveBinary(Stream file, Boolean checkRequiredFields, Boolean
    createVersion, String etagMatch, String lockIdMatch, Stream fileFormatMetaInfo, Boolean requireWebFilePermissions, String& etagNew) at Microsoft.SharePoint.SPFile.SaveBinary(Byte[] file) at Microsoft.Office.DocumentManagement.MetadataDefaults.Update()
    at TWINSWCFAPI.LibraryManager.CreatePathFromFolderCollection(String fullPathUrl, SPListItem item, SPWeb web, Dictionary2...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ... folderToCreate, Boolean setDefaultValues, Boolean mainFolder) at TWINSWCFAPI.LibraryManager.CreatePathFromFolderCollection(String fullPathUrl, List1 resultDataList,
    SPListItem item, SPWeb web, Boolean setDefaultValues, Boolean mainFolder) at TWINSWCFAPI.LibraryManager.CreateExtraFolders(List1
    pathResultDataList, List1 resultDataList, String fullPathUrl, SPWeb web, SPListItem item, Boolean setDefaultValues) at TWINSWCFAPI.LibraryManager.CreateFolders(SPWeb web, List1
    pathResultDataList, SPListItem item, String path, Boolean setDefaultValues) at TWINSWCFAPI.LibraryManager.MoveFileAfterMetaChange(SPListItem item) at TWINSWCFAPI.DocMetadataChangeEventReceiver.DocMetadataChangeEventReceiver.FileDocument(SPWeb web, SPListItem
    listItem) at TWINSWCFAPI.DocMetadataChang...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...eEventReceiver.DocMetadataChangeEventReceiver.ItemCheckedIn(SPItemEventProperties properties) at Microsoft.SharePoint.SPEventManager.RunItemEventReceiver(SPItemEventReceiver
    receiver, SPUserCodeInfo userCodeInfo, SPItemEventProperties properties, SPEventContext context, String receiverData) at Microsoft.SharePoint.SPEventManager.RunItemEventReceiverHelper(Object receiver, SPUserCodeInfo userCodeInfo, Object properties, SPEventContext
    context, String receiverData) at Microsoft.SharePoint.SPEventManager.<>c__DisplayClassc1.b__6() at Microsoft.SharePoint.SPSecurity.RunAsUser(SPUserToken userToken, Boolean bResetContext, WaitCallback code, Object param) at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](SPUserToken
    userToken, Gu...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...id tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Object properties, Boolean checkCancel) at Microsoft.SharePoint.SPEventManager.InvokeEventReceivers[ReceiverType](Byte[]
    userTokenBytes, Guid tranLockerId, RunEventReceiver runEventReceiver, Object receivers, Object properties, Boolean checkCancel) at Microsoft.SharePoint.SPEventManager.HandleEventCallback[ReceiverType,PropertiesType](Object callbackData) at Microsoft.SharePoint.Utilities.SPThreadPool.WaitCallbackWrapper(Object
    state) at System.Threading.ExecutionContext.runTryCode(Object userData) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Threading.ExecutionContext.Run(ExecutionContext
    execu...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database fa44 High ...tionContext, ContextCallback callback, Object state) at System.Threading._ThreadPoolWaitCallback.PerformWaitCallbackInternal(_ThreadPoolWaitCallback tpWaitCallBack)
    at System.Threading._ThreadPoolWaitCallback.PerformWaitCallback(Object state)
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzku High ConnectionString: 'Data Source=PFC-SQLUAT-202;Initial Catalog=TWINSDMS_LondonDivision_Content;Integrated Security=True;Enlist=False;Asynchronous Processing=False;Connect
    Timeout=15' ConnectionState: Open ConnectionTimeout: 15
    02/17/2014 16:29:03.26 w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High SqlCommand: 'DECLARE @@iRet int;BEGIN TRAN EXEC @@iRet = proc_WriteChunkToAllDocStreams @wssp0, @wssp1, @wssp2, @wssp3, @wssp4, @wssp5, @wssp6;IF @@iRet <> 0 GOTO
    done; DECLARE @@S uniqueidentifier; DECLARE @@W uniqueidentifier; DECLARE @@DocId uniqueidentifier; DECLARE @@DoclibRowId int; DECLARE @@Level tinyint; DECLARE @@DocUIVersion int;DECLARE @@IsCurrentVersion bit; DECLARE @DN nvarchar(256); DECLARE @LN nvarchar(128);
    DECLARE @FU nvarchar(260); SET @DN=@wssp7;SET @@iRet=0; ;SET @LN=@wssp8;SET @FU=@wssp9;SET @@S=@wssp10;SET @@W=@wssp11;SET @@DocUIVersion = 512;IF @@iRet <> 0 GOTO done; ;SET @@Level =@wssp12; EXEC @@iRet = proc_UpdateDocument @@S, @@W, @DN, @LN, @wssp13,
    @wssp14, @wssp15, @wssp16, @wssp17, @wssp18, @wssp19, @wssp20, @wssp21, @wssp22, @wssp23, @wssp24, @wssp25, @wssp26,...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ... @wssp27, @wssp28, @wssp29, @wssp30, @wssp31, @wssp32, @wssp33, @wssp34, @wssp35, @wssp36, @wssp37, @wssp38, @wssp39, @wssp40, @wssp41, @wssp42, @wssp43, @wssp44, @wssp45,
    @wssp46, @wssp47, @wssp48, @wssp49, @wssp50, @wssp51, @@DocId OUTPUT, @@Level OUTPUT , @@DoclibRowId OUTPUT,@wssp52 OUTPUT,@wssp53 OUTPUT,@wssp54 OUTPUT,@wssp55 OUTPUT ; IF @@iRet <> 0 GOTO done; EXEC @@iRet = proc_TransferStream @@S, @@DocId, @@Level,
    @wssp56, @wssp57, @wssp58; IF @@iRet <> 0 GOTO done; EXEC proc_AL @@S,@DN,@LN,@@Level,0,N'London/Broking/Documents/E/E _ E Foods Corporation',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,1,N'London/Broking/Documents/E',N'E _ E Foods Corporation',72,85,83,1,N'';EXEC
    proc_AL @@S,@DN,@LN,@@Level,2,N'London/Broking/Documents/E/E _ E Foods Corporation',N'2013',72,85,...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ...83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,3,N'London/Broking/Documents/E/E _ E Foods Corporation/2013',N'QA11G029601',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,4,N'London/Broking/Documents/K',N'Konig
    _ Reeker',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,5,N'London/Broking/Documents/K/Konig _ Reeker',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,6,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'QA12E013201',72,85,83,1,N'';EXEC proc_AL
    @@S,@DN,@LN,@@Level,7,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'A12EL00790',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,8,N'London/Broking/Documents/K/Konig _ Reeker/2012',N'A12DA00720',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,9,N'London/Broking/Documents/K/Konig
    _ Reeker/2012',N'A12DC00800',72,85,83,1,N'';EXEC proc...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ..._AL @@S,@DN,@LN,@@Level,10,N'London/Broking/Documents/A',N'Ace European Group Limited',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,11,N'London/Broking/Documents/A/Ace
    European Group Limited',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,12,N'London/Broking/Documents/A/Ace European Group Limited/2012',N'JXB88435',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,13,N'London/Broking/Documents/A/Ace European Group
    Limited/2012/JXB88435/Closings',N'PRM 1',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,14,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'PRM 2',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,15,N'London/Broking/Documents/C',N'C
    Moore-Gordon',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,16,N'London/Broking/Documents/C/C Moore-Gordo...
    02/17/2014 16:29:03.26* w3wp.exe (0x10D0) 0x0DB0 SharePoint Foundation Database tzkv High ...n',N'2012',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,17,N'London/Broking/Documents/C/C Moore-Gordon/2012',N'QY13P700201',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,18,N'London/Broking/Documents/C/C
    Moore-Gordon',N'2013',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,19,N'London/Broking/Documents/C/C Moore-Gordon/2013',N'Y13PF07010',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,20,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'ARP
    7',72,85,83,1,N'';EXEC proc_AL @@S,@DN,@LN,@@Level,21,N'London/Broking/Documents/A/Ace European Group Limited/2012/JXB88435/Closings',N'ARP 8',72,85,83,1,N'';EXEC proc_AL . . .
    Thanks in advance A

    SharePoint and SQL Server installed on same server or how is the setup?
    i would start to enable the developer dashboard, analyze the report of the developer dashboard...
    you will see if any webpart, or page or sql server query taking too much time.
    http://www.sharepoint-journey.com/developer-dashboard-in-sharepoint-2013.html
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Jabber for Windows 9.2.1 Contact Away status doesn't show duration

    .Jabber for Windows 9.2.1 Contact "Away" status doesn't show duration. I am wondereing if it is possible with Cisco Jabber client. Microsoft OCS client used to show.

    Hi,
    This is currently not supported in Jabber.
    If you think that this feature should be in Jabber, you can open a TAC case and do Enchancment request with them?
    Regards,
    Srdjan

  • How to change duration of music on menu?

    Adobe Premiere Elements 7.0 - Windows Vista 64bit
    I'm getting there. (Thanks to your help!)
    I started from (almost) "scratch" so I'd have a nice "clean" video to burn to a DVD. I've reset all my chapter markers. Perfect, in Preview. I've chosen my menu and adjusted the motion scene selection buttons. Gorgeous, in Preview. I don't like the "default" music that comes with the menu I chose. I read some old threads here and found there is a 30 second limit, so I used Audacity to cut a WAV clip that's 16.23 seconds long to use as a loop. Here's the problem:
    I clicked "Browse" and selected the same music clip for the Main Menu and each of three successive Scene Selection pages. Works fine on the Scene Selection pages, but the Main Menu won't play past 13 seconds for some inexplicable reason. I tried manually adjusting the "duration" to 16.23, but it snaps back to 13 as soon as I hit Preview.
    I've closed the program, restarted my computer, made a new (identical) music clip (just in case the Main Menu didn't want to "share") but it still won't take it. It plays the first 13 seconds then abruptly loops back to the start, which is NOT a *smooth* transition - but it would be, IF it would play the whole 16.23 seconds like the other menu pages do without any problem.
    I'm open to suggestions, but I sure hope I don't have to start over again. Oh, BTW - I tried switching to a totally different Disc Menu, just out of curiosity, and that one played the whole music clip on the Main Menu page without a problem... but I don't like the look of that menu, I want the other one - the one that's giving me grief (of course). Don't understand why it would work on one and not the other.
    Please advise. Many thanks in advance. Cheers, Val
    To answer a question one of you (Bill?) asked on the previous thread about my source material --
    It was originally a PAL video cassette, converted to NTSC DVD. It's all on my computer now - four VOB files: three @ .99GB each, and one @ 691 MB. It's a one-hour Peter Allen TV Special broadcast in Australia. I am removing the advertising and making a menu that will allow selection of each song individually. I want more of a "concert" and less of a "TV show" as the finished product.

    Here are the results of my test of the Broadway Menu Set and the exact steps that I used. It starts a bit before the work with the Video and Audio, but this might be useful to someone creating a Menu Set for use with PrE.
    I got the Standard (4:3) PSD’s for the Broadway Menu Set, both the Main Menu (mm) and Scene Selection (ss), plus the MPG and the MP3 files. To get these Menus to display in PrE’s Create Menus selection area, I Opened the PSD’s in Photoshop, and created the PNG “thumbnails” for them, using the naming convention of the other PNG thumbnails as my guide. I first resized each PSD to 160 x 128 pixels, and then did a Save_As_PNG-8, using the correct naming convention, used elsewhere. These were placed into a new “(V) Broadway” folder with the PSD’s, the Motion Asset MPEG and the Audio MP3 file. All displayed fine in PrE 4.
    In a PrE Project, I took the original Broadway MPEG and used TimeStretch to increase its Duration to the 29;20, that I had used before (that would match my Audio file from earlier tests), and did a Share, choosing MPEG. This resulted in an m2v, but that worked fine.
    In PrE’s Create Menus Panel, I chose the new, stretched m2v, and the Duration changed to match the 29;20 Duration of the Motion Asset. Next, I linked to the previous SmartSound WAV, that was edited to have a Duration of exactly 29;20. The Duration for that Asset changed to 29;20 instantly.
    I previewed and the searchlights were now slower (as was to be expected) and the limo was also slower pulling in and out. The Menu’s Motion Background was smooth, but slower. The new Audio with Fade-in and Fade-out, played perfectly, and the Menu Looped very nicely. Actually the Looping was now better than with the original MPEG and MP3 Assets! This was a nice surprise, as there was a bit of a jolt, when the original Audio Looped. Not sure what could be done to eliminate that, but think that it would be easily accomplished in Audition, or Audacity. Maybe a test for another day.
    I burned a DVD RW and the Menu worked perfectly. I did not complete the test by altering the Scene Selection Menus (in my test Project, I needed three of these), but feel confident that they would function the same way.
    In conclusion, if one needs to use other Audio source files, this can be done, so long as one takes two things into consideration: the Video Motion Asset will determine the Looping/Duration, and the Duration must be < 30;00. I chose 29;20 to give myself a bit of headroom. Now, one needs to consider the visual effect of using TimeStretch to modify the Duration of a Background Video - here, it was fine. The Audio needs to match perfectly, or be ever so slightly shorter (I’m talking about a few Audio Units here - slight indeed), than the Video Asset.
    Now, one is still limited to the 30;00 Duration limit, in PrE, but up to that point, the chosen Audio can be just as long as the Video.
    I strongly recommend using a short Fade-in and Fade-out on the Audio, so that there is a lead-in/lead-out that will keep from having harsh jumps with the Loop.
    Hope that this helps someone in the future.
    Hunt

  • In the privacy policy, it states that percentages and durations of books read are being collected to ensure that publishers can have a metered price model, prices depending on how the book was read. Give me an example of a company with such a price model?

    In your privacy policy, you state that the percentages and durations of books read are being collected to ensure that publishers can choose a metered price model. Prices which depends on the duration for which the book was read.
    Give me an example of a company with such a price model? Are the information being collected even where the companies have not asked for the information, even when the metered price models are not being used?
    Here is an extract från the privacy policy:
    What information does Adobe Digital Editions collect and how is it used?
    The following information may be collected when an eBook with DRM is opened in Adobe Digital Editions software. If an eBook does not have any DRM associated with it, then no information is collected.
    User GUID: The User GUID is a unique value assigned in place of your User ID and is used to authenticate you.
    Device GUID: The Device GUID is a unique value generated to identify your device. It is used to ensure that the eBook may be viewed on your device and that the number of devices permitted by the license is not exceeded.
    Certified App ID: This ID represents the application that is being used to view the eBook, in this case Adobe Digital Editions. It is necessary to ensure that only a certified application may display an eBook. This helps to minimize piracy and theft of eBooks.
    Device IP (Internet Protocol): This identifies the country you are located in when you purchase an eBook.  It is used by eBook providers for the enablement of localized pricing models. Only the country identifier of the Device IP is stored.
    Duration for Which the Book was Read: This information may be collected to facilitate limited or metered pricing models entered into between eBook providers, such as publishers and distributors. These models are based on how long a reader has read an eBook. For example, you may borrow an eBook for a period of 30 days. While some publishers and distributors may charge libraries and resellers for 30 days from the date of the download, others may follow a metered pricing model and charge them for the actual time you read the eBook.
    Percentage of the eBook Read: The percentage of the eBook read may be collected to allow eBook providers such as publishers to implement subscription pricing models where they charge based on the percentage of the eBook read.
    Information provided by eBook providers relating to the eBook you have purchased: The following information is provided by the eBook provider to enable the delivery of the eBook to your device:Date of eBook purchase/download
    Distributor ID and Adobe Content Server Operator URL
    Metadata of the eBook, such as title, author, language, publisher list price, ISBN number
    How is the information transmitted?
    The data is sent periodically to Adobe via a secure transmission using HTTPS.
    How is the information used?
    Adobe uses the information collected about the eBook you have opened in Adobe Digital Editions software to ensure it is being viewed in accordance with the type of DRM license that accompanies that eBook. The type of license is determined by the eBook provider. For more information on how each piece of data is used, please see above.

    In your privacy policy, you state that the percentages and durations of books read are being collected to ensure that publishers can choose a metered price model. Prices which depends on the duration for which the book was read.
    Give me an example of a company with such a price model? Are the information being collected even where the companies have not asked for the information, even when the metered price models are not being used?
    Here is an extract från the privacy policy:
    What information does Adobe Digital Editions collect and how is it used?
    The following information may be collected when an eBook with DRM is opened in Adobe Digital Editions software. If an eBook does not have any DRM associated with it, then no information is collected.
    User GUID: The User GUID is a unique value assigned in place of your User ID and is used to authenticate you.
    Device GUID: The Device GUID is a unique value generated to identify your device. It is used to ensure that the eBook may be viewed on your device and that the number of devices permitted by the license is not exceeded.
    Certified App ID: This ID represents the application that is being used to view the eBook, in this case Adobe Digital Editions. It is necessary to ensure that only a certified application may display an eBook. This helps to minimize piracy and theft of eBooks.
    Device IP (Internet Protocol): This identifies the country you are located in when you purchase an eBook.  It is used by eBook providers for the enablement of localized pricing models. Only the country identifier of the Device IP is stored.
    Duration for Which the Book was Read: This information may be collected to facilitate limited or metered pricing models entered into between eBook providers, such as publishers and distributors. These models are based on how long a reader has read an eBook. For example, you may borrow an eBook for a period of 30 days. While some publishers and distributors may charge libraries and resellers for 30 days from the date of the download, others may follow a metered pricing model and charge them for the actual time you read the eBook.
    Percentage of the eBook Read: The percentage of the eBook read may be collected to allow eBook providers such as publishers to implement subscription pricing models where they charge based on the percentage of the eBook read.
    Information provided by eBook providers relating to the eBook you have purchased: The following information is provided by the eBook provider to enable the delivery of the eBook to your device:Date of eBook purchase/download
    Distributor ID and Adobe Content Server Operator URL
    Metadata of the eBook, such as title, author, language, publisher list price, ISBN number
    How is the information transmitted?
    The data is sent periodically to Adobe via a secure transmission using HTTPS.
    How is the information used?
    Adobe uses the information collected about the eBook you have opened in Adobe Digital Editions software to ensure it is being viewed in accordance with the type of DRM license that accompanies that eBook. The type of license is determined by the eBook provider. For more information on how each piece of data is used, please see above.

  • Duration problem with animated gif

    Hi!
    I love the animated gif feature and have used it several times successfully.
    This time, it seems to ignoring my settings for duration. I've set the number as high as 1500/100, but when I preview in browser (Mac Safari or Firefox), the images just whip by. I did slice the animated area and optimize it as an animated gif and export it. When I worked with it again this morning, the first image reflected the 1500/100, but the rest are still racing. I've tried to attach file here.
    Also, I'm wondering if this really should be done in Flash rather than FW. The client wants maybe 5 or 6 images and with the 7 test I have now, I see we're at 216K file size. I don't know flash but if the blog theme we use doesn't have something set up, I assume I'll just outsource the Flash development.
    Thanks,
    Caryn

    Okay...it works for me, but....
    One thing to be careful of is saving vs. exporting. When you create your file, you should save it as a Fireworks .png document. Then, to produce your animated .gif, you should export it. I like using the Image Preview (under the File menu), as I can tweak any of the settings I want. Other people prefer the Export item and optimize their output.
    There are two kinds of .png files. A Fireworks .png has all the layers, vector shapes, Web layer, active filters, and special proprietary information that Fireworks uses. A flattened .png is just a bitmap, whether it has 32, 24, or 8 bits. There's no distinction between these files based on the extension. Another user once suggested using .fw.png for Fireworks documents and .png for exported .pngs and I found that a good suggestion.
    In any case, a good rule to follow is to use save when you want a Fireworks .png and export when you want a Web-ready bitmap of any format.
    So, this is my "but." I took your file and changed the durations of the other frames. I saved it as a Fireworks .png. I then went to File > Image Preview and selected Animated GIF as the format. From the Animation tab, I set the number of loops to 3 and exported. I then saved the .png again to store the loop information.
    Here's the .png (474k):
    Here's the animation (303k):
    Given that the .gif format does't have the colors to reproduce photographs well, I still recommend you look into image rotators. These are scripts that can cycle through a set of images. See this thread:
    http://forums.adobe.com/thread/518231?tstart=1

Maybe you are looking for

  • Course of action? Parsing 1000+ PDF forms into XML.

    Hello - I am looking to automate the parsing of hundreds of PDF Forms into XML and then do some basic validation. The preferred method would be to drop all of the PDF's into a folder, run a script, and then the PDF's would go to their corresponding d

  • Displaying text from XML.

    Hello, I hoping that somone can steer me in the right direction here. Right now I have an application that reads an XML and displays thumbnails of images. A user clicks on the thumbnail and a larger image appears. What I would like to do is, instead

  • Refreshjob error when refreshing php data/services

    Hey I read somewhere that this might be related to the fml file that is updated every time when you do changes to the service. Is there any tool / way to fix the broken fml file ? any other idea that might be cause this? Cheers Lare

  • Upgrade or fresh install??

    Got my snow leopard upgrade dvd and wondering if there is any advantage to doing a fresh install as opposed to an upgrade... obviously making a backup first.

  • The operation failed. The messaging interfaces have returned an unknown error. During reply all

    Hi, I am having problem when click "reply all" for my outlook2013, message show as below, The operation failed. The messaging interfaces have returned an unknown error. .... Please help... CL