I created the blocks in Adobe illustrator and completed the Animation without problems. The available "Action" options in Adobe Edge : (window.open) both force a relaod. I am linking to a div in the same page so the link would be local, how can I do this in edge or how do i import the blocks with hotspot from forworks.
Thanks,
Roger
Try out this in compositionReady handler for the stage:
sym.$("RoundRect").append("<a href='#Stage_RoundRect2' style='width:100%; height:100%; position:absolute;'></a>");
This says that we are adding an <a> tag inside element name "RoundRect" with same height and width, which when clicked will scroll the page down to the element "RoundRect2".
But the href takes an id of that element, not the name of the element that is internal to Edge Animate. Edge Animate element on the stage will have an id of "Stage_RoundRect2", so I used href="#Stage_RoundRect2".
See the composition created at https://www.dropbox.com/s/35sgurk89skl9ct/navigateWithinPage.rar?dl=0
hth,
Vivekuma