PDA

View Full Version : Bookmark function (anchor link)


kusalacitta
11-30-2005, 07:34 AM
Hi all,
Is there possible way in Laszlo to make bookmark function like <a href='#otherlink'> on HTML?
So If I click on the text link that contain anchor link it should going to the other part of the same app and showing the content.

Thanks

mt1
01-10-2006, 08:39 PM
Yes i am looking forward this function too.
Can we this?

bfagan
01-11-2006, 06:20 AM
You want something like this:


<canvas width="500" height="400">
<view width="200" height="200" clip="true">
<view name="content" width="180" height="300">
<text text="click me">
<method event="onclick">
parent.setY(-100);
</method>
</text>
<text y="280" text="bottom"/>
</view>
<scrollbar />
</view>
</canvas>