Exporting Flash Issues

We are long time Premiere users (7 + years now) and have had lots of stability with CS3 over the past two years.  This past week we upgraded to CS4 and now have an issue with exporting our flash files for web playback.
The color black in our flash exports used to match our website black so the resulting video online blended well and looked seemless on our website. However, the export now has the black faded and it does not blend at all online when the video presents a black screen.  Any ideas on how to correct this?  It looks good in our output preview but no good when completed.  The resulting export with CS4 vs. CS3 is noticeably different. CS3 had a nice clear and crsip video while CS4 looks a little faded and the color doesn't look as good.  Anyone know if this is a known issue?
We have a safe harbor built tsunami computer and we also use the Matrox acceleration.  All of our Matrox software is updated for CS4.1 and is working properly.  The issue here is exporting a clean video.  ANYONE know if this new 4.2 update will address these issues?
Our computer has the following specs:
1 ASUN5450004 P5E3 Deluxe/WiFi-AP@n Motherboard      
1 INTN5600065 Intel® Q6700 Core 2 Quad 2.66GHz   
2 ALLN5180049 DDR3 1333 2GB Memory                  
1 DIAN5300003 Radeon HD3870 512MB PCIe            
1 STCN5460001 3-Port PCIe FireWire Card           
1 CLAN5110005 Sound Blaster Audigy SE             
1 PION5410023 Pioneer BDR-202 Blu-Ray DVD Burner 
1 PION5410024 Pioneer BDC-202 Combo Drive 
1 SEAN5160011 500GB Barracuda 7200.10 SATA 3Gb/s   
2 SEAN5160012 750GB Barracuda 7200.11 SATA 3Gb/s  
1 MSOI0900013 Windows XP Professional         
1 MTXN5010064 RT.X2 w/ Adobe Premiere Pro CS3 now updated to CS4 and Matrox updated too.
Thanks for the help.  
Regards,
   Michael

Figured out the problem.  We had to de-interlace our titles.  The proper way of doing this since CS4 does not do it easily via the AME, is to right click the title, choose field options and then de-interlace.  A whole bunch of digging into this forum gave me the idea for the fix. 

Similar Messages

  • I am having trouble viewing iStore. It appears as if its a Flash issue, as several minutes after logging in to iStore I get a non-flash page of iStore in my iTunes window. I have re-installed everything and tried opening all ports in router....any ideas?

    I am having trouble viewing iStore. It appears as if its a Flash issue, as several minutes after logging in to iStore I get a non-flash page of iStore in my iTunes window. I have re-installed everything and tried opening all ports in router, and used msconfig to bring up each service individually to see if there is an effect.Flash and iTunes have been re-installed  ...any ideas?

    I agree. I don't rely on iCloud as a backup, that is what I have my portable hard drive for. Its 500 GB so I can hold my entire iTunes library several times over on it. I have all my movies on my hard drive, but somehow "The Mist" got deleted off of my hard drive, so I figured "Well, the option to redownload an already purchased movie is available through iCloud, I'll just do that!"
    And permissions and download availability have nothing to do with it, the movie's still there, it still allows me to redownload it. The only problem is when I click download, I get that message.
    And nobody else uses my computer, but I do have multiple accounts authorized on it. Even still though, I am attepmpting to download it through the account I purchased it under. :/

  • KIMYONG : basic  Export / Attachment issues  가이드

    Purpose
    ======
    이 문서는 Support Analayst / DBA에게 Export /Attachments issues 발생시
    조치할수 있는 기본적인 Troubleshooting Guide를 소개하고자 합니다.
    Explanations
    ======
    Export Analysis
    Turn on export debug,
    Go to Help -> Diagnostics -> Examine
    Set Block = GLOBAL
    Set Field = FND_EXPORT_DEBUG
    Set Value = TRUE
    Then export and observe the messages that are generated during the export process
    Important Parameters.
    set serveroutput on
    declare
    plsql_agent varchar2(200);
    web_server varchar2(200);
    dad varchar2(200);
    gfm_agent varchar2(200);
    protocol varchar2(200);
    database_id varchar2(200);
    jsp_agent varchar2(200);
    check_enabled varchar2(200) ;
    begin
    plsql_agent := fnd_web_config.plsql_agent ;
    dbms_output.put_line('PL SQL Agent ->'||plsql_agent);
    web_server :=fnd_web_config.web_server ;
    dbms_output.put_line('Web Server ->'||web_server);
    dad := fnd_web_config.dad ;
    dbms_output.put_line('DAD ->'||dad);
    gfm_agent := fnd_web_config.gfm_agent ;
    dbms_output.put_line('GFM Agent ->'||gfm_agent);
    protocol := fnd_web_config.protocol ;
    dbms_output.put_line('Protocol ->'||protocol);
    database_id := fnd_web_config.database_id ;
    dbms_output.put_line('Database Id ->'||database_id);
    jsp_agent := fnd_web_config.jsp_agent ;
    dbms_output.put_line('JSP Agent ->'||jsp_agent);
    check_enabled := fnd_web_config.check_enabled('FND_GFM.GET') ;
    dbms_output.put_line('FND_GFM.GET ->'||check_enabled);
    end ;
    Examining SQL Trace for the sequence of events that happen in the Export process
    SQL >alter session set events '10046 trace name context forever, level 12';
    Then run the following block of pl/sql code
    set serveroutput on
    declare
    db_file number;
    mime_type varchar2(255) :='text/plain' ;
    out_string varchar2(32767) :='Just some plain text that is stored' ;
    web_server_prefix varchar2(500);
    url varchar2(500);
    begin
    db_file :=fnd_gfm.file_create(content_type =>mime_type,program_name=>'export');
    fnd_gfm.file_write_line(db_file,out_string);
    db_file :=fnd_gfm.file_close(db_file);
    url:=fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,db_file,TRUE);
    dbms_output.put_line(url);
    end;
    Exit the sql plus session and study the sql trace file as being there in USER_DUMP_DEST
    $ ls -lrt
    Refer to Note # 282806.1 Performance Tuning Approach for Oracle(8.1.6 - 9.2.0.5) on
    UNIX for more information on how to obtain sql tracing .
    Example of download URL :-
    http://finance.sriratu:8001/pls/SR/fndgfm/fnd_gfm.get/776537528/202595/fnd_gfm.tsv
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/820067633/298941/Screen_shots.doc
    Example of Upload Attachment URL:
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A1548EC73FFCF6EADB4F7826B217EDCE92719B62BDA9FF0AF193DC7BC64A2C60AFC5123B50C8C78F9E6807695ED9A7FE7AE87F8E49E80807223756706B3FC777F645FA5A07C7A467B
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A5525987DB9C8D9785657497306AAE1FD25D1CC352ADF38DFD69C21355096CBC38D285B083D24F261701F5F278E199044D603A5A8B1D588292099782AC4AF3D97E23B95936809D280
    To check the row being created in the table FND_LOBS during Export or Attachment
    SQL>create table fnd_lobs_bak as
    select file_id,file_name from fnd_lobs ;
    SQL>select * from fnd_lobs
    where file_id not in
    (select file_id from fnd_lobs_bak );
    SQL>select * from fnd_lobs
    where to_char(upload_date,'DD/MM/YYYY')=to_char(sysdate,'DD/MM/YYYY')
    Analysis on an Attachment
    Help -> Diagnostics -> Examine
    Block : DOCUMENT_HEADER
    Field : ATTACHED_DOCUMENT_ID
    Note down <Value>
    SQL>select document_id
    from fnd_attached_documents
    where attached_document_id=<Value>;
    SQL>select media_id
    from fnd_documents_tl
    where document_id=<document_id>;
    SQL>select *
    from fnd_lobs
    where file_id=<media_id>;
    SQL>select *
    from fnd_documents_short_text
    where media_id=<media_id>;
    from fnd_documents_long_text
    where media_id=<media_id>;
    SQL>select *
    from fnd_documents_long_raw
    where media_id=<media_id>;
    FND_LOBS stores information about all LOBs managed by the Generic File Manager (GFM).
    Each row includes the file identifier, name, content-type, and actual data. Each row also
    includes the dates the file was uploaded and will expire, the associated program name and
    tag, and the language and Oracle characterset.
    The file data, which is a binary LOB, is stored exactly as it is uploaded from a client browser,
    which means that no translation work is required during a download to make it HTTP compliant.
    Therefore uploads from non-browser sources will have to prepare the contents
    appropriately (for instance, separating lines with CRLF).
    The program_name and program_tag may be used by clients of the GFM for any purpose,
    such as striping, partitioning, or purging the table if the program is de-installed.
    They are otherwise strictly informative.
    These columns and the expiration date are properly set when the
    procedure FND_GFM.CONFIRM_UPLOAD is called. If not called, the column
    expiration_date remains set, and will eventually be purged by the procedure
    FND_GFM.PURGE_EXPIRED.
    FND_DOCUMENTS_LONG_RAW stores images and OLE
    Objects, such as Word Documents and Excel
    spreadsheets, in the database. If the user elects
    to link an OLE Object to the document, this table
    stores the information necessary for Oracle Forms
    to activate the OLE server, and it saves a
    bit-mapped image of the OLE server's contents.
    If the user does not elect to link an OLE Object,
    the entire document will be stored in this table.
    FND_DOCUMENTS_LONG_TEXT stores information about
    long text documents.
    FND_DOCUMENTS_SHORT_TEXT stores information about
    short text documents.
    To know which Forms provide Attachment feature
    SQL>select *
    from fnd_attachment_functions
    where function_name like '%FND_%';
    Examining FND_LOBS tablespace
    SQL>select tablespace_name
    from dba_tables
    where table_name='FND_LOBS';
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE';
    SQL>select a.tablespace_name TABLESPACE_NAME , a.bytes TOTAL_BYTES,
    sum(b.bytes) FREE_BYTES , count(*) EXTENTS
    from dba_data_files a, dba_free_space b
    where a.file_id = b.file_id AND A.TABLESPACE_NAME=<TABLESPACE_NAME>
    group by a.tablespace_name, a.bytes
    order by a.tablespace_name ;
    Examing Profile Option value
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE' ;
    SQL>select b.profile_option_name,level_id,profile_option_value
    from fnd_profile_option_values a, fnd_profile_options b
    where a.application_id=b.application_id
    and a.profile_option_id=b.profile_option_id
    and b.profile_option_name in ('FND_EXPORT_MIME_TYPE') ;
    Procedure FND_GFM.GET ANALYSIS
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/560074272/298951/fnd_gfm.doc
    access
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',1)+1,instr('/560074272/298951/fnd_gfm.doc','/',2)-2) access from dual ;
    560074272
    file_id
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',2)+1,(instr('/560074272/298951/fnd_gfm.doc','/',-1)-instr('/560074272/298951/fnd_gfm.doc','/',2)-1)) from dual ;
    298951
    Profile Options being referenced in the package FND_GFM
    FND_EXPORT_MIME_TYPE
    FND_NATIVE_CLIENT_ENCODING
    Lookup Type Being used in the package FND_GFM
    SQL>select tag,lookup_code,meaning
    from fnd_lookup_values_vl
    where lookup_type='FND_ISO_CHARACTER_SET_MAP';
    Reference
    ========
    Note 338651.1

  • Samsung Note 3 Camera and Flash Issues

    I have a Samsung Note 3 that is only a few months old and the Camera continues to not function correctly.
    Android 4.4.2
    * Flash will randomly turn off and I will need to restart my device to get it working again.
    * Pictures taken with camera are slow and very often out of focus.
    The camera flash issue is something most people might not notice until they absolutely need the flash.
    The camera taking a long time to focus/take pictures I'm sure a lot of people have seen on a more regular basis.

        Hello Tazman4u, a working phone is super important! My apologies for the issues plagueing your device. Please test the phone in safe mode: http://vz.to/1aFxLK8 If issue persists, you will want to backup contacts, pics, and files to perform a hard reset: http://vz.to/1kpmPp0
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport 

  • Adobe Flash issues

    I have both an Imac, mac book air, and mac book, all running ML. When using either Safari or Chrome, and right click and go to the settings for flash, you can't click on anything. It works fine with Firefox. And I also find video chat always lags. Is this a flash issue only with these to web browers? or something else?

    Moving this discussion to the Installing Flash Player forum.

  • MOBIOLA WEBCAM and FLASH Issue

    Hello,
    I've used for a long time Mobiola WEBCAM (app that turns one's iPhone/iPad into a webcam via WIFI) in Skype and video chat sites like Omegle (all done through GOOGLE CHROME), up until yesterday.
    As of today, any of my browsers or my Skype applications on my MAC MINI won't recognize my VIdeo FEED.
    I do get a connection between the iPhone/iPAD and the MAC MINI, but the VIDEO is not being "fed/transferred" for some reason to the browsers or Skype.
    Is it a adobe flash issue? Mac os x issue? I should I proceed?
    Technical INFO:
    Skype version: 6.15
    MAC OS X Mountain Lion 10.8.5
    iOs: 8.1.1 (on both ipad and iphone)
    Google Chrome: 39.0.2171.71 (64-bit)
    Thanks a lot,
    Chen

    Hello MattyEss
    From your posted info, you have been thorough in your troubleshooting and research.
    Because your iSight works perfectly in every app aside from flash, iSight is not your problem.
    Your problem seems to me to be entirely with Flash. Here follow my best suggestions.
    (1) If all your software is up to date and working properly otherwise, your best answers for your Flash-specific problem should be from Adobe, whether via Settings/Help, Flash Forum, or personal assistance. You can find links to all of Adobe's comprehensive help offerings here:
      http://www.adobe.com/support/flashplayer/
    (2) Although I doubt it will help you, if you have a current Flash version installed and want to try one more thing before using Adobe Help, applying the 10.6.6 Combo Update might help you:
      • Backup your Mac and turn off Time Machine
      • Disconnect peripherals and restart Mac
      • Use Disk Utility to repair permissions
      • Download and install http://support.apple.com/kb/DL1349
      • Repair permissions again immediately following the restart that finishes the update.
      • Test Flash. Reconnect needed peripherals and test again.
     (• Turn Time Machine on again when you are satisfied that the update worked.)
    Although I don't think the Combo Update is likely to resolve your problem, it costs nothing but a bit of time to find out if it helps your system.
    We will watch for your status update.
    Message was edited by: EZ Jim
    Mac Pro Quad Core (Early 2009) 2.93Ghz Mac OS X (10.6.6); MacBook Pro (13 inch, Mid 2009) 2.26GHz (10.6.6)
    LED Cinema Display; G4 PowerBook 1.67GHz (10.4.11); iBookSE 366MHz (10.3.9); External iSight; iPod4touch4.2.1

  • Safari not working (Flash issue) but FireFox is... is there an issue with Safari?

    When I access Connect in Safari I am asked to upgrade my Flash player - it is up to date... Firefox works just fine. Does anyone else have Safari access or Flash issues?

    Connect version 8 requires that Adobe Flash 10.1 be installed.  I would suggest that you uninstall Flash and then reinstall from here:
    http://kb2.adobe.com/cps/865/cpsid_86551.html#ostype=m,prob1=uninst,os=m10.6,
    Adobe Connect is built to use the Adobe Flash player and it works great on Mac OSX. I suspect your Flash instance is corrupt and needs replacement. I use Safari all day long with Adobe Connect 7.5 and 8.

  • Exported Flash files make annoying clicks in Windows IE

    On Firefox and Safari on OS X I can embed a Flash file exported from Keynote in a web page and view it with no problems.
    However, at every slide change in Windows Internet Explorer, there is an extremely annoying clicking sound. It seems this is by design in IE -- any refresh is supposed to generate a click, and the change from slide 1 to slide 2, etc., apparently counts as a refresh.
    (For what it's worth, in IE the URL is appended with #SlideFrame_1, then #SlideFrame_2, and so on. That suffix does not appear in either OS X browser. The click happens at the transitions from #SlideFrame_n to #SlideFrame_n+1).
    I want to embed the exported flash on a web page and auto-run it, but Windows users will hear an irritating click-click-click until they navigate away from the site -- which they'll probably do quickly before they go crazy from the sound!
    Any ideas on how to export Flash movies in a way that avoids this, or any tools to modify the Flash file so IE doesn't think it's refreshing?
    (FYI -- while I'd prefer to export Quicktime, it's only on about 60% of my site visitor's browsers, while Flash is on over 95%).

    Greg,
    Have you found a solution for this problem? I too am experiencing the same problems.
    Best,
    Terence

  • Export license issue-URGENT

    We need to cancel Outbound Delivery 1234566 due to a GTS Export License issue.
    This delivery was created before the GTS license was complete.
    This delivery is for a Military Sales Order 123456 to ABCD for Thales shipped from XYZ
    2 Proforma Invoices were created, 123456on 9/18 and 9301154276 and 9/24. 
    GTS License 100000000000000011 was updated on 9/24.  However, the delivery needs to be canceled in order for GTS to assign a Proforma to a license.
    The accounting document, F2 Invoice 123456 has been issued but not cleared.
    Thanks
    Sitanshu

    Use Transaction code /SAPSLL/CL_CP_CUS_EX to display the custom declaration in Customs management. Select the dcoument in change mode. In the menu path, there is an option for 'Cancel' or 'Request Cancellation'. Request cancellation option is used when the declaration has been sent out to authorities for permission and in the meatime, the user decided to cancel..
    For assigning the license, use transaction /SAPSLL/LCD_CHANGE in License determination of Compliance..

  • [SOLVED]youtube and flash issue

    So, I've got a flash issue that only happens on youtube. It looks like this:
    It happens every time I open a browser (on both firefox and chrome) and goes away after refreshing the page, but its kinda annoying to refresh the page every time I wanna watch a video. Also when switching to fullscreen the video stays in software video rendering when it should switch to accelerated rendering so I get around 10 fps making the video unwatchable (this doesnt happen with windows on the same hardware).
    Other flash websites like vimeo work fine and I can watch vimeo HD videos in fullscreen without any issue.
    This started happening when youtube introduced the new black look of their player (it was all fine and dandy before), and its bothering me ever since so I'm now using flashvideoreplacer extension for firefox but I still want flash to work properly so I can use chrome again.
    I'm using 64-bit arch, flashplugin from extra (getting the same effect with any other flashplugin from AUR) and EnableLinuxHWVideoDecode is set to 1 in /etc/adobe/mms.conf
    Oh and I've tried this on Ubuntu live cd and controls work fine but accelerated video still doesnt work.
    Any help would be appreciated.
    SOLVED:Graphic problem is resolved after installing new version of flashplugin, but still no HW acceleration.
    Last edited by pixy (2012-04-03 21:39:11)

    strangest thing...  a few 'non-youtube' sites still work ok, but still complain 'no javascript' ..
    so went to firefox (v17.0.4 ESR) 'tools, options, content' and yup,  javascript UNTICKED!!   :O :O  my bad memory? something else???  {shrugs}
    ticked it, now ok........  think im getting old??????  ROFL..

  • Exporting Flash to quicktime error

    I am trying to export Flash to Quicktime and recieve the
    following message -
    "the installed version of quicktime does not support this
    type of macromedia Flash movie. Quicktime requires Flash 5 or
    before?"
    I reset the settings to Flash 5 - but still comes up with the
    error message. Does anyone know how to fix this?
    Thanks Jodi

    I'm having the same problem. Every website I find on the
    topic simply says to change the publish settings to Flash 5 - but
    it's still not working. Anyone have insight? I even uninstalled my
    previous version of QuickTime and re-installed the most current
    (7.4.5) - no luck.

  • Can I Export Flash for Influxis FMS?

    Hello,
    I love that Encore can export Flash for Flash Media Server, but why are PlayStream and Level3 the only options available for streaming server? Is there a way I can add Influxis settings to the list? Or, is there a way I can export for Progressive and then convert it or change the URLs for the project to work with Influxis FMS services?
    Thanks!

    You can export it to any Flash Media server. You need to change the existing scripts slightly to make it work of Influxis. Pick up Playstream or Level3 script (from ..\Adobe Encore CS4\Required\FlashExportScripts) and save it with a new name with .jsx extn.
    I think you just have to change the ftpURL and return path in the script and it should start working for your server. (If you compare the two scripts Playstream and level3, you will get the idea what to change)
    Following are the differences between the two:
    ftpURL
    Playstream: var ftpURL = "ftp://ftp.playstream.com"; (Line1)
    Level3: var ftpURL = "";  (Line1)
              ftpURL = "ftp://" + username + ".ingest.cdn.level3.net"; (Line 61)
    returnPath
    Playstream: return "rtmp://fvss.playstream.com/fvssod/" +username + "/" + newFileTitle;  (line 123)
    Level(3): return "rtmp://" +username + "fs.fplive.net/" +username+ "/" + newFileName;
    You need to find out your ftp and returnpath for your server and also hardcode it in the script for a single username.
    You can also make changes to your AuthoredContent.xml file of Progressive Download to make it work for your streaming.
    Just upload your flash video files in Sources folder to a FMS server and change the path of FLV/F4V files in xml file rest everything remaining same.
    Example:
    Progressive: <Media src='Sources/_PGC_Epgc_entryPoint_Kbp_1.flv' name='Chapter 1' type='video' startTime='0' duration='10.51'/>
    Streaming:
    For Playstream:  <Media src='rtmp://usernamefs.fplive.net/username/_PGC_Epgc_entryPoint_Kbp_1.flv name='Chapter 1' type='video' startTime='0' duration='10.51'/>

  • Export Flash image to Illustrator : bad colors and no transparency

    I've tried to export my vector work from Flash to
    Illustrator.
    The result is bad : colors have faded and transparent colors
    became opaque.
    It is a shame that Flash doesn't provide a correct export
    function to
    Illustrator now that Flash and Illustrator are both Adobe's
    softwares.
    Does somebody know a better way or software to export
    Flash/SWF vector
    images to Illustrator or PDF?
    Thanks.
    Henri

    You may want to follow this thread–no answer so far, but we live in hope…
    http://forums.adobe.com/message/2341411#2341411

  • Reason for Flash issues with 10.2 update

    I think I am beginning to understand the Flash issue. Because I have several Mac's and have only had one develop a issue with the new Flash 10.2 update. My feeling is that the one Mac a White Macbook with Intel graphics is the only one having the issue. While my other Mac's a Macbook Air, and two Mac Mini's with the Nvidia 9400M graphics and the Air's Nvidia 320M are not. Leads me to believe that somehow the hardware acceleration in the Flash that puts more use of the graphics chip rather then the CPU may be the cause. It may not work as well with the Intel graphics. The Flash official requirements is 128Mb of VRAM for it to work. I would say the older Intel chips may be causing a problem. Now why it works in 32 Bit mode with Safari is a bit of a mystery. A quick fix seems to be to enable Safari to run in 32 Bit or to use Google's Chrome browser which has built in Flash.

    mmm.. please see the thread "Flash 10.2 choppy in fullscreen." I have plenty of VRAM here 288MB to be precise. 32bit or more RAM is not the solution as neither it is to turn the automatic switch in energy preferences. Clearly everything works well with version 10.1, problems just happen when you upgrade to version 10.2 and 10.3(beta).

  • Export flash vid with VBR? (variable bit rate)

    Does AE CS3 have a choice of VBR when exporting Flash Video (FLV)? I'm going thru the Render Queue, but can't find where to change it from CBR.
    Thanks, Mates!

    No, I don't think so. After Effects only does one-pass rendering/compression, so you're probably better off with Flash Video Encoder or something similar.
    - Jonas Hummelstrand
    http://generalspecialist.com/

Maybe you are looking for

  • My iTunes is just not working! Please help!

    About a week ago, my iTunes just stopped working. When I tried to open it, I got that stupid Windoze message that iTunes had encountered a problem and had to close. And now I can't get it to work. I completely uninstalled both iTunes and QT and did a

  • Lumia 520 goes to lockscreen inadvertently

    Sometimes i'll be tapping away on my lumia 520, and the screen goes dark. Then I discover that it had gone to lock screen, even though i hadn't pressed the botton on the side. What's happening here?

  • New harddrive

    Hi, I'm sure this was covered somewhere but I can't seem to find it, I'm new here So my HD crashed and I just got everything back up and running but I didn't have a few things backed up like some movies and old purchased apps that I no longer had on

  • Oracle 10g Backupset Query..

    Hi Team, I am working Backup & Restore on Oracle 10g (10.2.0.1.0). For the backup I am using the following Script. run CONFIGURE BACKUP OPTIMIZATION OFF; CONFIGURE CONTROLFILE AUTOBACKUP OFF; CONFIGURE DEVICE TYPE DISK PARALLELISM 1; CONFIGURE MAXSET

  • Send for review - sub directory

    Is there any way to tell contribute not to create sub directories for draft reviews? I am using php includes and the "Send for Review" function isn't working very well. Basically, I include "includes/somefile.php". If Contribute creates {page name}_p