Help of the recursive algorithm

Hello world. I'm recursively processing a file XML using ExtendScript. I have a "level" variable, so I can keep track of how deep I am in the structure. I want to detect where the level of change in both senses. I can't find out how to use a variable 'prevLevel' to keep track of its current level, so I can see if it has changed. It seems to work when the level increases, but not when it decreases. Any help would be appreciated. Here is my script. It will ask you an XML file that I'll also post.

main ();

function main () {
    
    var xmlFile, xml;
    
    // Prompt the user for the XML file.
    xmlFile = File.openDialog ("Please select an xml file:","XML:*xml", false);
    if (xmlFile === null) {
        return; // User cancelled the XML dialog box.
    }

    xml = loadXmlFile (xmlFile);
    if (xml === 0) {
        alert ("XML file could not be loaded.");
        return;
    }

    processElements (xml, 1, 0);
}

function processElements (node, level, prevLevel) {
    
    var nodes = node.elements ();
    var count = nodes.length (), i;
    
    for (i = 0; i < count; i += 1) {
        $.writeln (level + " " + nodes[i].localName () + " (" + prevLevel + ")");
        prevLevel = level;
        if (nodes[i].hasComplexContent () === true) {
            processElements (nodes[i], level + 1, prevLevel);
        }
    }
}

function loadXmlFile (xmlFile) {
    
    var xml = 0;

    // Open, read, and close the XML file.
    xmlFile.open("r");
    try {
        xml = new XML(xmlFile.read());
    } catch (e) {
        xmlFile.close();
        return xml;
    }
    xmlFile.close();
    return xml;
}

<?xml version="1.0" encoding="utf-8"?>
<Boek>
  <CursusTitelblad href="C:\temp\Presentatie\CursusTitelblad-1\PresentGBS-StorOndh-CursusVB.xml" />
  <Inhoud />
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-1\PresentHfst-SignaalgeversVeld.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentInlSignaalgevers.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentWat zijn Signaalgevers.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentSignaalgevrOpnemer.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentType signaalgevers.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentType opnemers.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentTypen signalen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentSpecificatiesDocumentatie.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentMetenSignaalgevers-Signalen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-1\PresentPlaatsing Signaalgevers.xml" />
    <OpgTheorie href="C:\temp\Presentatie\Hoofdstuk-1\PresentOpgTh-SignaalgeversVeld.xml" />
    <OpgTechTake href="C:\temp\Presentatie\Hoofdstuk-1\PresentOpgvTT-SignVerbindingGBSVeld.xml" />
    <PraktijkOpdracht href="C:\temp\Presentatie\Hoofdstuk-1\PresentPrakOpdr-SignaalgeversVeld.xml" />
  </Hoofdstuk>
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-2\PresentHfst-UitvoerorganenVeld.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-2\PresentInlUitvoerorganen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-2\PresentSoortenUitvoerorganen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-2\PresentTypeStuursignalenUitvoerorganen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-2\PresentSpecificatiesUitvoerorganen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-2\PresentMetenSignalenUitvoerorganen.xml" />
    <OpgTheorie href="C:\temp\Presentatie\Hoofdstuk-2\PresentOpgTh-UitvoerorganenVeld.xml" />
    <PraktijkOpdracht href="C:\temp\Presentatie\Hoofdstuk-2\PresentPrakOpdr-UitvoerorganenVeld.xml" />
  </Hoofdstuk>
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-3\PresentHfst-SignaalverbindingGBS.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-3\PresentInlSignaalverbindGBS-Veld.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-3\PresentSoorten I-O-Modulen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-3\PresentVerbindingenVeldModulen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-3\PresentVerbindingenModulenOnderling.xml" />
    <OpgTheorie href="C:\temp\Presentatie\Hoofdstuk-3\PresentOpgTh-SignVerbindingGBSVeld.xml" />
    <PraktijkOpdracht href="C:\temp\Presentatie\Hoofdstuk-3\PresentPrakOpdr-SignVerbindingGBSVeld.xml" />
  </Hoofdstuk>
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-4\PresentHfst-SignaalverbindingenAansluit.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentInlSignaalverbindingen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentGebruikSchemaDocumentatie.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentHoofd-Stuurstroomschema.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentDocumentatieComponenten.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentI-O-LijstenSchema.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentKlemmenlijst-Rangeren.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-4\PresentMeten I-O-Signalen.xml" />
    <OpgTheorie href="C:\temp\Presentatie\Hoofdstuk-4\PresentOpgvTh-SignVerbindAansluit.xml" />
    <PraktijkOpdracht href="C:\temp\Presentatie\Hoofdstuk-4\PresentPrakOpdr-SignVerbindAansluit.xml" />
  </Hoofdstuk>
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-5\PresentHfst-CommVerbindingenGBS.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-5\PresentInlCommVerbingenGBS.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-5\PresentTypeCommVerbindingen.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-5\PresentGateways.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-5\PresentAdresbusGBS-systeem.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-5\PresentDataPackets.xml" />
    <OpgTheorie href="C:\temp\Presentatie\Hoofdstuk-5\PresentOpgTh-CommVerbindingenGBS.xml" />
    <PraktijkOpdracht href="C:\temp\Presentatie\Hoofdstuk-5\PresentPrakOpdr-CommVerbindingenGBS.xml" />
  </Hoofdstuk>
  <Hoofdstuk>
    <Titelblad href="C:\temp\Presentatie\Hoofdstuk-6\PresentHfst-GestructureerdSmido.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-6\PresentInlGestrucStorzGBS.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-6\PresentStoringsmeldingKlachtStoring.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-6\PresentStorzoekenSmido.xml" />
    <Onderwerp href="C:\temp\Presentatie\Hoofdstuk-6\PresentGBS-sysGebruikStorzoek.xml" />
  </Hoofdstuk>
</Boek>

The script writes the results in the JavaScript Console. Here are the results I get. It's about what I want, except as the level rises, that it does not appear correctly the previous level.

1 CursusTitelblad (0)

1 content (1)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

2 OpgTheorie (2)

2 OpgTechTake (2)

2 PraktijkOpdracht (2)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

2 OpgTheorie (2)

2 PraktijkOpdracht (2)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

2 OpgTheorie (2)

2 PraktijkOpdracht (2)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

2 OpgTheorie (2)

2 PraktijkOpdracht (2)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

2 OpgTheorie (2)

2 PraktijkOpdracht (2)

Hoofdstuk 1 (1)

2 Titelblad (1)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Onderwerp 2 (2)

Thus, for example, when he jumps to one of the < Hoofdsuk > elements, I see this:

Hoofdstuk 1 (1)

Instead of

Hoofdstuk 1 (2)

-Rick

No doubt you waited until prevLevel is released "by reference" in recursion, which is true for objects, but not for simple variables.

It should work when you set prevLevel as an object:

function main () {  

    var xmlFile, xml;  

    // Prompt the user for the XML file.
    xmlFile = File.openDialog ("Please select an xml file:","XML:*xml", false);
    if (xmlFile === null) {
        return; // User cancelled the XML dialog box.
    }  

    xml = loadXmlFile (xmlFile);
    if (xml === 0) {
        alert ("XML file could not be loaded.");
        return;
    }  

    var prevLevel = { val : 0 };  // CHANGED
    processElements (xml, 1, prevLevel);
}  

function processElements (node, level, prevLevel) {  

    var nodes = node.elements ();
    var count = nodes.length (), i;  

    for (i = 0; i < count; i += 1) {
        $.writeln (level + " " + nodes[i].localName () + " (" + prevLevel.val + ")");  // CHANGED
        prevLevel.val = level;    // CHANGED
        if (nodes[i].hasComplexContent () === true) {
            processElements (nodes[i], level + 1, prevLevel);
        }
    }
}

Tags: Adobe FrameMaker

Similar Questions

  • Need help with the recursive query

    I have test table

    Create table test (key primary number col_pk,)

    number of fins,

    number of fo_fv

    number of jup_fv

    action varchar2 (10)

    );

    Insert into test values(1,1,1,1,'LOAD');

    Insert into test values(2,2,null,2,'ROLL');

    Insert into test values(3,3,null,3,'ROLL');

    Insert into test values(4,4,null,4,'ROLL');

    Insert into test values(5,5,null,5,'ROLL');

    Insert into test values (6, null, null, 5.1, 'FLATTEN');

    Insert into test values (7, null, null, 5.2, 'FLATTEN');

    Insert into test values(8,null,null,1,'SIGNOFF');

    Insert into test values (9, null, null, 1,001, 'SIGNOFF');

    Insert into test values(10,6,2,6,'LOAD');

    Insert into test values (11, null, null, 6.1, 'FLATTEN');

    Insert into test values(12,7,1,7,'RELOAD');

    Insert into test values(13,null,null,1,'SIGNOFF');

    Select * from test;

    I want the result of the query in the form below:

    COL_PK FINS FO_FV JUP_FV ACTION

    ---------- ---------- ---------- ---------- ----------

    1 1 1 1 LOAD

    --------------------------------------------------

    2 2 1 2 ROLL

    --------------------------------------------------

    3 3 1 3 ROLL

    --------------------------------------------------

    4 4 1 4 ROLL

    --------------------------------------------------

    ROLL 5 5 1 5

    --------------------------------------------------

    5.1 6 5 1 FLATTEN

    --------------------------------------------------

    7 5 1 5.2 FLATTEN

    --------------------------------------------------

    8 5 1 1 APPROVAL

    --------------------------------------------------

    9 5 1 APPROVAL 1,001

    --------------------------------------------------

    10 6 2 6 LOAD

    --------------------------------------------------

    11 6 2 6.1 FLATTEN

    --------------------------------------------------

    12 7 1 7 RELOAD

    --------------------------------------------------

    13 7 1 1 APPROVAL

    --------------------------------------------------

    Help, please

    Hello

    This sounds like a job for the analytical LAST_VALUE function:

    SELECT col_pk

    LAST_VALUE (fins IGNORE NULLS)

    COURSES (ORDER BY col_pk) AS fins2

    LAST_VALUE (fo_fv IGNORE NULLS)

    COURSES (ORDER BY col_pk) AS fo_fv2

    jup_fv

    action

    OF the test

    ORDER BY col_pk

    ;

    Output:

    COL_PK FINS2 FO_FV2 JUP_FV ACTION

    ---------- ---------- ---------- ---------- ----------

    1 1 1 1 LOAD

    2 2 1 2 ROLL

    3 3 1 3 ROLL

    4 4 1 4 ROLL

    ROLL 5 5 1 5

    5.1 6 5 1 FLATTEN

    7 5 1 5.2 FLATTEN

    8 5 1 1 APPROVAL

    9 5 1 APPROVAL 1,001

    10 6 2 6 LOAD

    11 6 2 6.1 FLATTEN

    12 7 1 7 RELOAD

    13 7 1 1 APPROVAL

  • Help regarding the AES cipher and engines decryptor

    Hello

    I'm trying to encrypt the data using the AES algorithm.

    I am illegal Argument exception in the following code:

    Help, please... Badly pasted.

    public class AesTest  {        public static byte[] tmpIV =  //some byte[];        public static void main(String args[]) throws CryptoTokenException, CryptoUnsupportedOperationException, IOException{       InputStream encryptedInput = null;      InitializationVector iv = new InitializationVector(tmpIV);      AESKey key = new AESKey("AESTestingInProgress".getBytes());         OutputStream input = null;                              BlockEncryptor encryptor = new BlockEncryptor(                  new PKCS5FormatterEngine(                               new CBCEncryptorEngine(                                             new AESEncryptorEngine(key),iv )), input);                      byte[] buff = "ILoveMyPearl8100".getBytes();            encryptor.write(buff);                                          String toDecode =  new String(Base64OutputStream.encode( key.getData(), 0, key.getLength(), false, false));             byte[] exchangedData1 = Base64InputStream.decode(toDecode);                                     BlockDecryptor decryptor = new BlockDecryptor(                      new PKCS5UnformatterEngine(                                 new CBCDecryptorEngine(                                     new AESDecryptorEngine(key),iv )), encryptedInput);                 byte[] buffer = null;               decryptor.read(buffer);             }}
    

    Sorry for incorrect formatting code...

    Can you confirm that you continue to call read() to get the rest of the data?

    I also seriously suggest using factory methods, I described above instead of your own flow of nesting.

  • Adobe still the software that is used to decode the media is not available on this system. install the correct decoders for the file you are editing can help fix the problem

    Hello

    I got this message after the import on ten H.264 files that I coded for Adobe media encoder.  "It is not available on this system from adobe yet the software that is used to decode the media. install the correct decoders for the file you are editing can help fix the problem. »

    The files that we have shot with HD cameras.  Edited in Premiere Pro CS3.  I installed the update 3.0.1 with always the same error.

    I also tried a new project and after about ten or so files imported into a timeline, the breakdown of the system.  I tried twice...

    Thanks in advance

    Please report to us. I don't know the exact specifications. for stills in still, the limit is 4000 pixels in the largest dimension for PrPro.

    Now, I must add that in PS. resizing algorithms are better, in my opinion, than those of PrPro and again. This means that there is nothing to gain and quality of untying, important images much larger than the size of the frame of the project, i.e. of 720 x 480 for NTSC SD projects yet. The size of the image will be the limiting factor, so scratch that.

    Even in projects PrPro, I resize to exactly what I need. If I will not pan on a zoomed image, I resize it to the size of the image of the project. If I move on a zoomed image, I resize just what I need.

    Good luck

    Hunt

  • I want you to help because the phone asking me to become a frequent and annoying enter a password to calculate the icloud

    Hello

    I want you to help because the phone ask me for becoming a frequent and annoying password to calculate the icloud, and I do not know because I bought a phone from someone else is not new Hama is on the phone (*) No. account. IMEI (*) Please help me soon thank you

    < post branched out by host >

    < personal information under the direction of the host >

    Robert Odamat says:

    Hello

    I want you to help because the phone ask me for becoming a frequent and annoying password to calculate the icloud, and I do not know because I bought a phone from someone else is not new Hama is on the phone (*) No. account. IMEI (*) Please help me soon thank you

    < post branched out by host >

    < personal information under the direction of the host >

    Find my iPhone Activation Lock - Apple Support

    There is nothing you can do to get around activation icloud blocking without recovering the former owners information.

    Communicate with the person that you bought the phone.

  • What is the correct way to ask for help with the forum, rather than product, questions?

    I can't find the right way to ask a question about the forums themselves.

    PAGulley said

    I can't find the right part of the forum to ask questions about the forum itself and its features. I wonder what the right place and the way is to get help with the forum system itself. I can find the place to ask questions about specific Mozilla products very well.

    Look up where it says contributor tools and select Contributor Forums. Make sure that you scroll to the top or you'll get a bar with different links instead,

    The forum is https://support.mozilla.org/forums where you question would be better in the SUMO community discussions.

  • Speed/performance of my mac mini (mid-2010) is very slow. Need help, consolidate the files, software updates, etc. in order to improve the speed and performance.

    My mac mini (mid-2010) speed/performance is very slow - think of it as a result of letting my kids do "whatever" about it in recent years.  Need help, consolidate the files, software updates, etc. in order to improve the speed and performance.  You will also need to get data out of old PowerBook G4.

    < object edited by host >

    We are users like you.  Search locally by using something like Yelp or similar

    http://www.Yelp.com/search?find_desc=Apple+repair & find_loc = Chicago, + IT & start = 0 & ortby = rating s

    or read a few links which may be relevant on this forum about the slow mac mini

    http://BFY.tw/5C63

  • I have a complaint on my Mac Book Pro. I bought my computer in January 2016 and it has two problems: the first is the display of the retina that has many traces of the keyboard and as many times it freezes. I have looked for help on the local Apple Store

    I have a complaint on my Mac Book Pro. I bought my computer in January 2016 and it has two problems: the first is the display of the retina that has many traces of the keyboard and as many times it freezes. I have looked for help on the local Apple Store and support too, but it did not help. I would like you help me solve this problem.

    Thank you.

    Kelly

    Your machine is still under warranty, so you should take it to your local Apple store for repairs. Function late in January, you bought it, you still have phone without support. If you can't find any help on the Apple Store, then I don't know what you expect to find here. We have no way to check for problems you have described or any additional hardware, etc.

  • Jerky mouse mouseover function for all while the menu (file, options, help) and the key back/forward/home too. More scrolling is choppy every Web site.

    Jerky mouse mouseover function for all while the menu (file, options, help) and the key back/forward/home too. More scrolling is choppy every Web site since the update to version 3.6 to 4 RC1.

    Gel mouse pointer when it comes across objects that use some sort of animation or gradual highlighting when hovering on (which is basically all the Firefox 4 items menu, tabs, etc.) But also a lot of things on the Web pages as the green buttons on this page that change color when you hover over them).

    After rebooting my system, however, the problem seems to have disappeared!

    [, WinXP SP3 - 4 GB RAM, Core i5 M520, driver Nvidia NVS3100M 6.14.12.5738, Firefox 4.0]

  • iPhone iOS 9.2.1 5 c screen flickers once in a while. It's okay if I use an app or text my screen flickers and is based on an application or if I TEXT it random characters of text. Help solve the problem

    Title says it all. I need help with the issue fixed.

    Making a reservation at your nearest Genius Bar - Apple Store - analysis is free

    If no Apple store nearby, take it to the Apple authorized service provider - they establish their own assessment policies > https://locate.apple.com/

    Apple does NOT endorse them, but there are folk of 'independent' service which can do a very good job (caveat emptor)

  • Need help with the installation of an adapter of Palit GeForce 9500GT Super chart - 512 MB in a M2N68 (narrated

    Need help with the installation of an adapter of graphics Super Palit GeForce 9500GT - 512 MB - DDR2 SDRAM in a M2N68 motherboard (narra6). Should I disable the onboard graphics in the bios? When the card is installed, no VGA work outs and the PC does not start. Checked and recontroler implementation of the card in the PCI slot. PC is a desktop HP G5200uk PC. Windows 7 operating system.

    Hello

    The link below is a guige to install a video card in your Pc.  In particular, it seems that you will have to perhaps specify the location of the new card in the bios and save this change before you install the new card - see step 4 in the guide on the link below.  If your new card fits into the PCI Express x 16 slot, you will need to define PCI Express in the bios and save the changes.

    http://support.HP.com/us-en/document/c01700855

    Kind regards

    DP - K

  • Satellite Pro A300-15V, I need help in the Organization of my startup list

    Hello everyone!

    I need help in the Organization of my startup list:

    (Why should Toshiba button support I this program if my laptop doesn't have multimedia keys? OR maybe this program for something else?)
    ItSecMng (although I have disabled the Bluetooth Manager to run when starting from this point still remains in the startup)
    Agent of filtering of Audio Conexant high definition (what is this program? Do I really need to start?)
    TOSHIBA Power Saver
    Toshiba Flash Cards
    RAID event monitor

    So, my friends. Could you give a valuable suggestion whether or not it is prudent to disable startup above entries? I want to speed up my laptop at the highest possible level.

    Thanks a lot for your time!

    Kind regards
    Osman.

    My laptop:

    Toshiba Satellite Pro A300-15V (PSAJ5E) => NOT have multimedia keys except the FN keys.

    > Toshiba Button support (why should I this program if my laptop doesn't have multimedia keys? OR maybe this program for something else?)
    You can disable it. If your mobile phone does not support the multimedia buttons then this tool is useless.

    > ItSecMng (although I have disabled the Bluetooth Manager to run when starting from this point still remains in the startup)
    I don't know what would make this process, but you can disable this in msconfig-> tab start Mr. If it would take in the future, then you could turn it on again.

    > Agent of filtering the Conexant high definition Audio (what is this program? Do I really need to start?)
    I think that this is necessary. It could improve your audio

    > Toshiba Power Saver
    This is important. It s an additional saving of Toshiba option for Win 7

    > Toshiba Flash Cards
    This tool controls the FN keys.

    > RAID Event Monitor
    Hmm so you don t have two hard disks, then you can try to disable it too.

  • help with the beats on my envy 17-3270nr, n key

    help with the beats on my envy 17-3270nr key. recent Smart hard disk crash, replaced with exact same hitachi drive, same care extended warranty repairs covered of the Frys. Windows 7 Edition home premium w / service PAC 1 installed, drivers installed, except that now there is no volume of beats on screen graphic dial button, click the button on top button on the page does not call the beat of the application settings. Futhermore; the motion sensors of laser to activate the keyboard backlit keyboard do not work.  Are there drivers hp software to enable the missing features?

    Hello

    Download and install the following.

    HP OSD utility.

    Proximity sensor driver.

    Once completed, restart the laptop.

    Kind regards

    DP - K

  • I need help to the new photo of my photos from iphoto on El Capitan. Any help would be appreciated.

    I need help to the new photo of my photos from iphoto on El Capitan. Any help would be appreciated.

    To migrate your iPhoto library to Photos for Mac, drag it in the Photos icon in the Dock.  Photos will read the iPhoto library and create a new library of pictures of him.

    Is your photo library in iPhoto on an external drive? The migration will work that if the external hard drive Mac OS extended (journaled) file system.  If the library is on a disk with a different file system, Ministry of the environment of the library of a correctly formatted disk.

  • I need help with the program of Photos on my macbook pro

    I use a Macbook Pro with OS of Yosemite. I really need help with the Photo program. I never really got the hang of IPhoto and now that it's a new program, I'm really confused. Where can I go to learn this without waiting for the next workshop in a local store?

    Hi, I'm fighting to open same mine, making a new software update

Maybe you are looking for

  • Why is it all of Mozilla is blocked?

    I did a clean install of firefox (after having removed completely), and now I have a problem installing an addon or to access the mozilla Web sites. In fact, open Web sites, but does not load correctly. The text is downloaded. This happens with all t

  • Droid Razr does not illuminate

    My Droid Razr turns off after a phone call ended this morning and now it won't turn back on. The phone was fully charged and ive tried a soft reboot by removing the SIM for a few seconds and put back in then try to turn it on. Nothing works. Anyone k

  • HP Envy Printer 4500: HP Envy 4500 printer

    I'm an overlay in red when I print pictures in color on photo paper.  I made diagnostic tests and have been informed that the printer/scanner is correct.  The problem started when I ran downstairs on the ink.  I changed the black and color cartridges

  • I would like to change on my Windows Vista Home Premium PC's local security policies.

    I would like to change on my Windows Vista Home Premium PC's local security policies.  Is this possible?  If so, how?  I have no secpol.msc or "Local safety Strategies" under administrative tools.

  • Configuration and installation of 5.4 Tb DR 4100

    Hello Please I would like to know how to install and configure a dell DR4100. Wiring to the settings