How to show progress during a long Render call

My effect computes values from all frames in a layer much like Warp Stabilizer does. I set a flag and do this when necessary in my Render function. The user controls when to analyze by clicking a button in the effect UI.
It can take from a few seconds to over a minute depending on the layer, so I need to show progress to the user.
In After Effects I can use the progress bar, and put text in the info panel from within the Render proc; but I'd like to find a better way to show progress.
Indicidentally, neither of these two thing seem to works in Premiere Pro.
Warp Stabilizer shows progress to the left of the Analyze button in its effects window, but I can's seem to do this from within Render.
Any ideas?

Try the Top Menu or Menu button on the dvd player remote. That usually returns to the start of the dvd.

Similar Messages

  • How to show progress bar in miniplayer?

    How to show progress bar in miniplayer? I play a lot of music podcasts and it would be very helpful if anyone could help me bring that feature back.

    i answered here:
    http://forum.java.sun.com/thread.jspa?messageID=9739423&#9739423

  • How to show progress bar

    how to show progress bar

    This gets asked about 100 times a day, especially when you get people posting it multiple times - learn to use the search facility, or at least Google. It's really not that hard.
    Type "java progress bar" into Google and hit "I'm feeling lucky" - the answer is there.

  • How to show progress bar in java???

    Hey guys!!! can any one tell me how to show the progress bar when a processing is going on???Is it done by multithreading?? I have to import data from database kept in another machine into my database.It would take quite a longer time especially when database is quite large.I want to show the progress and every data being imported to the user so that user does not think that system has hanged on...Please help...

    i answered here:
    http://forum.java.sun.com/thread.jspa?messageID=9739423&#9739423

  • Show Progress During Lengthy Multiple Procedures Executing

    I have a C# winform app that on a button press event will call about 8 different procedures taking close to 10 minutes to perform the full cycle of events.  I see that you can use a Background Worker to display a progressbar and display text above the
    progress bar, but is their a way I can display when each different procedure is entered?  For example, possibly show in a BackgroundWorker Something like this: (maybe customize the message a little bit more but this would get the point across and at least
    show progress)
    Procedure 1 Starting 03/25/2015 10:01:08 p.m....
    Procedure 1 Finished 03/25/2015 10:02:25 p.m...
    Procedure 2 Starting 03/25/2015 10:02:28 p.m...
    Procedure 2 Finished 03/25/2015 10:04:30 p.m...
    Procedure 3 Starting  03/25/2015 10:04:50 p.m...
    Procedure 3 Finished 03/25/2015 10:06:15 p.m...

    This is exactly what the ProgressChanged Event is for:
    https://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.progresschanged(v=vs.110).aspx
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • How to show progress - Applet - Servlet

    Hi,
    I am new to applet-servlet communication. I have to show the progress at the applet front-end using a JProgressBar for a task being done at the servlet end. I request the gurus on the forum to post any example code for the above situation.

    Hi,
    U will have to use the SwingWorker to popup the JProgressBar, but in here i dont think u will be getting any input from servlet giving the job completed, if u are using jdk1.4.1 u can use
    setIndeterminate(true);
    I am attaching 2 methods below which i use to display the JProgressBar
    Method long task is where i actually call the servlet and in method buildData i create the URLConnection etc
    //appletData must implement Serializable
    public void buildData(Object appletData)throws Exception
    //define servlet name here
    ObjectInputStream inputFromServlet = null;
    URL          studentDBservlet = new URL("MyServlet");
    URLConnection servletConnection = studentDBservlet.openConnection();
    servletConnection.setDoInput(true);
    servletConnection.setDoOutput(true);
    servletConnection.setUseCaches(false);
    servletConnection.setRequestProperty("Content-Type", "application/octet-stream");
    ObjectOutputStream outputToServlet =
              new ObjectOutputStream(servletConnection.getOutputStream());
         // serialize the object
         if (!SwingUtilities.isEventDispatchThread())
              outputToServlet.writeObject(input);
              outputToServlet.flush();
              outputToServlet.close();
              inputFromServlet = new ObjectInputStream(servletConnection.getInputStream());
         else
              inputFromServlet = longTask(servletConnection, outputToServlet, appletData);
    private ObjectInputStream longTask(final URLConnection servletConnection,
                        final ObjectOutputStream outputToServlet,
                        final Object appletData)
         final JDialog dialog = new JDialog(PlanApplet.appletFrame, "Please Wait", true);
    isProcess = true;
         MapsPanel panel = new MapsPanel();
         panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
         //MapsLabel label = new MapsLabel("Work in process....");
    //label.setFont(Constant.bigFont);
         //label.setPreferredSize(new Dimension(230, 40));
         JProgressBar progressBar = new JProgressBar();
         progressBar.setIndeterminate(true);
         progressBar.setPreferredSize(new Dimension(140, 30));
    // final JugglerLabel jugLabel = new JugglerLabel();
    // jugLabel.startAnimation();
    // panel.setPreferredSize(new Dimension(175, 175));
         MapsPanel progressPanel = new MapsPanel(new FlowLayout(FlowLayout.CENTER, 5, 5));
         progressPanel.setPreferredSize(new Dimension(140, 80));
    progressPanel.add(progressBar);
    //     progressPanel.add(jugLabel);
    //     panel.add(Box.createVerticalStrut(5));
         //panel.add(label);
         panel.add(Box.createVerticalStrut(15));
         panel.add(progressPanel);
         panel.add(Box.createVerticalStrut(15));
         dialog.setSize(150, 115);
         dialog.setResizable(false);
    //     dialog.getContentPane().add(jugLabel);
    dialog.getContentPane().add(panel);
    dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
    dialog.setLocation(ScreenSize.getDialogLocation(dialog));
    //      final javax.swing.Timer popupTimer = new javax.swing.Timer(2000, new TimerListener(dialog));
         final SwingWorker worker = new SwingWorker()
         public Object construct()
              try
              PlanApplet.applet.setCursor(new Cursor(Cursor.WAIT_CURSOR));
              outputToServlet.writeObject(appletData);
              outputToServlet.flush();
              outputToServlet.close();
              return new ObjectInputStream(servletConnection.getInputStream());
              catch (Exception exc)
              return null;
         public void finished()
    // jugLabel.stopAnimation();
              dialog.dispose();
    Toolkit.getDefaultToolkit().beep();
    isProcess = false;
              LogWriter.out("the long process is finished", LogWriter.BASIC);
         worker.start();
    // popupTimer.start();
         //System.out.println("Process complete");
         dialog.show();
    // while(isProcess)
         return (ObjectInputStream) worker.getValue();

  • How to spin cursor during JTree long operation

    I have a JTree that uses my model class to load nodes as the user expands them (lazy load). But some nodes have so many children that it takes a long time for the JTree to expand the node (and display the children). I'd like to figure out how to display a spinning cursor so the user will know that something is happening. Otherwise it appears as though the app has locked up (for 10 - 15 seconds). Is there a way to do this easily?

    Well here is what I did. It seems to do what I wanted to do (indicate to the user that the load is taking a while).
            tree.addTreeWillExpandListener(new TreeWillExpandListener() {
                   public void treeWillCollapse(TreeExpansionEvent event)
                             throws ExpandVetoException {}
                   public void treeWillExpand(TreeExpansionEvent event)
                             throws ExpandVetoException {
                        setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
            tree.addTreeExpansionListener(new TreeExpansionListener() {
                   public void treeCollapsed(TreeExpansionEvent event) {
                        setCursor(Cursor.getDefaultCursor());
                   public void treeExpanded(TreeExpansionEvent event) {
                        setCursor(Cursor.getDefaultCursor());
            });

  • How to show image in a datagridview cell called from a URL stored in an SQL database

    I am using Visual Studio 2008 creating a Windows Form to display a datagrid with real estate information. The SQL database record contains a dozen fields of text which I have no problem displaying. My problem is one of the columns contains
    a url which links to a picture on a remote third party server. I need to display a thumb nail picture on the grid row based on the stored url. When I edit the gridview column I see there is a "column type" setting and
    in the dropdown is DataGridViewImageColumn. I don't see any URL setting where I can bind the sql field to. 
    Any help would be greatly appreciated.

    Hi ikeni,
    I think you could do as below:
    1.Set the ColumnType as “DataGridViewImageColumn”
    2.For each row of the datagridview, and set the Value of datagridview cells like  “dataGridView1[2, 0].Value = Image.FromFile(@"\\1.168.1.1\C$\Users\Desktop\3.JPG")”
    You could turn to the links below for more information:
    setting an Image column in a datagrid view based on a value in the database c#
    https://social.msdn.microsoft.com/Forums/windows/en-US/62f5b477-5311-4de5-bc18-fbd29bbfc9e2/setting-an-image-column-in-a-datagrid-view-based-on-a-value-in-the-database-c?forum=winformsdatacontrols
    Check if file exists on remote server and various drive
    http://stackoverflow.com/questions/26432688/check-if-file-exists-on-remote-server-and-various-drive
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click HERE to participate the survey.

  • How do you use the status column to show progress of a step in an OI?

    Hi everyone,
    I was just doing a little browsing and noticed the picture at the top of the http://www.ni.com/teststand/ web page.  It shows a progress bar in the status column of a step being executed.
    I have several applications where this would be a very useful addition.  I use the progress bar at the bottom of the OI and sequence editor regularly, but would very much like to show progress of an individual step in the status column.  It would be particularly useful where you turn the tracing off into a sequence but want to see that progress is being made through the steps within it...
    Anyone know how to do this?  I have been unsuccessful in trying to find examples....
    Cheers,
    Barry

    James,
    I believe your answer to Bazza's question also applies to my situation, but I wasn't sure so I thought I would ask.  I am working on a custom TestStand operator interface in LabVIEW using the UI controls.  I would like it to behave as closely as possible to the old Test Executive.  Specifically, I would like the operator to be able to see the contents of the sequence file, interact with them, and see the execution results all in the same view.  Is that possible?  In other words, can I display and interact with a sequence file (display the sequence steps, run selected steps, loop selected steps, etc.) and display the sequence's execution results (including tracing) in the same SequenceView control or do I have to use 2 of them?
    Thanks,
    Ryan Wright

  • How to read file asychronous and show progress bar??

    Hello Everyone,
    I am new here and this is my first post here. I made a desktop application in Adobe flex builder 3. In the application I took the path of a folder and merge all the file present in that folder in a new file. I want to show the progress bar when file merging, because it take some time to merge large number of files. I read and write files synchronously. I made the progress bar but when I called it before the file merging happening nothing happened.
    How can I do this??
    Thanks

    if you are using desktop im going to asume you are using air. if thats the case, im not to sure however on the web what you have to do is update the progress bar with some action.
    you can also consider using the  
    cursorManager.setBusyCursor();
    and when you are done then
    cursorManager.removeBusyCursor();
    let me know how you make out.
    Miguel

  • How to show the shutdown progression of Solaris 10

    Hi,
    I am just wondering how to show shutdown progress of Solaris 10, the default messages on the console are too little.
    Thanks
    Bin

    i have tried to change /etc/default/init
    first of all it is read only fie.
    then this command /user/dt/bin/dtconfig -kill
    is command is not working.............
    is thr any other process to change the language.
    i have mistaken to chage my language to spanise.
    i want to revert back to english or default.

  • How is best to rip DVDs that I own to my iMac then move them to my iPads so my kids can watch them during a long drive?

    How is best to rip DVDs that I own to my new iMac for viewing on my iPads and iPods (for kids during a long drive)? I've read about a lot of options, but I don't find anything that sounds authoritative on what is the ideal way. There is freeware out there and a bunch of paid options. I don't mind paying as long as I know what I'm getting will work. I've asked a few buddies and haven't gotten any straight answers. It seems like everyone has their own way that has its own set of benefits and issues. Any strong opinions out there on what works well (especially for a rookie)?

    https://discussions.apple.com/static/apple/tutorial/tou.html
    Do not submit software or descriptions of processes that break or otherwise ‘work around’ digital rights management software or hardware. This includes conversations about ‘ripping’ DVDs or working around FairPlay software used on the iTunes Store.
    The backing up part isn't illegal, but in order to do this you need to break copy protection..this part is.

  • How to show the progress bar on forms?

    Hello ALL,
    How should we show the progress bar in our forms screen so we can see how much work is remaining?
    For example if we are performing some task through forms, what code and on which trigger we placed this code in order to show the progress bar that inform us about the task in progress.
    Thanks
    malan

    Hi,
    Shouldn't the oracle forms' support the progress
    bar?
    I prefer to have a code which shows progress bar on
    forms.
    Can some one have this code ?
    ThanksPJC progress bars are shown on the form and forms support progress bar and coding itit's relatively easy.
    If I were you I would take Francois' advice and type in "progress bar" in the lil search box :)
    It's a wonder what a lil search can show you
    Tony

  • How to show the progress indicator

    Hi,
    I need to show progress indicator while search operation. Can any one help me how can i do this.

    Hi Shay,
    Thanks for your reply...
    i have implemented same thing into my application, but its not working properly. when i use Glasspanel into my application page is coming in small.
    Page:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:tr="http://myfaces.apache.org/trinidad"
    xmlns:trh="http://myfaces.apache.org/trinidad/html"
    xmlns:fns="/fnimphiu/sample">
    <jsp:directive.page contentType="text/html;charset=windows-1252"/>
    <f:view beforePhase="#{ESPSMenu.createMenus}">
    <af:document title="ESPS-Accounts Page" binding="#{backingBeanScope.backing_app_AccountsPage.document1}"
    id="ACCOUNTS">
    <af:messages binding="#{backingBeanScope.backing_app_AccountsPage.messages1}"
    id="messages1"/>
    <af:form binding="#{backingBeanScope.backing_app_AccountsPage.form1}"
    id="form1" >
    <af:pageTemplate viewId="/templates/ESPSTemplate.jspx" value="#{bindings.pageTemplateBinding}" id="pt1">
    <f:facet name="menu"/>
    <fns:GlassPane binding="#{backingBeanScope.backing_app_AccountsPage.gp1}"
    id="gp1" busytext="I am Busy" launchAction="#{backingBeanScope.backing_app_AccountsPage.glassAction}">
    <f:facet name="image">
    <af:image id="img1" source="/images/busy.gif" shortDesc="I am Busy"/>
    </f:facet>
    </fns:GlassPane>
    <af:panelGroupLayout layout="vertical"
    binding="#{backingBeanScope.backing_app_AccountsPage.panelGroupLayout8}"
    id="panelGroupLayout8">
    <af:panelHeader text="Accounts"
    binding="#{backingBeanScope.backing_app_AccountsPage.panelHeader61}"
    id="panelHeader61">
    <af:query id="qryId131" headerText="Search" disclosed="true"
    value="#{bindings.CmSubscriberNewViewCriteriaQuery.queryDescriptor}"
    model="#{bindings.CmSubscriberNewViewCriteriaQuery.queryModel}"
    queryListener="#{backingBeanScope.backing_app_AccountsPage.processQuery}"
    queryOperationListener="#{bindings.CmSubscriberNewViewCriteriaQuery.processQueryOperation}"
    binding="#{backingBeanScope.backing_app_AccountsPage.qryId131}"
    resultComponentId="::table22"
    rows="5" maxColumns="2"/>
    </af:panelHeader>
    </af:panelGroupLayout>
    Bean:
    public void glassAction(ClientEvent clientEvent) {
    // Add event code here...
    System.out.println("Inside glassAction");
    GlassPaneHelper.closeGlassPane();
    refreshCurrentPage();
    protected void refreshCurrentPage() {
    System.out.println("Inside refreshCurrentPage");
    FacesContext context = FacesContext.getCurrentInstance();
    System.out.println("Inside refreshCurrentPage context:"+context);
    String currentView = context.getViewRoot().getViewId();
    System.out.println("Inside refreshCurrentPage currentView:"+currentView);
    ViewHandler vh = context.getApplication().getViewHandler();
    System.out.println("Inside refreshCurrentPage vh:"+vh);
    UIViewRoot x = vh.createView(context, currentView);
    System.out.println("Inside refreshCurrentPage x:"+x);
    context.setViewRoot(x);
    public void processQuery(QueryEvent queryEvent) {
    System.out.println("Inside processQuery");
    GlassPaneHelper.openGlassPane();
    invokeMethodExpression( "#{bindings.CmSubscriberNewViewCriteriaQuery.processQuery}"
    , Object.class, QueryEvent.class, queryEvent);
    Help me how can i resolve this.

  • How long should it take me to sync approx 20GB of data to a brand new iPhone? How can I tell if it is still making progress? Will texts, IMs, calls, interrupt it

    How can I tell if it is still making progress? Will texts, IMs, calls, interrupt it and cause me to have to start over??
    Thank you!!

    Should be a couple of hours, max, if antivirus is not in the way.  I've read several times that you might have to actually remove the antivirus software from the PC.
    I'm on a Mac, so I have no info on antivirus or how to locate hidden software on a PC.

Maybe you are looking for