FLV. not working in SWF within HTML page

I have created a SWF presentation which contains several videos as FLVs. The videos are uploaded to a folder on the clients server.
The exported SWF and HTML files of the presentations worked perfectly when hosted on my local machine but when sent to the client, who uploaded to their own server, the SWFs ran but would not play the FLV files within. When they changed the HTML files to HTM they worked perfectly.
However...when they embedded the pages into the content management system the use it required that the pages were reverted back to HTML, therefore the FLVs are not working again.
The 'still' frame appears where the FLV should be, but the skin and the video itself does not load.
Does anyone have any idea why this issue has occurred?
Thanks in advance.

@Ned
Not sure about the folder structure of their site, to be honest they've been a nightmare client from day one so getting information like that out of them has been nigh on impossible.
The flv files are all in a folder together and these are linked from the swf with this link structure: http://www.sitename.org.uk/folder/video.flv
I'm not entirely sure how their CMS is structured. I was throwing this question out on the off chance that someone had seen a similar instance where HTML/HTM file types had affected functionality.

Similar Messages

  • Spry tool tip does not work in template or child pages within an editable region. Why not?

    Ok. so I am getting pretty frustrated. I take the time to learn how to use CSS and to create a template page for a Contractor Site (www.ContractorInsurance.net). The idea is to create a page that I can use for different classes of Contractors...right?
    Then I get all happy about being able to insert ToolTip onto pages to help the user. Great!
    LIfe to turn to Sorrow after nearly five hours of searching for a "eeking" answer.
    So what good does it do to have an Editable region to update if we cannot have the flexibility to insert a tool tip on child pages?  Ok so the fast solution is to what... Have a question mark image, insert another apDiv, name it toolTip_Not and provide it with a show=hide behavior?
    RRRRRrrr...
    This really sucks not being able to find a solution within a reasonable amount of time.

    I have tried thank you. However...it is still not working.
    www.ContractorInsurance.net/course_of_construction.php
    The error message is "Making this change would require code that is locked by a template translator"
        Re: Spry tool tip does not work in template or child pages within an editable region. Why not?
        created by altruistic gramps in Spry Framework for Ajax - View the full discussion
    If you have a look at the following simple document with a tooltipTooltip trigger goes here.
    Tooltip content goes here.
    you will notice that a couple of lines have been placed in the HEAD section of the document. When using DW templates, the HEAD section is usually not editable, hence the error mesaage. By default, your template should have an editable region in it just before the closing tag. It looks like this: <!-- TemplateBeginEditable name="head" > <! TemplateEndEditable --> Dreamweaver should be able to find that editable region and insert the
    <script> tag there automatically. Because you don't have an editable region like that in the <head>, open the master template, and paste the code above just before the closing </head>
    tag. Gramps
    Edited to remove personal data

  • ISight's not working on flash based web page...

    Hello,
    I work as a lecturer for University of Zirve from Gaziantep in Turkey. We have a learning management system with a virtual class. Our class is based flash. . The iSight camera is not working on our virtual class page. In older version MAC OSX 10.6.4, it was work successfully, but in newer version (we tried v10.6.8 and v10.7.2, -in these versions i can use skype video call-) it isn't working. What can be the problem?
    PS. I'll attach a screenshot from our virtual class...

    (1) Verify that you are using the latest Flash version that works with you system:
          http://www.adobe.com/software/flash/about/
    If you need to update, use your Mac's Disk Utility to repair permissions.  Then follow Adobe's instructions here:
    http://kb2.adobe.com/cps/908/cpsid_90893.html
    Be sure to uninstall your current Flash player before installing the new one.
    Repair permissions again immediately following installation of the updated Flash player.
    (2) Be aware that the current Flash Player Preferences can  be configured in your Lion Mac's System Preferences...    These settings may be blocking Flash on a system-wide basis.
    (3) Individual Flash settings are still configured in the same way as older versions: http://tinyurl.com/5kjv3
    Message was edited by: EZ Jim

  • SSO is not working for SAPGUI for HTML

    Hi Experts,
    We have configured SSO between EP and ECC.SSO is working fine for SAPGUI for windows.But it is not working for SAPGUI for HTML.
    Workflow iViews are getting error.
    "SWITCH to HTTPS does not occur."
    The domain names are different for EP and ECC.
    Please let me know ,is there any settings need to check.
    Regards,
    Bala.

    Hi
    The point here is that your Portal server is on a different domain, so you have to configure the logon ticket issuer (portal) to generate logon ticket for multiple domains.
    http://help.sap.com/saphelp_nw04s/helpdata/en/a0/88a340fa432b54e10000000a1550b0/frameset.htm
    Best regards
    Johann

  • ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.

    ExternalInterface not working when swf file is embed inside a dynamically cloned DIV element.
    It seems that flash movie is identifed as 'undefined' inside document.
    //a statically placed div
    var staticdiv=document.getElementById('PropDiv');
    //dynamically placed div with object tag
    var dynDiv =staticdiv.cloneNode( true );
    var xD=50;
    var yD=50;
    if(dynDiv)
    dynDiv.style.display  = "block";
    dynDiv.innerHTML="<object classid=" + "\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\"" + "codebase=" +
    "\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"" + "width=" + xD + "height=" + yD +
    "id=" + "\"external\"" + "align=" + "\"middle\"" + ">" +
                    "<param name=" + "\"allowScriptAccess\"" + "value=" + "\"sameDomain\"" + "/>" +
                    "<param name=" + "\"movie\"" + "value=" + "\"external.swf\"" + "/>" +
                    "<param name=" + "\"quality\"" + "value=" + "\"high\"" + "/>" +
                    "<param name=" + "\"wmode\"" + "value=" + "\"transparent\"" + "/>" +
                    "<param name=" + "\"bgcolor\"" + "value=" + "\"#ffffff\"" + "/>" +
                    "<embed src=" + "\"external.swf\"" + "quality=" + "\"high\"" + "wmode=" + "\"transparent\"" +"bgcolor=" + "\"#ffffff\""
    + "width=" + xD + "height=" + yD + "name=" + "\"external\"" + "align=" + "\"middle\"" + "allowScriptAccess=" + "\"sameDomain\"" +
    "type=" + "\"application/x-shockwave-flash\"" + "pluginspage=" + "\"http://www.macromedia.com/go/getflashplayer\"" + "/>" +
                    "</object>";
       dynDiv.style.top=50;
       dynDiv.style.left=100;
    document.body.appendChild(dynDiv);
    In above situation communication is not establised when a  funtion which is retruning boolean is called from flash using
    ExternalInterfcae.call.The return value of this function is getting as false inside flash.But the value is true in javascript.
    if (navigator.appName.indexOf("Microsoft") != -1) {
       return window[movieName];
      } else {
       return document[movieName];
    window["external"] is returning as 'undefined'.
    Please give a  solution to solve this.

    Note that you have different file names for the object (images/banner.swf) and the embed (images/banner1.swf)
    You also placed the embed in the middle of a param tag and nested all param tags.
    Because you didn't include a MIME type and the object doesn't have a classid for an ActiveX control for IE, I'm not sure what Firefox will be using.<br />
    The object doesn't have a data attribute to specify the file.<br />
    A separate embed is only needed when you specify a classid in the object.
    <pre><nowiki><div class="bannercontainer">
    <object width="940" height="445" type="application/x-shockwave-flash" data="images/banner.swf" >
    <param name="wmode" value="transparent" />
    <param name="movie" value="images/banner.swf" />
    </object>
    </div></nowiki></pre>

  • GetURL not working when swf is loaded into another swf

    Ok, I need some help for something relatively simple which
    for some reason I've not been able to find any information on at
    all?
    Hopefully it will be something easy to fix.
    Essentially I have the following:
    my main movie "Home.swf"
    another movie "Sub.swf"
    I've loaded "Sub.swf" into "Home.swf" via an empty movieclip.
    Within "Sub.swf" I have some links which when clicked call
    getURL and open a HTML page in the browser.
    But for some reason the getURL isn't working and I believe
    its because the getURL is called from a loaded movie within
    "Home.swf".
    I've tried changing the actionscript to:
    _root.getURL('/mypage.html');
    _parent.getURL('/mypage.html');
    but neither (_root / _parent) seems to work?
    Need help here please.
    Many thanks.
    Kind regards,
    M.

    Hi kglad,
    Yes the button is definitely firing ok.
    In the "Sub.swf" movie, on the second frame of the timeline
    (the first frame is some preloader code) there is the following
    code:
    imgMC.mascara.onPress = function() {
    //trace('mc[activo] = ' + mc[activo]);
    switch(mc[activo])
    case _level0.imgMC.MC0:
    trace('0 - ' + mc[activo])
    break;
    case _level0.imgMC.MC1:
    trace('1 - ' + mc[activo])
    break;
    case _level0.imgMC.MC2:
    trace('2 - ' + mc[activo])
    break;
    case _level0.imgMC.MC3:
    trace('3 - ' + mc[activo])
    break;
    case _level0.imgMC.MC4:
    trace('4 - ' + mc[activo])
    break;
    case _level0.imgMC.MC5:
    trace('5 - ' + mc[activo])
    break;
    If I run this movie in Flash (ctrl-enter) then the trace
    works fine.
    But the trace stops working when I run the main "Home.swf"
    movie in Flash (ctrl-enter) when the "Sub.swf" is loaded into an
    empty movie clip.
    And when I change the trace for a getURL and test in a
    browser it still doesn't work?
    What do you reckon?
    Thanks.
    M.

  • Linking .swf to html page using a href ......

    I have attempted to get an anwser to this on the Flash forum, but it is a jungle over there.... I have attempted to link a swf to a web page on my site using the a href property; the page opens in Safari and Firefox; however, in IE7 the page shows at the bottom of the browser, but nothing happens on mousedown. I fear it may have to do with the way IE handles the wmode=transparent property...  I have tried using an invisible button in Flash, but it covers up the animation every time...
    This is the code for the two button graphics (movie clips):
    <table style="width: 100%;" border="0">
    <tbody>
    <tr>
    <td align="left"><a href="/index.php/design-samples.html">
    <object width="220" height="120" data="/Flash/designs_ad.swf" type="application/x-shockwave-flash">
    <param name="quality" value="best" />
    <param name="wmode" value="transparent" />
    <param name="src" value="/Flash/designs_ad.swf" />
    </object>
    </a></td>
    <td align="right"><a href="/index.php/recent-work.html">
    <object style="width: 220px; height: 120px;" width="220" height="120" data="/Flash/recentwork_ad.swf" type="application/x-shockwave-flash">
    <param name="quality" value="best" />
    <param name="wmode" value="transparent" />
    <param name="src" value="/Flash/recentwork_ad.swf" />
    </object>
    </a></td>
    </tr>
    </tbody>
    </table>

    Hi
    The reason it will not work in IE is because IE uses a different form of code to play swf's/flv's, (application vs's plug-in).
    Firefox and Safari use - type="application/x-shockwave-flash", but IE uses - classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000".
    If you do a standard insert - media - swf from the main menu bar in dreamweaver this will insert the correct code for you.
    PZ

  • .flv not working on webpage

    Tried everything I know and some.  Read thru some forums and really no answer.  It must be something simple I am missing.
    I created These pages all have a flash movie on them (.flv) and all work.
    http://www.sd22.bc.ca/Career_Programs/gallery.html
    http://www.sd22.bc.ca/international/video.html
    http://www.sd22.bc.ca/strong_start_movie.html
    I use the exact same coding method to insert the movie into this page, and it does not work online
    http://www.sd22.bc.ca/~abed/teacher.html
    Video is supposed to show just below resources heading.
    Please Help!!! Thank YOU

    This page comes up blank and this is the player SWF.
    http://www.sd22.bc.ca/~abed/FLVPlayer_Progressive.swf
    Some things to check:
    Did you upload Scripts folder and FLV files to the server?
    Are you sure the web server has support for both FLASH and SWF Mime types (check with your host)?
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Javascript not working in swf output

    I am working on a project where the quiz requirements are quite unique and not all that logical, but it's what the client requires...
    I have a lot of courses ("lessons") for this project. I'm using a fully custom quiz for each lesson. Because of the sheer number of courses, and the unique requirements, I am trying to leverage javascript for this project as much as possible.
    I must publish both HTML5 and Flash versions. While not contractually required to publish a swf version, I am pretty certain that having both formats available will avoid having to deal with all of the browser issues down the road (already seeing issues in IE 11 on the client's PC).
    So for each quiz question slide I have smartshapes which are acting as clickable text captions, like this:
    Question text....
    A. Answer choice a
    B. Answer choice b
    C. Answer choice c
    D. Answer choice d
    Each of the above answer choices is a smartshape button that is set to 'Execute Javascript' on click. In the javascript panel for each I have the following:
    CORRECT_ANSWER = 'q1b';
    ANSWER_CHOICE = (event.target) ? event.target.id : event.srcElement.id;
    evaluate_answer(ANSWER_CHOICE, CORRECT_ANSWER);
    In an external 'quiz.js' file I have the evaluate_answer function, which looks like this:
    *********** quiz.js *************
    var evaluate_answer = function (answerChoice, correctAnswer) {
      var answerChoice = window.cpAPIInterface.getVariableValue("ANSWER_CHOICE");
      var correctAnswer = window.cpAPIInterface.getVariableValue("CORRECT_ANSWER");
      if (answerChoice == correctAnswer) {
       cp.show('fb_q1_correct');
       cp.show('fb_q1_correct_next');
       cp.show('q1_answer_disabler');
      } else {
       cp.show('fb_q1_incorrect');
       cp.show('fb_q1_incorrect_next');
       cp.show('fb_q1_incorrect_remediate');
       cp.show('q1_answer_disabler');
    *********** END quiz.js *************
    The above works great in HTML5 output but not in the swf version. It looks like the swf version can't handle/pass the event.target, but that's just a guess.
    Any ideas?

    Hey again all,
    The specific code importing the username isn't actually all that important, it's more of test to make sure that Javascript will actually work. I have a lot more code that needs to be processed as well, I'm using this as an example before I tackle the actual interworkings of the script. Therefore, I can't use a workaround, such as a system variable in the hyperlink, to pass the username.
    I've now tried countless variations of methods of trying to run the JavaScript so far, including the ways that all of you have recommended. The only way the script will run is by my saving the file as a .htm and including an alert within the script in either the .htm file or in the .js file and calling from within the .htm. I haven't been able to get the process to run at all by including as an On Enter page action or as a .swf or by excluding the alert().  Can any of you get a Captivate 8 project with JavaScript to work as .swf alone on your server? Why does that alert have to before the setVariable in order for it to work in htm? I've changed the global security for Flash; is there another setting that I'm maybe missing?
    Thank you all again for help. I'm completely stumped by this one!

  • Binding not working when returning to same page

    Hi, Im developing a portlet that access some data from MYSQL.
    I have a simple page with several textfields, all with bindings to a javabean object that is a property of SessionBean1 bean, so it is a Session Scope bean.
    In that page I put some buttons like next, prior, etc. to navigate between all registers of my DB. I added some code to event button like this:
    public String bnext_action() {
    // get sessionbean
    SessionBean1 SBean1 = (SessionBean1)getBean("SessionBean1");
    // navigate to next register in database
    // ProdBean is my property bean that get values from database
    // bindings are like this : text="#{SessionBean1.prodBean.codigo}
    SBean1.getProdBean().GetNextReg(SBean1.getModuloIdx());
    // set current register index
    SBean1.setModuloIdx(SBean1.getProdBean().getIndex());
    return null;
    The problem is that when I get next register of database, bindings are not reflecting new values, always holding first values. I tried to force things by setting values in pre-rendering face manually with setText method of textfields but nothing happens.
    As Im a newbie in Java yet I really don't undestand this, I have readed all JSF life cycle documention and portlet life cycle docs but couldn't find an answer. Why binding is not working?

    Thanks for this.  Unfortunately now I have tried with Standard actions the links do not work at all.  The links provided were created with spaces so contained within the links are lots of '%20'. e.g. :
    PCI%20DSS/UWE%20PCI-DSS%20Quick%20Reference%20guide.pdf
    for some reason when creating the links with standard actions, when the project is published the links have changed to contain 25s  e.g.
    PCI%2520DSS/UWE%2520PCI-DSS%2520Quick%2520Reference%2520guide.pdf
    no idea why this is happening.

  • F1 Help Perfomance Assistant not working - ITS SAP GUI HTML

    Hi All,
    when using a Transaction in SAP Portal i like to use the F1 Help. Transaction is displayed by ITS SAP GUI HTML. I have the option to display the Help in:
    - Modal Window <-- this works
    - Performance Assistant <-- not working
    When pressing F1 an error message appears saying: "Expression_not_Num" while using the perfomance assistant.
    - Is there a configuration missing? Is something not installed?
    - Can i change the default personalization setting for help for all users to modal window?
    Any ideas?
    Regards
    M. Stanka

    Hi Michael Stanka ,
        i got same issue from last week onwards.. If press F1 ,it displays like "Page cant be displayed". I searched in forums also but i couldnt get clear point. U posted ur issue was resolved.. Could u plz provide the steps how to solve?? My mobile no:09566855978(India-Chennai)

  • Javascript function not working in template-based html files

    Does anyone have any insight as to why the following function works only in the .dwt file but not in the related html files?
    *Note: it only works in the dwt file if I change the path of:
    var imgs = new  Array('images/header1.jpg','images/header2.jpg','images/header3.jpg');
    to
    var imgs = new  Array(../'images/header1.jpg',../'images/header2.jpg',../'images/header3.jpg');
    but with the paths reading correctly (as below) in the html files it still doesn't work...
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    var imgs = new Array('images/header1.jpg','images/header2.jpg','images/header3.jpg');
    var delay = 7500;
    var counter = 0;
    function preloadImgs(){
      for(var i=0;i<imgs.length;i++){
        MM_preloadImages(imgs[i]);
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
      MM_swapImage('rotator', '', imgs[counter++]);
      setTimeout('randomImages()', delay);
    </script>
    </head>
    <body onLoad="preloadImgs();randomImages()">
    Any help would be appreciated!
    Andy

    Wow - now I have a real doozy for you. That duplicate function has generated itself all on its own. The script in the template file is:
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    // Comma separated list of images to rotate
    var imgs = new Array('images/header1.jpg','images/header2.jpg','images/header3.jpg');
    // delay in milliseconds between image swaps 1000 = 1 second
    var delay = 5000;
    var counter = 0;
    function preloadImgs(){
      for(var i=0;i<imgs.length;i++){
        MM_preloadImages(imgs[i]);
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
      MM_swapImage('rotator', '', imgs[counter++]);
      setTimeout('randomImages()', delay);
    </script>
    As you can see - no duplication.
    For some inexplicable reason, this is being added in to all the html pages based on the template:
    MM_swapImage('rotator', '', imgs[counter++]imgs[i]);
    function randomImages(){
      if(counter == (imgs.length)){
        counter = 0;
    Which explains why it works in the template file but not in any the html files. Of course, because the code is not in an editable region, I can't remove it manually from the html files. Have you ever heard of code generating itself in this manner? Or how to solve it?

  • Flash Text not displaying in GoLive CS2 HTML page

    Greetings All!
    I have created some simple scrolling text in Flash Pro 8. I published the SWF into my GoLive CS2 web site. I can see everything when I open the SWF file or the accompanying HTML file, but when I place the SWF into an HTML page in GoLive, the text doesn't appear. The arrows to control the text are there, but there is no text. Has anyone else come across this? Any ideas?
    Thanks!
    Mike

    There is something wrong with how it is accessing the text in the Flash file itself. When I downloaded the file, it gives me an error stating it cannot find the textOurStory.txt file.
    You may need to change the link so the flash (embedded at a different address) can find it. Something like "new/flash/textOurStory.txt" should do it, I think (maybe an absolute path might work better http://www...)

  • Export Button not working properly in custom OAF page.

    Hi,
    I have a custom page with a table region is there. There is an export button which exports the rows in an excel sheet.
    But it is not working properly, as all the rows are not getting extracted.
    Properties set for the export button::
    Export all rows :: False
    Any sugestion is highly appreciated.
    Regards,
    Arindam.

    Hi Arindam,
    Refer below links.
    Mukul's Oracle Technology Blog: Implementing Export Button Functionality Programatically
    http://dilipoaf.blogspot.in/2013/02/export-selected-rows-data-functionality.html
    Thanks,
    Dilip

  • Problem when i put swf into html page

    Hi, My swf is working:
    http://dianecollins.com/sean_movieclip.swf
    But, when I put it into an html page, it doesn't work.
    http://dianecollins.com/sean/
    I'm looking at the contact button on the top right - on the
    swf it slides over to the left when you rollover, but on the html
    page, it doesn't work.
    Any suggestions?
    Thanks!

    simpler remedy:
    http://activecontent.blogspot.com
    "coldMiner" <[email protected]> wrote in
    message
    news:eessog$gu0$[email protected]..
    > on ie you have to click to activate flash.
    >
    > remedy:
    >
    http://blog.deconcept.com/swfobject/

Maybe you are looking for

  • IPhoto '11 Quits Unexpectedly and Will Not Open!

    Hello Gang! I recently had a bit of a hard drive issue and had to get a new one.  In doing so, I now have to reinstall all my software.  I was able to move my settings and files over but not the applications.  I've reinstalled iLife '11 and and tryin

  • Line-In not working as it should

    Hey, I have had a strange problem i using my headset fine on the line-in on my imac then all of a sudden it just stopped working. At first i thought it was the headset but after trying other headsets they won't work ethier anyone get any ideas as to

  • Final Cut Pro wont export after Maverick update!!!!

    HI guys, I am facing a painful trouble of not being able to export anything from FCPX after I updated to Maverick. When I click Share/Export Movie nothing happens, not even a blink. Then I tried different exporting options like Apple Devices, Media B

  • PDF issue with iBooks, iPad in iOS 5

    Is there anyway to enable hyerlinks in a PDF when viewing in iBooks or Safari iOS 5? I didn't know if this was an option somewhere in settings.app or a general limitation of PDFs on the iPad. Any thoughts?

  • Production Order Interface

    Hi All, I am having 2 questions in regards to the interface development: 1. I have to read and validate following details from the production order and prepare a file to write it in to the Network directory.     -> Get all production order from (Tabl