[Proto-Scripty] scriptaclous scrollTo effect in a div??

2008-12-12 Thread uncleroxk
Hi, i really like the effect of scrollTo in scriptaclous, but how do i implement it in a div(overflow). Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us group. To post to this group,

[Proto-Scripty] help with edit-in-place editor

2008-11-22 Thread uncleroxk
Hi, let say that i have a div and i want to use a edit-in-place editor for it.. it will have a Click here to add. text in it, but i want it to disappear with the user click on it(so that it will not be inside the textarea) and reappear when the textarea is gone, provided the field is empty.. How

[Proto-Scripty] script.aculo.us syntax ??

2008-10-30 Thread uncleroxk
Hi all, currently i am learning script.aculo.us.. and i have some question on a bit of syntax here.. //css #box { width: 300px; height: 300px; position: relative; background-color: #ddd; } //html div id=box/div //js script new Effect.Morph('box', {style:left: 50px; top:

[Proto-Scripty] Re: script.aculo.us syntax ??

2008-10-30 Thread uncleroxk
edit $('box')..scale(150); TO $('box').scale(150); and addition this... //not working too $('box').move({x: 125px, y: 150px}); --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Prototype script.aculo.us

[Proto-Scripty] Re: problem with myajax oncomplete callback function

2008-09-29 Thread uncleroxk
Hi all, here is my latest code, still doesnt work with ie, but it is cleaner and neater now, before i continue, i would like to thanks those who have try to help me.. =D A variable call last is use to track the latest post id, so that i could use it to query the database and retrieve messages

[Proto-Scripty] problem with myajax oncomplete callback function

2008-09-28 Thread uncleroxk
Hi, i have a problem with this ajax oncomplete callback function, it works with firefox but not in internet explorer.. i tried to debug with firebug, everythings seems ok until this line of code.. var response = eval(( + request.responseText + )); //i suspect something wrong in here