Export Button in share window

Hello,
I have a 3 min. video in FCP 7. Trying to use the share feature to export directly to DVD. Timeline has in/out set, is active, DVD in burner, destination folder set, create DVD is checked. Hmmmm... export button does not react just has a continuous glow. I have not found another topic like this so, I must be the only idiot who can't figure it out. Thanks for viewing!

Hi,
I find out one of the reasons that this could be happening. On clicking the export or the print option that URL is automatically redirected to my http://localhost/.../CrystalReportViewerHandler but this folder does not exists in the folder where I have deployed my application.
The details for accessing this folder is stored in the <my application folder>/WEB-INF/web.xml
The contents of the file is listed below:
  <servlet-mapping>
    <servlet-name>CrystalReportViewerServlet</servlet-name>
    <!-- url-pattern>/CrystalReportViewerHandler</url-pattern -->
    <url-pattern>/crystalreportviewers</url-pattern>
  </servlet-mapping>
Please let me know how can I resolve this issue.
Thanks,
Gourav

Similar Messages

  • Share in FC Pro Studio suddenly won't work - export button just flashes

    Hi,
    Can anyone help?
    I have an urgent project which I need to burn to DVD. I have used the share feature in FC Pro Studio loads of times and it does the job but now the export button just flashes and nothing happens when I click on it.
    Someone helped me a while back by suggesting that there might be a share confict with Compressor or Q Master and that I should delete some library files. Whatever it was worked but that was over a year ago and I cant remember what they recommended but it worked brilliantly.
    Many poeple have told me to use Compressor but I've done that and the DVD wouldn't play on all PCs.
    I'd like to use Share.
    Please can someone suggest a solution. There definitley is one.
    Thanks,
    Mike

    The best workflow is to export a selfcontained quicktime with current settings from fcp, use compressor with the appropriate dvd preset and bring the resulting files (m2v and ac3) in dvdsp and author the dvd there.  Do some searching here and I seem to remember someone has a very simple description of this workflow.  If you had compatibility problems with a dvd on a pc, it would probably be caused by the particular dvd blanks you used.

  • How to insert a pdf export button in a module

    Hi,
    I would propose a way for my students to realize easily a pdf export of one screen. The goal is that students save a file with a drag and drop exercice in order to re-use after.
    So, I tried :
    - Use a shape and execute Javascript, window.print(). I had think to say students to use pdf export instead of print. In my case, print works only in html5. In flash, only the background is displaying.
    - Use the print widget of captivate. It works but it's hard to use it. Student needs to edit properties to choose layout / paper size. Otherwise, some part of the screen are not displaying.
    So I'm looking a solution to insert a pdf export button. Idealy a student clicks up the button and screen will be export in pdf format.  I try this wdiget (http://captivatedev.com/2012/07/25/adobe-captivate-6-x-widget-dynamic-pdf-export/) but we can export only variables.
    Anyone has a good idea to share ?
    Best regards.
    Clément

    Thank you Pat. The thing is that i can´t upload any document to the web server because it belongs to "Jimdo". They give the option with a kind of Plugin and the Pdf comes directly from your browser to be download from the visitors, but it look ugly. That´s why I inserted a link to go to another page (different server) where I can upload documents. I think a need someone who know Jimdo.
    Thank you

  • How can you add your own print and export buttons to the CR viewer toolbar?

    I posted a previous question that was asking how to get around the Information Bar in IE7 when you export and print.  Unfortunately the CR viewer file download code gets blocked by IE7 because the buttons don't directly download the file.  However, I have been able to get a regular button that calls the following code and streams the file to the client and IE7 does not block it. 
    Sub PrintPDF(sender As Object, e As System.EventArgs)
         Dim crReportDocument as ReportDocument
         Dim crExportOptions as ExportOptions
         Dim crDiskFileDestinationOptions as DiskFileDestinationOptions
         Dim Fname as string
         CrReportDocument = New ReportDocument()
         CrReportDocument.Load(Server.MapPath("estactionlist.rpt"))
         Fname = Server.MapPath("./") & Session.SessionID.ToString & ".pdf"
         CrDiskFileDestinationOptions = New DiskFileDestinationOptions()
         CrDiskFileDestinationOptions.DiskFileName = FName
         CrExportOptions = crReportDocument.ExportOptions
         With crExportOptions
              .DestinationOptions = CrDiskFileDestinationOptions
              .ExportDestinationType = ExportDestinationType.DiskFile
              .ExportFormatType = ExportFormatType.PortableDocFormat
         End With
         CrReportDocument.Export()
         Response.ClearContent()
         Response.ClearHeaders()
                    Response.AddHeader("content-disposition", "attachment;filename=test.pdf")
                    Response.ContentType = "application/pdf"
                    Response.Charset = ""
                    Response.WriteFile(Fname)
                    Response.Flush()
         Response.Close()
         System.IO.File.Delete(Fname)
    End Sub
    So here are my questions?
    1. Is it possible to add a custom print control/icon to the CR viewer toolbar?
    2. If one is not possible, then is it possible to override the CR viewer print and export buttons with your own subroutines like the one above?
    I just want my page to look nice and hate to have print and export buttons outside of my CR viewer. 
    Thanks,
    Kevin

    It might be possible to replace the buttons in a windows app since you can retrieve the toolbar as a toolbar object in the winform viewer  ( ToolStrip toolBar = (ToolStrip) crystalReportViewer1.Controls[3]; )  however with a web app, it's a lot more difficult.
    The problem is that that you need to parse the Request string to try and figure out if the print / export button was clicked.  The code below makes the print button disappear if you click it, so you should be able to modify it to call your custom printing / exporting code instead  (You have to do this check in a postback)
            Dim I As Integer = 0
            If Request.Form.AllKeys.Length > 0 Then
                For I = 0 To Request.Form.AllKeys.Length - 1
                    Response.Write(Request.Form.Keys(I).ToString & "<BR>")
                    If Request.Form.Keys(I).ToString = "CrystalReportViewer2:_ctl2:_ctl2.x" Then
                        CrystalReportViewer2.HasPrintButton = False
                    End If
                Next
           End If
    Shawn

  • Could 'export button' show only pdf, and excel only?

    Hai,
    I am using report viewer, it has export button in that header.
    Could 'export button' show only pdf, and excel only?
    So the report just only export pdf only or excel only.
    Technology:
    Asp.net Vs2010
    SSRS2012
    Windows 7

    I found the solution:
    http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/74dad27b-ef7e-4b9b-8922-666b317b3094
    This is the additional code, to hide all type of export.
                DisableUnwantedExportFormat((ReportViewer)sender, "XML");
                DisableUnwantedExportFormat((ReportViewer)sender, "CSV");
                DisableUnwantedExportFormat((ReportViewer)sender, "IMAGE");
                DisableUnwantedExportFormat((ReportViewer)sender, "PDF");
                DisableUnwantedExportFormat((ReportViewer)sender, "MHTML");
                DisableUnwantedExportFormat((ReportViewer)sender, "EXCELOPENXML");
                DisableUnwantedExportFormat((ReportViewer)sender, "WORDOPENXML");

  • Why doesnt my export button work?

    I have PE (premiere elements 12) and i cant access my export button. Im trying to change my videos format so i can upload it on youtube. I NEED HELP ASAP. I have a windows 7 computer.

    Hi,
    This is the Photoshop Elements forum, you will get better answers if you ask in the Premiere Elements forum.
    http://forums.adobe.com/community/premiere_elements?view=all
    Sorry, but I can't move this thread to the other forum.
    Brian

  • Share window says my footage is 100% shared but video is cut off prematurely.

    I finished a segment of a wedding video this week.  I used a compressor bundle to export that includes both the Dolby Digital for DVD (for sound) and the MPEG-2 for DVD (for the video).  The share window says the process is 100% complete.  iMac running Mavericks did not "sleep" or anything during the compression period.  HOWEVER, when I bring the project in to DVD Studio Pro the audio is complete (the audio segment always compresses first [and quickly] anyway) but the video segment is cut off about 2/3 the way through.  I trash and double trash the segments... reshare.... same problem!   Never had any problem with this sharing before.  Full project is 3.6 GB to be burned to a 4.7 GB DVD.  Please advise!!

    Okay, this was an odd fix.  Apparently the m2v was sharing through compressor completely each time.  When I brought it into DVD Studio Pro it was cut off at the same place each time.  I viewed it in the Track tab of my DVD Studio Pro project and observed each time that the m2v was shorter than the AC3 audio in the viewer.  Finally, and I don't know for what reason, I just stretched the m2v clip out and there it all was!!  Hope this helps someone else that's as clueless as I was!

  • "preparing media for share" window stuck

    Sometimes when I export the "preparing media for share" window gets stuck even though the export is successful, but I cannot click on any other window and have to force quit every time.
    Anyone knows how to fix this?

    Pardon the intrusion DJ,
    Hi Ben, congratulations on reaching level 6.
    We've started a party to welcome you to the MVP lounge. Hopefully you will get an email shortly with details and your pass to show the bouncers on your way in. See you soon..
    tt2

  • Share window: "1 warning"

    In the Share window, while trying to export directly to Youtube I see "1 Warning" in yellow font but no explaination. Then upload fails way later.
    Please help. Thank you.

    You don't say if the failure is in exporting the file itself or in connecting to youtube.
    If you are unsure, try exporting a master file. Does it work?

  • In Adobe Premiere Elements 9 What does it mean when my export button becomes dormant.

    Does anyone know how to get the export button to become active again ?

    framlb
    Thanks for the reply.
    I think that the screenshot idea is good. The following should give the how to for posting a screenshot.
    How to post a screenshot in the forum
    But wait a minute...where are you in the export choices File Menu or Share?. Are you doing
    File Menu
    Export
    and looking for Movie?
    There has not been a File Menu/Export/Movie in that area since Premiere Elements 7. All exports in 9.0/9.0.1, see
    what is under the Share header.
    Since Premiere Elements 7, the File Menu/Export/ exists only for saving Titler titles. And to do that you highlight your title file
    in Project and then go to File Menu/Export/Title which will be fully active.
    Please let us know if that is the issue. If you want to export your Timeline content, I can provide more information for
    the Share section choices that I mentioned in post 1.
    Looking forward to your follow up.
    Thank you.
    ATR

  • Multiple buttons on popup window

    Hi Experts,
        Is there any possible way to add 4 buttons on webdynpro poup window.Iam already adding 2 buttons
    submit(yes),reject(No)...is there any way to add two more like cancel,change...
                             if any one could u give solution is grately appreciated thanks in advance...
    Regards,
    kranthi

    Hi Kranthi,
    If you are using standard buttons from window manager ( IF_WD_WINDOW_MANAGER) while generating popup window, we can have maximum of 3 buttons.
    Other way:
    You can add as many buttons you want inside the view and do not use standard buttons.
    Please follow the below steps
    Create a view V_POPUP and add your ui elements
    create 4 buttons YES, NO, CANCEL & CHANGE inside the view and create actions for each button
    Create a window W_POPUP & embed the view V_POPUP inside the window
    Create an attribute GO_WINDOW ( ref to IF_WD_WINDOW ) inside view-->attributes tab
    Now, call the popup window as below
    CALL METHOD lo_window_manager->create_window(
        EXPORTING
          window_name       = 'W_POPUP'
          title             = 'My Popup Window with custom buttons'
          close_button      = abap_true
          button_kind       = if_wd_window=>CO_BUTTONS_NONE " no std buttons
          close_in_any_case = abap_false
        RECEIVING
          window            = wd_comp_controller->go_window
         wd_comp_controller->go_window->open( ).
    Now, if you want to close the popup window inside the CANCEL button, write the below code
              wd_comp_controller->go_window->close( ).
    Hope this helps you.
    Regards,
    Rama

  • Missing Export Button

    I just upgraded to 5.2 and now I do not see the export button on the page when I complete the photo editing, I have to use the menu on top to access the export feature. Is there a switch somewhere to allow this to be turned on and off or was it just removed?

    Hi Jim, I am on Windows 8, I upgraded from 5.1 to 5.2.
    When in the Develop Module, when I would edit a photo, there was a box
    right below the photo and to the right that said export. I clicked that and
    the export box would show up and I could export. It was just very
    convenient to have the link there.
    Thanks
    Randy
    Randy Campbell
    President and Executive Director
    The Nograf Network Inc.
    www.nograffiti.com
    Phone 509-531-1334 - Fax 888-317-9352
    When Good Men Do Nothing, Evil and evil Men Prevail.....
    The Only Thing Necessary for the Triumph of Evil , is for Good Men to do
    Nothing

  • Screen share window size is wrong following Mavericks upgrade

    Hi, I use screen share quite a bit, both over LAN but also over the internet and love the feature. I usually have no problems, but after the upgrade to Mavericks on my iMac and Mac Mini (Both 2011 models), I've started seeing problems with the window size of screen share.
    Going from my Mavericks iMac to my Lion Macbook pro, there's no problem, and my imac shows a screen share window that is the resolution of the MBP (1440x900). But if I do screen share from my iMac (2550x1440), to my Mac mini (Which is attached by HDMI to a HDTV at 1920x1080), the window gets continuously smaller on each session, and it is now stuck at what I would guess is 320x240.
    How can I change this size? I assume is has something to do with Mavericks horrible resolution handling, as I don't get a list of resolutions over HDMI anymore in System Preferences, which was nice and easy in pre-Mavericks OS'.

    Thanks, using the zoom button did actually improve quite a bit. It is not full resolution, but almost twice the size it was before and definitely usefull, thanks! Never though about doing that..
    Scaling manually doesnt work over the current max window resolution though.

  • Where's my "export" button ?

    I am using an iPad 2 with GarageBand installed on it.  I want to share my songs.  Every help site says to click the "export" button in the lower left hand corner on the "My Songs" screen.  I have no buttons at all there.  Just a + sign.  Please help??

    tcband wrote:
    Thank you so much!
    you're welcome
    tcband wrote:
    Where did you read this information, because I sure couldn't find it!
    to be honest, there are only two options there, and you said the "+" wasn't it, so I opened up GB and tapped the only other choice :–)>
    tcband wrote:
    is possible to share a song to something like Dropbox or Edmodo?
    you'd have to do that manually: export the song to your computer and U/L it the same way you U/L other files to DropBox, etc

  • OAF Export button fetching data in one column - view object using union all

    Dear All,
    Export button showing data in one column from  view object,
    View object is based on mulitple queries with union all ,
    Please let me know the solution for this issue.
    Thanks
    Maheswara Raju

    Maheswara Raju,
    As per my understanding you are not able to export all the View Attribute using export Button. Only the attribute which is used with the item/region will get exported.
    There are few work around in case if you want to export the column without showing on OAF Page. Let me know.
    Cheers
    Gyan

Maybe you are looking for

  • How to disable external display (s-video adapter)

    My problem is this: I have the new iMac in my office and I have my widescreen TV (CRT non-HDTV) on the other side of the wall in the living room. I recently purchased the Apple video adapter so I could run a s-video cable through the wall to my TV. I

  • Realtek RTL8188CE problem

    Hi all,   I'm running into problems with the wifi card on my new Christmas present.  It's a Realtek RTL8188CE.  When I booted the Arch netinstall image I could get it to associate to the access point but it wouldn't pick up an address.  I ended up do

  • HT2928 My "sensor" button doesn't light up

    When I start my walk, my sensor button isn't lit.  Also there is no start screen

  • How to use IMAQ to read out custom information in .tiff file?

    Currently, our lab use AFM to scan sample surface. The result was saved as .tiff file. Here are lots of information stored in the .tiff file, such as scan range, tip offset... But when I try to use IMAQ to load such .tiff file. I just get the image,

  • Server to server smtp auth

    Hello, I have a Messaging 6.x (JES 2005Q4 version) installation. All outbound email must go through an external MTA so I added a smartrelay (daemon in tcp_local channel) and all works ok but the external MTA requires authentication so the question is