Writing 70-536 and 70-642 is not a big issue for a 642-642 professional, especially since they all have done 350-018 as well as 70-647 and 640-816 earlier in their careers.

About anchor links

In html you can link to a speciffic area of a html page by adding anchors, for example this link will point you to the “solution” area of this page; you link to an area of a page (to an anchor) by adding # after file name followed by the anchor name, e.g: products.php#product4 or just #product4 if destination is on same page.

The ‘namedanchor’ (destination) is written like this in the html code.


The flash issue

When you want a flash button to open a Named Anchor inside the html page normally you would think that the link can be open by something like this:

getURL(’products.php#product4′);

but the above will not work because of some flash limitations
Solution

Write a really short javascript in the html page and set the getURL from flash to trigger that JavaScript.

Write this function in … area of html code:

Modify getURL actions from flash to call the above JavaScript:
getURL(”javascript:openNewWindow(’anchor_test.html#title2′,’_parent’)”;

This solution was tested and worked in both Internet Explorer and Mozilla Firefox type browsers.