Perform an Action only on the files in a folder with file names that start with "PDF".

I want to run an Adobe Action on a network folder where to save the scanned, copiers to remove PDF/A files from files that aura. I know that the files will all begin with 'PDF' because of the naming convention of the scanner HP software. I don't want to operate on all the files because there are files scanned several machines and the CV gives us PDF/A. It would not be a big deal to work on everything, but behavior varies the date file has been modified, then it makes all the files seem to be scanned at the same time, which is confusing when people are familiar looking for a file with the time wherever it has been analyzed. I think javascript is the way to go for this, but I could be. I'm new.

Acrobat Pro 10. Win 7.

You can do if you save the file using JS. Use this code:

if (/^PDF/.test(this.documentFileName)) this.saveAs(this.path);

Make sure not to add another order, save of course.

Tags: Acrobat

Similar Questions

  • Write to the worksheet only if the file name is different

    Hi all

    I'm trying to write some code, but to no avail. Basically I have a file name to each time interval (say 2 seconds). I built a small table for example.

    The names of files in the table are repetitive and I don't want to write the data in the worksheet, if the file name is the same.

    Bascially, I need to write the header and the table for the 1 c:\1.txt files and after c:\1.txt the data (more than 3) I want to only write the table only (no header) and add it to the worksheet.

    That is to say for c:\1.txt file, it will consist of 1 header and 4 sets of table.

    Then the process is repeated again until a newfilename (c:\2.txt) is encountered.

    c:\2.txt will also include 1 header and 4 sets of data.

    Can anyone help on this?

    Your loop is you allowing to read beyond the end of file names in your table. This passes an empty file name write it on the spreadsheet VI which requires to ask the name of the file. You should test this condition.

  • Not set to read only on the files so that they can be shared and changed on a network.

    I've seen any other questions on this subject, but they do not solve my problem.  I had to reset my network because I have a new router.  Now I can open the files on my main computer from another computer, but they always opened read-only.  I tried to set sharing and security to allow the share on the network and allow network users to change files.  But I can not turn off the box next to 'read only' in the general tab.  I also tried to start XP in safe mode and take possession of the file (article 308421), but this does not work either.

    I also tried in vain to change the attributes of command line to remove the read-only attribute and to set the system attribute, use the following command:

    attrib - r + s drive:------------

    After trying a few other corrections, I finally did a system restore before the installation of the network.  Then, I used the Network Wizard to reconfigure the network. I changed the name of the computer, so I knew what was the new connection.  Then I copied the wizard network on a USB key and reconfigured the second computer.  Now everything works fine (I can open, edit and save files between computers) even if the readonly attribute is always highlighted on the record.

  • My photoshop only save the file to copy. What should do? I need JPEG or JPG

    My photoshop only save the file to copy. What should do? I need JPEG or JPG

    You have probably some layers other than just a background, or you have certain paths or additional channels. Make sure you flatten the image and delete all channels and additional paths.

  • Function to the file name only

    Dear gurus
    I have a full path as C:\ABC\AAA\BBB\a.txt
    I use this function to get the name of one file, like a.txt.

    Function GET_FILENAME (P_FULLPATH VARCHAR2) RETURN VARCHAR2 IS
    number of V_LENGTH;
    v_filename varchar2 (100);
    Start

    V_LENGTH: = length (p_fullpath);

    I'm looping 1.v_length
    If substr (p_fullpath, i *-1, 1) = "\" then
    v_filename: = substr (p_fullpath,(v_length-i) + 2);
    "exit";
    end if;
    end loop;
    Return v_filename;
    End get_filename;

    I also want the path only. How can I do?
    is it possible this function I get?

    If not can you please tell me how can I retrieve the path only from the full path with the file name?
    I get the file a.txt name now, I want to C:\ABC\AAA\BBB
    SQL> with t as (
      select 'C:\ABC\AAA\BBB\a.txt' filepath from dual
    )
    --
    --
    select filepath,
           rtrim (regexp_substr (filepath, '.*\\'), '\') path,
           replace (filepath, regexp_substr (filepath, '.*\\')) file_name
     from t
    /
    FILEPATH             PATH                 FILE_NAME
    -------------------- -------------------- --------------------
    C:\ABC\AAA\BBB\a.txt C:\ABC\AAA\BBB       a.txt
    1 row selected.
    
  • I can't stop slide show of Photos showing the file name at the beginning?

    I made a slideshow for a crowdfunding charity event, but the Organizer is hampered by the fact that the file name displayed in large characters, hiding part of the actual text, when the slideshow begins to play. I can't find anything in the controls or insufficient preferences to stop what is happening, someone at - it ideas? I admit it is a bit ridiculous.

    Thank you!

    Kit.

    Using Photos or iPhoto to run your slide show?  Only the project title appears automatically on the first slide and does not display the names of files.  The user needs to add additional text/filename to each slide with Photosl

    If you use iPhoto then click the gear pinion and check the Show Legend checkbox is unchecked in the slideshow settings window:

  • Titles or subtitles of the file name?

    Is it possible to automatically generate the titles or subtitles of the file name? I have a video made up of several small files and you need to insert their names under the name of a chapter, or at least as a subtitle. FCPX only supports to support the generation of TC.

    The short answer (obtuse) is not. Not in FCPX alone.

    I seriously doubt you will be interested in this procedure, but someone might be.

    You need movement (this is the only expense here), TextWrangler and a droplet of Automator (see below).

    First, gather all your files of clips in a folder.

    Drop the file on the files in the folder (the automator app/drop) that will create a text file with the names of all files in the folder. When you are prompted to save the file, you can name it and save it wherever you want.

    Gout Gets the names of files from the Finder, and they are complete paths, such as:

    / Users/fx/Desktop/txtLicenses/Aardvark Cafe readme.txt

    [You can download a copy of the 'Files in the folder' drop HERE ]

    Open a window in TextWrangler, and then drag the text file to a blank page (very cool - TextWrangler automatically opens the file with drag and drop.) [TextWrangler is FREE of Barebones.com (http://www.barebones.com/products/textwrangler/) software, everyone should have a copy! The most recent version is 5.0.2 in date 25/12/2015]

    Type the command + F to open the Find/Replace dialog box. Make sure that Grep is checked.

    To find them, use this regex:

    .*\/(.+)\.. +

    [translated: find everything up to and including the last ' / ' character, can find everything up to the last period and save it as a game (the parenthesis) and then find everything at the end of the line]

    As an alternative, use:

    \1\n

    [Translated: prints the substring and adds a newline character - it will be double space lines of text]

    In the drop-down menu with the label of 'g', save... (model - something like Remove Path and FileType) so you can find it again easily.

    The text from the above example will become:

    Aardvark Cafe readme

    [and will follow an empty line]

    [I recommend you do all your spelling at this point.] Make sure that all text is as you want it to appear in FCPX. Repair later gets a bit dicey. and generally it is a good idea to start over if you need to make changes to the text file.]

    Save the file with another file in TXT format.

    On the move:

    Create a project generator. It can be almost any length, so accept the default value of 10 seconds. You will be stretching out in FCPX in any case.

    Add: Generators > text > file

    [You can use the Inspector to Format to choose the font, size, etc. and the inspector looks for color and 3D options].

    In the Inspector of the generator, find the section, load your text file

    Set the speed to Custom

    Reset the Custom speed setting

    Publish the speed of Custom setting slider

    Save in FCPX (and create a category called subtitles)

    When you save the generator in FCPX, the file being used is hard-copied in the media for access folder. You cannot publish the setting browse generator, so all files subtitles prepared in this way are projects of "One Shot". You can throw away them once your project is completed because their utility essentially died with the FCPX project.

    In FCPX, apply the generator to the plot and develop it to adapt to the length.

    Keyframe of the lines of text to match the timing of your video. This is where double spacing will be useful because it is a real pain in simple lines of keyframe and you will need a bit of space for a step-by-step. You can, of course, import the audio portion of your story in motion, create a project for quite a long time for the entire length and key image subtitles in movement. You can export as, eventually, the subtitle project as ProRes (if you do not use 4444, then you can apply the Composite blend mode add to the layer that you use in FCPX as the background should be black.)

    If all of your clips are the same length of time, then using the subtitle generator is a snap. Set a keyframe at 0 for the appearance of the first line and in the end, the last line should appear, simply drag the speed until the last line shows control (should be at or close to 100%). The generator systematically displays a single line both throughout the progression of his 'read'

    I found that the faster is to import the audio in motion and create a Motion project, the length of the audio used for subtitles + a little extra at the end.  Listen to the audio, and for each line that you display, add a keyframe... little whatever it is. When there is a keyframe for each line, listen again and adjust keyframe values to display the line. This will leave you with linear transitions from one image to another key (and overlapping in some cases, or the appearance of lines before image real key because of "Rounding errors") - is NOT a problem! Just select 1 keyframe, type command + A to select all the keyframes, and then right-click on a keyframe and select constant on the menu drop down. This will create a step-by-step through each value and you give the * discreet * timing you have need for the text to appear at the right time.  Remove the audio track and save the project as a generator of FCPX... it is faster and easier to export a track video overlay.

    You need movement 5.1.x or better (there are serious problems with 5.0 versions and file generator.)

    I know it doesn't look like it, but this method of captioning is much easier than ANY other software of captioning I've tried in the past... NO timecode or the special formatting is required... other recommended spacing to double.

    HTH

  • Error on startup: "application (the file name is) is not a valid windows image, check against your installation diskette."

    computer startup happens on the screen with "application (the file name is) is not a valid windows image, check against your installation diskette." It can be any name of a file that appears, if I click ok it will.  Anyone know what I should do now. Thank you

    Hi LorraineMatthews,

    ·         Did you do changes on the computer before the show?

    ·         What is the exact error message?

    ·         Are you able to boot to the desktop?

    Follow these methods.

    Method 1: Follow these steps:

    Step 1: Start the computer in safe mode and check if the problem persists.

    A description of the options to start in Windows XP Mode

    http://support.Microsoft.com/kb/315222

    Step 2: Perform a clean boot to see if there is a conflict of software like the clean boot helps eliminate software conflicts.

    How to configure Windows XP to start in a "clean boot" State

    http://support.Microsoft.com/kb/310353

    Note: After the boot minimum troubleshooting steps, follow section How to configure Windows to use a Normal startup state of the link to return the computer to a Normal startupmode.

    After the clean boot used to resolve the problem, you can follow these steps to configure Windows XP to start normally.

    (a) click Start and then click Run.

    (b) type msconfig and click OK.

    (c) the System Configuration Utility dialog box appears.

    (d) click the general tab, click Normal Startup - load all services and device drivers and then click OK.

    (e) when you are prompted, click on restart to restart the computer.

    Method 2: Scan the file system (CFS) auditor to repair corrupted files.

    Description of Windows XP and Windows Server 2003 System File Checker (Sfc.exe)

    http://support.Microsoft.com/kb/310747

  • How can I have the file name as visible caption on the photo

    I have several hundred digital images that I have edited and saved with a meaningful file name.  I would like to produce a slide show and then burn to DVD with the name of the file as a legend, preferably (but not necessarily) without the file name extension (for example, my photo.jpg would show as 'my picture').

    I (Pinnacle Studio) software that will import photos or DVD, and I'll create my slide show with Studio, since I am familiar with this software, but the Studio does not automatically create captions.  Re-type the captions for each slide will be intensive work and maybe isn't necessary.  I have a couple of programs that will produce a legend using the file name, but they are old and do not have an option to burn a DVD - only to run the slide show from the software owner.  I also Ulead FT 6 and Adobe PS Elements 6.  I am running Vista and have another computer with XP, so I have the photo editing software that comes with those.  I haven't found something that will prepare a folder of photos by file name as legend I can burn on a DVD.

    searching on the Internet I found a few programs for sale that seem to have the ability to do what I want, but I have hundreds of programs, and I don't want to buy another for only this seemingly simple task.  There are shareware/freeware/trialware which will allow me to display the file name as captions for photos and then burn a DVD or create a file that I can burn it with Nero for import into Studio 12 or 14 Studio?

    I have several hundred digital images that I have edited and saved with a meaningful file name.  I would like to produce a slide show and then burn to DVD with the name of the file as a legend, preferably without the file name extension (for example, my photo.jpg would show as 'my picture').

    I (Pinnacle Studio) software that will import photos or DVD, and I'll create my slide show with Studio, since I am familiar with this software, but the Studio does not automatically create captions.  Re-type the captions for each slide will be intensive work and maybe isn't necessary.  I have a couple of programs that will produce a legend using the file name, but they are old and do not have an option to burn a DVD - only to run the slide show from the software owner.  I also Ulead FT 6 and Adobe PS Elements 6.  I am running Vista and have another computer with XP, so I have the photo editing software that comes with those.  I haven't found something that allows to print a file of pictures with the file name as legend I can burn on a DVD.

    searching on the Internet I found a few programs for sale that seem to have the ability to do what I want, but I have hundreds of programs, and I don't want to buy another for only this seemingly simple task.  There are shareware/freeware/trialware which will allow me to display the file name as captions for photos and then burn a DVD or create a file that I can burn it with Nero for import into Studio 12 or 14 Studio?

    ==================================
    FastStone Image Viewer freeware can
    be useful to experiment.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    FastStone Image Viewer
    http://www.FastStone.org/FSViewerDetail.htm

    Add file names:

    I suggest that you create a new folder and add
    copies of your photos for experimental purposes.
    If you are unhappy with the result your originals
    will be intact.

    How to:

    "Basic steps to add text to the image files.
    using Fast Stone Image Viewer"

    Tools / Batch convert / Batch Convert tab...

    Check the box... Use of advanced options...

    Advanced Options button / tab text.
    Check the box... Add text...

    Open the window drop... "Insert a Variable."
    choose... The file name / no Extension... Ok...

    Add the files you want to add...

    Choose an output Format...

    Choose an output folder...

    Click on the button convert...

    (You will need to experiment with the position and the police
    size and color to get the desired result.)

    Volunteer - MS - MVP - Digital Media Experience J - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • The file names changed in wingdings, including the file extension and I can't delete, change them, open, etc. Here are the pictures.

    Have (had) a file with multiple files it contains with pictures in each file.  A week ago the pictures were there.  Now, the names are replaced by wingdings as names and file extensions.  When I try to open it, it is not accessible and that the file name, directory name or volume label syntax is incorrect.  When I try to delete it, it says that the file name you specified is invalid or too long and specify a different name.  When I try to rename it, it tells me that if I change the file name extension, the file may become unusable.  If I try to change anyway, it says I've specified file name is not valid or too long.  Only tried for the name 1.  I did a restore in the case where a program interfered with that.  However, nothing has changed.  All of the suggestions.

    You can download and try to delete the file Unlocker http://www.softpedia.com/get/System/System-Miscellaneous/Unlocker.shtmlwilh.  Although it is not designed for this particular circumstance, it may very well work in all cases, as it has been very successful in a wide variety of situations are not specifically highlighted in the directions (where do not work the normal Vista options).  NOTE: Some antivirus flag programs this program as a malware, but it is a 'false positive' and is safe to use perferctly.  My own software to flag, but several other well-known software products it clean and the warning is included in the documentation of the program.

    I wish there was a way to save the images, but at this point, it seems that the only option is to delete because you can't rename files EHF (if this option is available-I hope that work above).  Unfortunately, System Restore does not affect the files of data, so even if a program caused this, System Restore can eliminate the cause, but it would not restore the files to their previous names.

    If you have Vista Business, Vista Ultimate or Vista Enterprise, you can be lucky because they retain the files called snapshots http://windows.microsoft.com/en-AU/windows-vista/Previous-versions-of-files-frequently-asked-questions.  It can be used to recover previous versions of files that have been changed or deleted accidentally.  Here's how: http://www.microsoft.com/windows/windows-vista/features/shadow-copy.aspx.

    If you have Vista Basic or Premium of Vista, you don't have a shadow, but there is a free program for you that does essentially the same thing called Shadow Explorer: http://www.shadowexplorer.com/.  I suggest that you download and implement as soon as POSSIBLE to protect you if you accidentally delete or modify a file.  It will not help you in this instance, but it can help save the next time.

    I'm more concerned about why this has happened in the first place and prevent it from happening again.  I saw file names change before, but never of wingdings which then do not let you open, edit, delete, or rename.  We will check some of your system files: go to start / all programs / accessories / command prompt and right click on command prompt, and then click Run as administrator.

    Type sfc/scannow, go and let it run.  It will scan and try to correct some of your system files.  If all goes well he comes complete with no corruption, it could not repair (if it has these post of corruption here or try to analyze it to find the problem or files using http://support.microsoft.com/kb/928228.  If you find any these corrupted files, try to post them here.  Maybe we can replace the good files on the disc.

    While in the command prompt, type chkdsk /f /r and enter and let it run.  It will scan and try to solve any corruption or bad sectors on your hard drive and remove especially as a cause.

    If this does not work, then please post repetitive errors in Event Viewer about the name change (Start / Control Panel / administrative tools / Event Viewer).  Here's how to use Event Viewer: http://www.bleepingcomputer.com/forums/topic40108.html.

    If this does not work, you will need to do a repair/system upgrade using the Windows Vista Installation disc authentic (you own or that you can borrow from someone).  Here is the procedure: http://www.vistax64.com/tutorials/88236-repair-install-vista.html as well as the upgrade from an earlier version of the Windows section of the following: http://support.microsoft.com/kb/918884.  Although this will not affect your data, settings or programs, you should always back up your data before you start just be on the safe side. If other procedures do not work, it is almost certain to work - but it will probably not fix your renamed files.  You can have a lot of updates to re - install (including all you need to remove service packs).  If the version on system with SP1 or SP2 preinstalled cane and the disc is an earlier version, then you will need to do a slipstream drive as follows: http://www.vistax64.com/tutorials/151606-vista-sp1-slipstream-installation-dvd.html.

    I hope one of these procedures can solve your problem.  If this isn't the case, after return and we will try something else.  Return message anyway so we know how it turns out.

    Good luck!

    Lorien - a - MCSE/MCSA/network + / A +.

  • How can I print just the file names listed in a window of Windows 7?

    How can I print just the file names listed in a window of Windows 7?

    I found the info in this post...
    http://answers.Microsoft.com/en-us/Windows/Forum/Windows_7-files/for-Windows-7-can-i-print-a-listing-of-what-is-in/b233cbeb-647d-4E32-ae1f-8523d62b2dc9

    Here, a link takes me to an article at this link...
    http://support.Microsoft.com/kb/321379

    This article explains then that I need to download and run blindly 'Fix - It' application to obtain the simple ability to print a directory window... but it does not say what I'd do once downloaded the general application of "Fix - It" to get this option which should be part of the Windows 7 basic features first.

    Or, the article told me that I can "modify the registry" (?) in order to get the print option window... but I know that by having a character moved when editing the registry, it can bring down the entire computer and make it completely unusable.

    Those are really the only options to print all simply a window?... in addition to several screenshots and melted together in Photoshop and then print this image?

    Why not just give Windows 7 a 'PRINT' button under 'FILE' as other operating systems have always done... has always done Windows default this feature?

    This seems just crazy... This misunderstanding?

    Thank you

    NuMetro

    I tried to copy and paste the name of the window... This time I tried while holding down the SHIFT key and it sticks anything in Notepad.

    This is not what I've proposed.

    • Select the files whose names you want to print. CTRL + A selects all.
    • Hold the SHIFT key, then right click on a file and select copy in the path from the context menu. This will put a list of filenames (path) to the Windows Clipboard.
    • Click inside a document, and the stick.

    Have another go.

    Noel

  • Error message: "the file names would be too long for the destination folder.

    I move the files from internal hard drive to external hard drive using cut and paste.  I get a message "the file name would be too long for the destination folder.  You can shorten the file name and try again, or try a location with a shorter path. "I then gives me choices to skip or cancel.  What happens to files that are ignored?  Are they deleted?  I don't want to lose all the data, but there are more 2 000 files with this problem, so passing by and rename each one really isn't a viable solution.  I don't really understand how the file names were originally created/saved about a problem that is only now that I want to move them.  The disc source and destination are NTFS.  Is there a solution for this?  It is imperative that no data is lost.  Thanks for any help you can offer.

    On Wednesday, 10 April 2013, 12:16:23 + 0000, MADinIowa wrote:

    I move the files from internal hard drive to external hard drive using cut and paste.  I get a message "the file name would be too long for the destination folder.  You can shorten the file name and try again, or try a location with a shorter path. "I then gives me choices to skip or cancel.  What happens to files that are ignored?  Are they deleted?

    N ° to check that what I say is correct, create a new folder
    for the purposes of the trial and to make a copy of some files. To ensure that
    one of them has a long name (rename if necessary), and then try to copy
    These files on the external drive. When you get the message, choose
    'jump' and see what happens.

  • Cannot right click Windows 7 Explorer of files to generate the copy of the file names in a Notepad or Excel-compatible file. HELP REQUESTED!

    I struggled for several hours to restore the service right click that I used to have XP to Windows 7.  I need to save lists of file names such as displayed in the file Explorer. Allowing you to right-click and save files in Notepad. This option has been removed in Windows 7 and anything put in place to restore it.

    I have lists of items in the inventory and need to copy and paste the image corresponding to a transfer sheet to allow the server names to match images in article SKU.  The file names are long and typing is a complete waste of time.

    I used to be able to find them in the Windows Explorer, right-click on the directory and generate a txt file that I could open in Notepad or Excel.  -Easy.  Now right-click only allows an export in an uneditable image in ONE NOTE. This is useless for me. I can't do anything with an image file - I need the editable data.

    Is there a solution?  I need only the file name and extension, not the full path, in a text or spreadsheet document propagation.

    I had used the Microsoft solution to install their dose without knowing the final format was a NOTE image file format and not a simple txt file. I try now too write the batch file:

    %windir%\Printdir.bat

    or edit it in order to keep the file in Notepad and do not make the final conversion into a single Note.

    The problem is that the fix from Microsoft, designed to fix this problem, has placed the conversion file in the root directory and it cannot be overwritten.  I refused the possibility to delete, edit or write the file due to the requirements of administrative privilege mandated by the security of Windows 7 too much.

    So if anyone has a solution to every problem - that would help - I am very tired and frustrated and not happy with Microsoft.  Their zealous concern with security made their unnecessary programs for me and have further discouraged me to convert to the windows 10. frustrations and nightmares are waiting for me there I can't imagine.  What I really want to do at this point is to go back to XP.

    He ate five hours of my day. I don't have the time to fight like that. I am trying to be productive, but all I got are monumental technical walls and roadblocks - often designed into the system. Frustrating doesn't begin to describe it.

    Found a solution on a Web site:

    http://www.watchingthenet.com/how-to-print-a-directory-tree-from-Windows-Explorer.html

    They said it was for VISTA, but worked for me under Windows 7. You will need to use Notepad to the command prompt and select run as administrator to save the file in the root directory.

    Thanks for the help.

    Cheers.

  • Can I change the file name of the .bar file

    Hello

    I built an application in Release for device mode.  He prodcued a filenamed bb10app.bar. Is it possible to change the file name to tell xyz.bar after it is built.  It is an application internal meaing only avaiable to our staff.  If I do not file name change how will I know what app it is. Given that bb10app.bar seems to be a default file for any application name.

    Thank you

    Joe

    Yes, you can change the file name of the file BAR, just keep the .bar extension and you shouldn't have any problems.

  • How can I remove the file name of movies that I import from my camera?

    How can I remove the filename of movies that I import from my camera - the film shows the name of the file on the screen and then disappears slowly?  Using Win 7 Pro and Home premium 64-bit.   Thank you.

    Edition - shows only upward on one of the 2 computers I have / use.  Any movie file I import was that if camera, animation or imported from youtube.  All formats - slight differences in size, fonts and the location.

    Hi and thanks... Videos out of my camera I'm just drag and drop to the desktop.  They are avi - cam is a Canon about a year.  Others are .mov of 3D software I use - Cinema 4 d. I save animation software in the appropriate folder.   Youtube videos are made with YOutube Video Downloader and files are for most .flv but others come too.

    All of these files open when doubleclicked and the name of the file is very large print at the bottom of the screen may be 4 seconds then fades.  I've not edited somehow - they are the first "raw" video camera or animation software.

    It is not consistent, but especially it happens only on one machine - Win 7 Pro with all the updates.

    Thank you.

    ========================================
    I suspect the media player you use poster
    the file name. Check the properties/preferences of your
    Media player to see if you can change a setting.

    For example, VLC displays the name of the file... and you
    can go to... Tools / preferences / All / video...

    Scroll down to and uncheck 'Show Media title on Video'... / Save.

    The next time that VLC is started the video title should not be displayed.

Maybe you are looking for

  • Apple TV Remote 3rd generation pairing

    We have just received new internet, and I went to put in the new network outside of apple TV. When I click on the remote control the Apple TV blinks 3 times (white light) and I can't move the cursor. I tried to restart my Apple TV and using my remote

  • I have pale green vertical lines on my iMac 27 "

    I have Pale on my iMac 27 "early 2009 when green vertical lines startup and after a minute or two, the screen becomes grey.  This means my Mac died? I tried to start both the recovery disk and my backup time machine, does not

  • Computer HP laptop-15-ac020ne: broadcom problem

    Hello I have a problem with my laptop. When I start my utorrent after maybe 1 min, or 60 min a restart with blue screen and error SYSTEM THREAD EXCEPTION NOT HANDLED to come bcmwl63a.sys. BCM43142 802.11 bgn adapter Wi - Fi m2 Product name: HP for co

  • Windows Vista boot problems, after an automatic update

    Can someone help me with the boot?When I start my laptop it goes until is displayed: 'No configuration update 3 of 3' and all stays at 0% for 1 or 2 minutes and after it stops automatically. It restarts again and appears the same following 2 minutes

  • Sampling frequency of adjustment for the analog output of sine

    Hello I tried to do something very simple: using an analog output card PCI 6221 to produce a frequency 50 Hz sine curve. For this I used a Vi to create a curve sinus and different screws DAQmx. But I have trouble understanding the principle of virtua