Re: [Proto-Scripty] Morph and setTimeout

2010-07-20 Thread Ralph Brickley
AfterFinish!!! Brilliant. Sent from my iPhone On Jul 20, 2010, at 2:15 PM, Martín Marqués wrote: > 2010/7/20 Rick.Wellman : >> Oops, already made a mistake; Make that: >> >> var cmd = "$('masinfo'" + id + ").show()"; >> setTimeout(cmd,500,id); > > Yeah, this is how I made it work, but it's

Re: [Proto-Scripty] Morph and setTimeout

2010-07-20 Thread Ralph Brickley
JavaScript doesn't know what the +id is because it's within the double quotes. Do this instead > setTimeout("$('masinfo'"+id+").show()",500,id); > } Sent from my iPhone On Jul 20, 2010, at 12:59 PM, Martín Marqués wrote: > I'm trying to mix Effect.Morph and setTimeout() to enlarge a div and

Re: [Proto-Scripty] Effect.multiple and toggle

2010-07-20 Thread Ralph Brickley
This is a revelation to me. I didn't know Effect had a multiple. Also, what is curry? My solution has been to tag those elements with a class, ie Then use $$('effects') to get each item and all effects... On each Sent from my iPhone On Jul 20, 2010, at 9:08 AM, Richard Quadling wrote: > On

[Proto-Scripty] Carousel effects

2010-03-24 Thread Ralph Brickley
Hello all!! I'm trying to create a carousel script and am stumbling. Basically I have a div with overflow:hidden and a ul inside with my sized slides. When you click next or previous I do $$('.slide').each ( function(e) { new Effect.Move(e, { x:-250 } ); }); This is paraphr

Re: [Proto-Scripty] Re: Prototype Form.Serialize() problem

2010-03-21 Thread Ralph Brickley
-scripty.wikidot.com/self-contained-test-page -- T.J. Crowder Independent Software Consultant tj / crowder software / com www.crowdersoftware.com On Mar 20, 10:18 pm, "Ralph Brickley" wrote: When I use serialize() on a form for an ajax call, only the first form field is being sent in G

[Proto-Scripty] Prototype Form.Serialize() problem

2010-03-20 Thread Ralph Brickley
When I use serialize() on a form for an ajax call, only the first form field is being sent in Google Chrome but all items are sent in IE. This is a common problem? Ralph Brickley Owner logotrans 435 NE Evans St Ste 115 - P.O. Box 510 McMinnville, OR 97128 (503) 857-7898 Cell

RE: [Proto-Scripty] Help! IE Problem

2010-03-19 Thread Ralph Brickley
Nevermind Simple misunderstanding of asynchronous.. too many hours typing ... Ralph Brickley Owner logotrans 435 NE Evans St Ste 115 - P.O. Box 510 McMinnville, OR 97128 (503) 857-7898 Cell | (503) 472-7914 Office | (800) 986-0276 Fax <http://www.topsoftweb.

RE: [Proto-Scripty] Help! IE Problem

2010-03-19 Thread Ralph Brickley
emplate_preview_box')); if I alert($('Template').value) right before I call request_template(...) in IE I get undefined, in Firefox I get the proper result. I'm really not sure why this is happening? Ralph Brickley Owner logotrans 435 NE Evans St Ste 115 - P

[Proto-Scripty] Help! IE Problem Update

2010-03-19 Thread Ralph Brickley
As an update, you can view the problem here: http://www.topsoftdesignstudio.com/eznewsletter/newsletter.php?page=newslett er&action=send Click the Preview link. Ralph Brickley Owner logotrans 435 NE Evans St Ste 115 - P.O. Box 510 McMinnville, OR 97128 (503) 857-7898

[Proto-Scripty] Help! IE Problem

2010-03-19 Thread Ralph Brickley
x27;, action: 'request', type: 'template', Template: template } }); } Both the alert and element.innerHTML show 1 in Firefox, and blank or undefined in IE. My server code is simply: echo "1"; exit; Help!!! Ralph Brickley Owner

RE: [Proto-Scripty] Pause on MouseOver

2010-01-05 Thread Ralph Brickley
erval(intervalID)" onMouseOut="intervalID = setInterval( ... )" Ralph Brickley Owner 435 NE Evans St Ste 115  -  P.O. Box 510  McMinnville, OR 97128 (503) 583-1830 Cell  |  (503) 472-7914 Office  |  (800) 986-0276 Fax www.topsoftdesignstudio.com -Original Mess

[Proto-Scripty] Re: Error: element.getInlineOpacity is not a function

2009-10-17 Thread Ralph Brickley
Figured it out. Was a simple lack of understanding numbers in Javascript. Var countdown = 15; Countdown = countdown - 1; That converted countdown to NaN, or a string. Using -- worked ... my javascript error code was crashing effects.js. Sorry! -Original Message- From: TopSoft [mailto