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?
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