Check if the layer is visible and run a function according to the answer

Hey guys,.

I have a question that has been racking my brain these days.

If I want to run a script when I press a button that will check if a specific layer is visible. If so, it performs another function that shows additional layers. If the specific layer is not visible, it checks the next layer to see if it is visible. This continues until it checks all the necessary layers and is a visible layer.

Here's the script in question:

#target photoshop

//

clthTopTt.jsx

//

cTID = function (s) {return app.charIDToTypeID (s) ;};}

sTID = function (s) {return app.stringIDToTypeID (s) ;};}

//

//==================== actnStd ==============

//

function checkactnStd() {}

Select

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "actnStd");

DESC1.putReference (cTID ('null'), ref1);

DESC1.putBoolean (cTID ('MkVs'), false);

var list1 = new ActionList();

List1.putInteger (17011);

DESC1.putList (list1, cTID ('LyrI'));

executeAction (desc1 cTID ('slct'), dialogMode);

};

If

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

var ref1 = new ActionReference();

Ref1.putName (cTID ('Actn'), 'select actnStd');     <-if the actnStd layer is visible, rather than performing this action, it runs the function selectactnStd().

Ref1.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('then'), ref1);

ref2 var = new ActionReference();

ref2.putName (cTID ('Actn'), "check actnWlk");  <-if the actnStd layer is NOT visible, it executes the next layer checks (via the function checkactnWlk(). )

ref2.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('else'), ref2);

executeAction (desc1 sTID ('conditional'), dialogMode);

};

Step1();      Select

Step2();      If

};

function selectactnStd() {}

Show

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topStdTt");

Ref1.putName (cTID ("'Lyr"), "topMskStd");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (cTID ("'Shw"), desc1, dialogMode);

};

Hide

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topWlkTt");

Ref1.putName (cTID ("'Lyr"), "topMskWlk");

Ref1.putName (cTID ("'Lyr"), "topRunTt");

Ref1.putName (cTID ("'Lyr"), "topMskRun");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (desc1 cTID ("Hd"), dialogMode);

};

Step1();      Show

Step2();      Hide

};

//

//==================== actnWlk ==============

//

function checkactnWlk() {}

Select

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "actnWlk");

DESC1.putReference (cTID ('null'), ref1);

DESC1.putBoolean (cTID ('MkVs'), false);

var list1 = new ActionList();

List1.putInteger (17012);

DESC1.putList (list1, cTID ('LyrI'));

executeAction (desc1 cTID ('slct'), dialogMode);

};

If

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

var ref1 = new ActionReference();

Ref1.putName (cTID ('Actn'), 'select actnWlk');

Ref1.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('then'), ref1);

ref2 var = new ActionReference();

ref2.putName (cTID ('Actn'), "check actnRun");

ref2.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('else'), ref2);

executeAction (desc1 sTID ('conditional'), dialogMode);

};

Step1();      Select

Step2();      If

};

function selectactnWlk() {}

Show

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topWlkTt");

Ref1.putName (cTID ("'Lyr"), "topMskWlk");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (cTID ("'Shw"), desc1, dialogMode);

};

Hide

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topStdTt");

Ref1.putName (cTID ("'Lyr"), "topMskStd");

Ref1.putName (cTID ("'Lyr"), "topRunTt");

Ref1.putName (cTID ("'Lyr"), "topMskRun");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (desc1 cTID ("Hd"), dialogMode);

};

Step1();      Show

Step2();      Hide

};

//

//==================== actnRun ==============

//

function checkactnRun() {}

Select

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "actnRun");

DESC1.putReference (cTID ('null'), ref1);

DESC1.putBoolean (cTID ('MkVs'), false);

var list1 = new ActionList();

List1.putInteger (17013);

DESC1.putList (list1, cTID ('LyrI'));

executeAction (desc1 cTID ('slct'), dialogMode);

};

If

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

var ref1 = new ActionReference();

Ref1.putName (cTID ('Actn'), 'select actnRun');

Ref1.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('then'), ref1);

ref2 var = new ActionReference();

ref2.putName (cTID ('Actn'), "check actnAc");

ref2.putName (cTID ('ASet'), 'clthTopTt');

DESC1.putReference (cTID ('else'), ref2);

executeAction (desc1 sTID ('conditional'), dialogMode);

};

Step1();      Select

Step2();      If

};

function selectactnRun() {}

Show

function step 1 (enabled, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topRunTt");

Ref1.putName (cTID ("'Lyr"), "topMskRun");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (cTID ("'Shw"), desc1, dialogMode);

};

Hide

step2 function (activated, withDialog) {}

If (enabled! = undefined & &! activated)

return;

var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

var desc1 = new ActionDescriptor();

var list1 = new ActionList();

var ref1 = new ActionReference();

Ref1.putName (cTID ("'Lyr"), "topStdTt");

Ref1.putName (cTID ("'Lyr"), "topMskStd");

Ref1.putName (cTID ("'Lyr"), "topWlkTt");

Ref1.putName (cTID ("'Lyr"), "topMskWlk");

List1.putReference (Ref1);

DESC1.putList (list1, cTID ('null'));

executeAction (desc1 cTID ("Hd"), dialogMode);

};

Step1();      Show

Step2();      Hide

};

After he checks the last layer, then end the script.

'clthTopTtLoop.jsx '.

EXPRESSIONS OF FOLKLORE

Any help is appreciated seriously. Thank you guys!

Hey guys, I promised that I would update this post to help others if I got the answer, so here:

Firstly, the developer has created a function to automatically get the layer. I had problems to find ways to select layers, especially because the layers were nested in groups inside groups. This helped solve that. The function was this:

function selectLayer(name) {
  var desc = new ActionDescriptor();
  var ref = new ActionReference();
  ref.putName( charIDToTypeID('Lyr '), name );
  desc.putReference( charIDToTypeID('null'), ref );
  desc.putBoolean( charIDToTypeID('MkVs'), false );
  executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
  return
};

Then call the layer using layer real name (assuming that your layer names are unique. If they aren't, you'll find yourself only to select the first layer with the same specific name) throughout your script file.

IE. In my case, selectLayer ("actnStd"); or selectLayer ("actnWlk");

You then set the visibility by using the following code:

// show
app.activeDocument.activeLayer.visible = true;
// hide
app.activeDocument.activeLayer.visible = false;

Then use a function to check whether a layer is visible. If the layer is visible, you run the function show/hide layers respective:

function CheckactnWlk() {
  selectLayer("actnWlk");
  if  (app.activeDocument.activeLayer.visible == true) {
  SelectactnWlk()
  }
  else  {
  CheckactnRun();
  }
};

So in the end, the final script looks like this:

#target photoshop

app.bringToFront();
CheckactnStd();

function CheckactnStd() {
  selectLayer("actnStd");
  if  (app.activeDocument.activeLayer.visible == true) {
  SelectactnStd()
  }
  else  {
  CheckactnWlk();
  }
};

function SelectactnStd() {
  selectLayer("topMskStd");
  app.activeDocument.activeLayer.visible = true;

  selectLayer("topStdTt");
  app.activeDocument.activeLayer.visible = true;

  selectLayer("topWlkTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topMskWlk");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topRunTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topMskRun");
  app.activeDocument.activeLayer.visible = false;
}; 

function CheckactnWlk() {
  selectLayer("actnWlk");
  if  (app.activeDocument.activeLayer.visible == true) {
  SelectactnWlk()
  }
  else  {
  CheckactnRun();
  }
};   

function SelectactnWlk() {
  selectLayer("topMskStd");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topStdTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topWlkTt");
  app.activeDocument.activeLayer.visible = true;

  selectLayer("topMskWlk");
  app.activeDocument.activeLayer.visible = true;

  selectLayer("topRunTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topMskRun");
  app.activeDocument.activeLayer.visible = false;

};

function CheckactnRun() {
  selectLayer("actnRun");
  if  (app.activeDocument.activeLayer.visible == true) {
  SelectactnRun()
  }
  else  {
  alert ('There is no Selected Layer', 'Please select a layer', 0);
  }
};

function SelectactnRun() {
  selectLayer("topMskStd");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topStdTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topWlkTt");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topMskWlk");
  app.activeDocument.activeLayer.visible = false;

  selectLayer("topRunTt");
  app.activeDocument.activeLayer.visible = true;

  selectLayer("topMskRun");
  app.activeDocument.activeLayer.visible = true;

};

function selectLayer(name) {
        var desc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putName( charIDToTypeID('Lyr '), name );
       desc.putReference( charIDToTypeID('null'), ref );
       desc.putBoolean( charIDToTypeID('MkVs'), false );
       executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
       return
};

app.preferences.rulerUnits = rUnit;
app.preferences.typeUnits = tUnit;

selectLayer("actnStd");

Guys good luck! Now to find how to select random layers via the script.

Tags: Photoshop

Similar Questions

  • Check if the layer is visible

    Hey,.

    is there a way to check whether a layer is visible in given time? I don't know about the two methods:

    . audioActiveAtTime() and .activeAtTime (time), which could be useful, but rather to check if the layer is turned on I would like to check if it is visible / audible (regardless of .enalbed, State of .audioEnabled).

    Thanks in advance!

    This can help to spark an idea. Perhaps.

    Free layersAtCurTime function Friday by David Torno - ProVideo Coalition

  • I am sent updates to Firefox, but when I try to install them, they run and run and never download.

    I regularly receive updates. When I click on the button to download the update, the program runs continuously without having to download. By clicking on the button "Hide" does not work.

    Hi richardelfers

    If there is a problem with the update or permit the best and safest is to download and install firefox:

    1. download a copy of the latest http://www.mozilla.org/en-US/firefox/all.html firefox

    2. Trash , install the current application of Firefox to do a cleaning.

    3. install the version you downloaded.

    Do not select to delete your personal data, your profile data is stored in the Firefox profile folder, so you will not lose your bookmarks or other personal data.

    See also: Installation of Firefox on Mac

    Thank you

    Please check 'Resolved' the answer really solve the problem, to help others with a similar problem.

  • at the start of geta pop up = document Manager service could not be started, check the filter of the vault is loaded and run

    starting to get a pop up = document Manager service could not be started, check the filter of the vault is loaded and run

    Hello

    ·        Since when are you facing this problem?

    ·        Remember to make changes to the system?

    Method 1:

    I suggest you uninstall and reinstall download System Manager and check if the problem is resolved. See the article mentioned below.

    How to change or remove a program in Windows XP

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

    Thanks and regards.

    Thahaseena M
    Microsoft Answers Support Engineer.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How install and run Acrobat Pro after having downloaded the trial without checking 'install '?

    How install and run Acrobat Pro after having downloaded the trial without checking 'install '?

    You can not.  You must check 'install' to install and run it.

  • How to check if the vmware tools are up to date and whether they run or not?

    So, how can I do this in powercli?

    Using (notice-EEG - viobject $vm). Config.Tools, I can get some info but not if they are running or not and they are up to date.

    I would like to get sometnih like I see in vSphere client (OK - if the tools are up-to-date and running,...)

    Best regards, Primoz

    Is that what you are looking for?

    Get - VM | Select Name,@{N="Tools status"; E={$_. Guest.Extensiondata.ToolsVersionStatus}}

    Note that this property returns one of the VirtualMachineToolsVersionStatusenum values.

    In the vSphere client, these values are translated to 'OK', 'Does not work', 'Obsolète' and 'not installed '.

    If you see this text you can do the following

    Get-VM | select Name,
        @{N="Tools Status";E={
            if($_.Guest.Extensiondata.GuestState -eq "notRunning"){
                "Not running"        }
            else{
                $_.Guest.Extensiondata.ToolsVersionStatus.Replace("guestToolsNeedUpgrade","Out of date").Replace("guestToolsNotInstalled","Not installed").Replace("guestToolsCurrent","OK").Replace("guestToolsUnmanaged","Unmanaged")
            }
        }}
    
  • Recently I install Adobe Pagemaker 7.0, but it is not my system hindi font visible just like the series Devi ismayl, KBC Serise etc. these fonts are is visible and working with Adobe photoshop, corel, office etc. and works well. Veuileez solve this proble

    Recently I install Adobe Pagemaker 7.0, but it is not my system hindi font visible just like the series Devi ismayl, KBC Serise etc. these fonts are is visible and working with Adobe photoshop, corel, office etc. and works well. Veuileez solve this problem as soon as possible.

    Can you also please check whether this version is still appropriate for your operating system?

    See: Adobe - Pagemaker 7: System requirements

    The system configuration required

    Windows

    • Microsoft® Windows NT® 4.0 with Service Pack 6, Windows® 2000 Professional with Service Pack 2, Windows XP Professional or home edition

    It is not recommended to run this software on any Mac modern like Windows 7 or 10.

    Good luck!

  • CouponPrinter.exe does not work. I can download and run the program, but does not, print already added the file name to the list of java exceptions

    running windows xp, update java 7 51, norton antivirus says file is ok, please help

    HI DJDOLLARROB,

    Thanks for posting, as you might expect, there are troubleshooting you can undertake to check why the download does not work. It is highly possible that the source that you have downloaded from cannot be no longer works. Is there a site that you can check to see if it does not work for them either? Also where it is downloaded from?

    Otherwise please see if scanitemswhendone is enabled: change what Firefox does when you click on or download a file

    If download hangs at the last minute (just before reaching 100%), the cause may be an antivirus software that tries to parse the file and during this process the instance of Firefox crashes.

    To resolve the issue, try disabling the analysis as follows:

    1. In the address bar, type Subject: config and press enter. The subject: config "this might void your warranty!" warning page may appear.
    2. Click on I'll be careful, I promise!, to continue on the subject: config page. A list of parameters must appear
    3. Filter the list by typing in the search bar at top. Enter scanWhenDone. Now you should find the "browser.download.scanWhenDone" preference.
    4. Double-click this preference to set the value to false.
    5. Then, try to download something and see if it still crashes.

    Please reply and let us know if this helped you!

  • I tried to update, but sites still say I use an older version. I downloaded the latest version and run the program to "downloads".

    Sites like Pandora and gmail keep telling me that I use an older version of Firefox. So I followed their links to update, download the latest version and run it from my downloaded programs. But it doesn't seem to work as the sites always give me the same message.

    Something that you have changed your User Agent or prevents your User Agent to update with the new installation/update of Firefox. I suspect it's Fast Browser Search, which is shown as part of the User Agent. To get rid of Fast Browser Search do the following:

    1. Closing of Firefox (Firefox button > exit OR File > Exit)
    2. Open the Windows XP Control Panel and remove/uninstall "Fast Browser search protection" and "Fast Browser Search" (MyWebTatoo)
    3. Launch Firefox

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

    Not related to your question, but...

    You may need to update some plug-ins. Check your plug-ins and update if necessary:

  • New engine audio speakers are volume levels asymmetrical, even if I double checked all the connections and checked through balances of speaker system preferences. Help, please?

    I have an old desktop iMac to less than 1 year, I've upgraded to El captain of Yosemite.  Just fine, except the quality of the internal speakers.  Yesterday, I received speakers brand new engine audio 5 +.  Hooked by instructions.  Between the speakers volume levels are completely unbalanced. His active in Preferences system - balanced in the Middle, 50-50.  Verified in applications/utilities-audio MIDI output, everything is correctly set.  I can get pay only by the reduction in volume of the speaker on the right to almost nothing, but then I have no more volume than offer the internal speakers.  Any solution would be greatly appreciated.

    You use the audio output from your Mac an entry in your speakers or you cross an external DAC first?

    I also have the A5 speakers +, and I also use their USB D1 DAC which then audio output runs to the speakers.  Yosemite was a constant headache with my setup, but appears to have been eliminated with El Capitan.  I installed OSX to El Capitan, as well as later make a clean-install of El Capitan purely for my wanting a clean and in both cases, the sound system was very good.  Those who speak of fantastic, better that I have owned yet.

    Can you be more specific with how your output of iMac is done?  As usually, always check, then check your connections in your speakers and make sure that the audio cables are intact and not frayed.  If you use the headset, ensure that the headphone cable is robust and doesn't look like not to is damaged/twisted.

    You can consider getting the audio DAC AudioEngine to manage your Mac, as it is much better than one built-in that comes in your iMac.  I use it on my new iMac 5K that I received a few weeks ago.

    http://audioengineusa.com/store/digital-audio-converters/D1-24-bit-DAC

  • trying to print from quicken and I get an error message that says that I have to be in the mode of administration and run restore pdfdriver.ba

    I try to print from quicken and I get an error message that says that I have to be in the mode of administration and run restore pdfdriver.bat.  I don't know what is a mode of administration, nor I know what is a pdfdriver.bat. Can anyone help?

    Hello

    1. what operating system do you use?

    2. what web browser do you use?

    3. have you made changes on your computer?

    4. What is the brand and model of the printer?

    5. are you able to print from other applications?

    When a printer is installed, members of the Administrators group on the computer are given permission to manage the printer by default. If you have an administrator account, you can probably change the printer properties. Otherwise, you must obtain permission to manage the printer before you can change the properties of the printer.

    Method 1:

    If you are using, I suggest you send the link to learn how to open a session as an administrator.

    How can I connect as an administrator?

    http://Windows.Microsoft.com/en-us/Windows7/how-do-I-log-on-as-an-administrator

    Method 2:

    I also suggest you to see link and check.

    Error when printing to a PDF file: PDF driver is not found

    http://Quicken.Intuit.com/support/help/error-when-printing-to-a-PDF-file--the-PDF-driver-cannot-be-found/GEN82191.html

    Cannot print from Quicken

    http://Quicken.Intuit.com/support/help/not-able-to-print-from-Quicken/GEN82237.html

  • XP hangs at startup and the dialog box provides the following: a problem has prevented Windows to check exactly the State of this computer

    I am rebuilding a system that has been attacked by several viruses and had to rebuild XP using the Windows installation disc.  After completing the repair, I was greeted by the XP logon screen and I tried to log in as administrator. The standard screen grass-hill appears followed by a Windows dialog box to activate product indicating "a problem has prevented windows to check exactly the State of this computer.  To keep your copy of windows must be activated with Microsoft. You want to activate Windows now? "If I choose 'No', then Windows drives me back to the login screen.  If I choose "Yes" then Windows does nothing - activation does not occur and XP does not start... the system just hangs.   I also tried to open a session without failure, but he said that I could not activate safe mode and started back me to the login screen.  I am able to get to a command prompt, if I select Mode safe mode with prompt at startup.  FYI, I am able to view the structure of this version XP Directory when I configure the HARD disk as a slave on another system drive.  Any help to resolve this matter will be highly appreciated.

    I have exactly the same problem and after 2 days of searching and trying stuff found on the internet, I have solved this problem.

    At my computer configuration: Windows XP sp3 with IExplorer 8, but had to go back to the repair facility after that some system files have been corrupted, do not know why.
    My repair CD installation was: Windows XP sp2

    In my view, the main problem is that after the installation of repair, the system obtained in conflict of existing versions of IExplorer 7 and 8. IE 7 & 8A prevented the application of activation of MS (OOBE) of working after the installation of repair, the OOBE application silently chrashed and prevented the logon process.

    I couldn't connect even in safe mode, BUT with failure + command prompt, safe mode I managed to log on! So, choose the mode without failure + command promt in the trunk. Then open a session with success. Then close the command prompt and press CTRL + ALT + DEL to Task Manager. In task manager launches the new application "c:" and answer 'No' to the following question, and after an error message you c: drive open and you'll have office. You can close the System Restore Wizard who opened. Then go to c:\windows\ie7\spuninst and run spuninst.exe. Do the same to c:\windows\ie8\spuninst. After you have uninstalled both, restart windows, and after the first issue of activation, you should get the big activation dialog box.

    I have spent a lot more time, because I was told that uninstall IE7 and IE8 is possible to do this via the command prompt. I did, but it has not fixed my problem. Then I tried a thousand other tricks at the same time.

    Please let us now if this helped you.

  • Windows Media player on my machine does not run some AVI files. How can I check what the problem with AVI files. Files are running in other utilities of free ware

    Windows Media player on my machine does not run some AVI files. How can I check what the problem with AVI files. Files are running in other utilities free ware. Also, windows Explorer does not display dimension and other video related information for the file. Y at - it a tool that can indicate what exactly is the problem with the file.

    Ritu

    Hello

    1. you get any error message?

    2. don't you make changes to the computer before the show?

    Please follow the steps from the link below.

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

  • PC automatically shutsdown after every 30 min. I have the last MS Security Essentials installed and running and also the MS Malicious software installed, but none are able to detect any virus or harmful software. Please help in this regard.

    PC automatically shutsdown after every 30 min.  I have the last MS Security Essentials installed and running and also the MS Malicious software installed, but none are able to detect any virus or harmful software.  Please help in this regard.

    You get a bsod?

    Please check the event log to see if there are errors, helping to explain what is happening. Also check the c:\windows\minidump folder. Are there files .dmp created here with the dates that it closed? If so please download them on your skydrive so watch us closer.

    See you soon.

    MyPcHealth - free tools

  • Windows Movie Maker 6.0 error during recording: check if the original sources are still available, the saving location is available and if there is enough disk space

    Original title: Windows Movie Maker 6.0 Save Bug?

    Something's weird with Windows Movie Maker...

    It cannot record movies, I create somehow.

    Immediamente when it starts to save, it gives an error signal: check if the original sources are always available (and yet, they all), there is no such thing as the save location (of course it is!) and if there is enough disk space (a lot of). Still, it will not save. How can this be possible?

    I use an mp3 file (pendulum - watercolor) and have a lot of footage, often used with effects. They are 1280 x 1024 and a .avi file. Everything should work fine, but still does not work. Help me!

    Something's weird with Windows Movie Maker...

    It cannot record movies, I create somehow.

    Immediamente when it starts to save, it gives an error signal: check if the original sources are always available (and yet, they all), there is no such thing as the save location (of course it is!) and if there is enough disk space (a lot of). Still, it will not save. How can this be possible?

    I use an mp3 file (pendulum - watercolor) and have a lot of footage, often used with effects. They are 1280 x 1024 and a .avi file. Everything should work fine, but still does not work. Help me!

    ============================
    It is sometimes possible to publish / save in the
    Even if the DV - AVI format. WMV fails. If you are
    running Vista Movie Maker 6.see the following:

    Windows Vista - publish a movie in Windows Movie Maker
    http://Windows.Microsoft.com/en-us/Windows-Vista/publish-a-movie-in-Windows-Movie-Maker

    WIndows Vista Movie Maker 6
    The following chart shows where the DV - AVI option.
    http://www.Papajohn.org/IMGs/Vista-PublishToComputerChoices.jpg

    And sometimes unchecking that will enable all filters
    registration in progress...

    Reach... Tools / Options / compatibility... tab and
    Uncheck all filters / OK.

    The error that you received can be caused by the following:

    (1) source incompatible or damaged files (photos,
    video clips, audio clips).

    Several formats are apparently compatible with
    Movie Maker, but the most reliable choices are:

    Photos - bmp
    Video - wmv
    Audio - wav, wma, wmv

    (2) the project is too big or too complex for your system
    resources. Made video is time CPU and
    can sometimes cause blackouts.

    The following items may be worth a visit:

    Movie Maker - problem resolution - "cannot record a movie.
    http://www.Papajohn.org/MovieMaker-issues-CantSaveMovie.html

    Windows Movie Maker error
    Cannot complete the Save Movie Wizard
    http://moviemakererror.blogspot.com/

Maybe you are looking for

  • XP Home SP1 - MS Universal Audio Architecture HD audio bus driver installation.

    High definition audio bus driver MicroSoft Universal Audio Architecture is required before you install the original audio driver after reinstalled XP Home SP1 operating system, on a Compaq Presario. I downloaded the MS folder and unpacked in a driver

  • Laptop won't turn on. Need files out of old HDD to the new laptop.

    I need to know if there is a way to recover my files from my drive hard my laptop broke dv6324 to put on my new laptop G60-230us.  I can't turn on my old laptop to recover the files.  Is it possible to get them out of my hard drive?  Please be clear

  • Mix of HTML and ADF tags

    HelloI created something WYSIWYG for Studio area of Site definition. End users contribute content via the content Server - Site Studio contributor, and it allows the use of HTML tags.I created a model that has the following:< div class = "mystyle" ><

  • Join as a Condition

    HelloI'd like to get the code from location_lookup table based on a descriptive text of the location_source table, but this would require a join by using a like condition. There are also several research location with unique codes, but the requiremen

  • two flash disks in a single disk group vsan

    Every morning.We had our second ssd flash not to shoot the entire disk group in vsan, not a problem all the resynced and recovered ok.I know that we can make groups of multiple discs for each host with its own flash ssd by group, my question, do we p