On Sat, 15 Oct 2005 00:36:50 -0700 Arlo <[EMAIL PROTECTED]> babbled:

> I'm working on an entrance theme...
> 
> When I catch a signal the action within the catching program doesn't use 
> its transition.  I tried running a program after the catching program to 
> do the STATE_SET transition, but the transition still wouldn't show.  
> (The exact behavior was to jump directly to the end state and wait until 
> the end of the transition period before running the after program)  I 
> finally found a solution by setting the state to "default" immediately 
> and then doing my transition in the after program.
> 
> Any ideas why this error exists?

sounds like its being triggered teice in short succession. thats why it jumped
to the end. either that or the progrma is being stopped and killed and thus
jumping to its final position.

> 
> Shows no Transition:
> 
> program {
>  name: "no_user_error";
>  signal: "entrance,user,fail";
>  source: "";
>  action: STATE_SET "error" 0.0;
>  transition: SINUSOIDAL 1.0;
>  target: "question_mark";
> }
> 
> Solution:
> 
> program {
>  name: "no_user_error";
>  signal: "entrance,user,fail";
>  source: "";
>  action: STATE_SET "default" 0.0;
>  target: "question_mark";
>  after: "no_user_anim";
> }
> program {
>  name: "no_user_anim";
>  signal: "";
>  source: "";
>  action: STATE_SET "error" 0.0;
>  transition: SINUSOIDAL 1.0;
>  target: "question_mark";
> }
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by:
> Power Architecture Resource Center: Free content, downloads, discussions,
> and more. http://solutions.newsforge.com/ibmarch.tmpl
> _______________________________________________
> enlightenment-devel mailing list
> enlightenment-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
> 


-- 
------------- Codito, ergo sum - "I code, therefore I am" --------------
The Rasterman (Carsten Haitzler)    [EMAIL PROTECTED]
裸好多
Tokyo, Japan (東京 日本)


-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to