[Proto-Scripty] Re: Effect.Appear doesn't work when in queue

2009-05-01 Thread Matt Foster

In looking at your code, there were a few HTML mistakes.

First your try me element doesn't have a proper closing div tag its
just /div  no greater than to close the tag.

You've also does this on your input buttons, input objects are
considered simple, meaning they have no children, so having a separate
closing tag is bad practice.

You have...
input type=button onclick=return gotoNewAccount
(document.getElementById('newUserTextbox').value);
id=newUserSubmitFromHome value=create account/input

it should be
input type=button onclick=return gotoNewAccount
(document.getElementById('newUserTextbox').value);
id=newUserSubmitFromHome value=create account/

--

http://positioanbsolute.net


On Apr 30, 10:55 pm, alpineedge3 gmarzl...@gmail.com wrote:
 thanks for the reply. i removed the quotes from the duration but it
 still does not work.

 On Apr 26, 12:38 pm, Diodeus diod...@gmail.com wrote:

  function barcodeFlyToSimLeft(){
     new Effect.Move('barcodeLeft',{x: -350, y: 200, mode: 'relative'});
     new Effect.Shrink('barcodeLeft',{direction: 'center', queue: 'end',
          afterFinish: function(){Barcode('043396097742');}});
     new Effect.Appear('barcodeLeft',{x: 0, y:0, duration: '1.0', queue:
  'end'});
     return false;

  }

  Duration should be numeric, not a string.

  On Apr 24, 5:26 pm,alpineedge3gmarzl...@gmail.com wrote:

   Hi,

   I'm running an effect chain: move, shrink, then appear. The appear
   effect doesn't fade in. rather, it just becomes visible with 100%
   opacity.

   The scripts are controlling the barcode boxes on the homepage 
   ofwww.fastpricecheck.com.

   Any help would be appreciated. Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Effect.Appear doesn't work when in queue

2009-04-30 Thread alpineedge3

thanks for the reply. i removed the quotes from the duration but it
still does not work.

On Apr 26, 12:38 pm, Diodeus diod...@gmail.com wrote:
 function barcodeFlyToSimLeft(){
    new Effect.Move('barcodeLeft',{x: -350, y: 200, mode: 'relative'});
    new Effect.Shrink('barcodeLeft',{direction: 'center', queue: 'end',
         afterFinish: function(){Barcode('043396097742');}});
    new Effect.Appear('barcodeLeft',{x: 0, y:0, duration: '1.0', queue:
 'end'});
    return false;

 }

 Duration should be numeric, not a string.

 On Apr 24, 5:26 pm,alpineedge3gmarzl...@gmail.com wrote:

  Hi,

  I'm running an effect chain: move, shrink, then appear. The appear
  effect doesn't fade in. rather, it just becomes visible with 100%
  opacity.

  The scripts are controlling the barcode boxes on the homepage 
  ofwww.fastpricecheck.com.

  Any help would be appreciated. Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---



[Proto-Scripty] Re: Effect.Appear doesn't work when in queue

2009-04-26 Thread Diodeus

function barcodeFlyToSimLeft(){
   new Effect.Move('barcodeLeft',{x: -350, y: 200, mode: 'relative'});
   new Effect.Shrink('barcodeLeft',{direction: 'center', queue: 'end',
afterFinish: function(){Barcode('043396097742');}});
   new Effect.Appear('barcodeLeft',{x: 0, y:0, duration: '1.0', queue:
'end'});
   return false;
}

Duration should be numeric, not a string.

On Apr 24, 5:26 pm, alpineedge3 gmarzl...@gmail.com wrote:
 Hi,

 I'm running an effect chain: move, shrink, then appear. The appear
 effect doesn't fade in. rather, it just becomes visible with 100%
 opacity.

 The scripts are controlling the barcode boxes on the homepage 
 ofwww.fastpricecheck.com.

 Any help would be appreciated. Thanks!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
Prototype  script.aculo.us group.
To post to this group, send email to prototype-scriptaculous@googlegroups.com
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~--~~~~--~~--~--~---