Changeset - 9827df597f86
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 20 years ago 2005-06-05 07:02:41
drewp@bigasterisk.com
added help texts to subcomposer, curvecalc
2 files changed with 9 insertions and 0 deletions:
0 comments (0 inline, 0 general)
bin/curvecalc
Show inline comments
 
@@ -269,6 +269,10 @@ def savekey(*args):
 
root.bind("<Control-Key-s>",savekey)
 

	
 
create_status_lines(root)
 
for helpline in ["Bindings: C-s save subterms; B1 drag point; C-B1 curve add point; 1..5 add point at time; Esc see current time; Mousewheel zoom",
 
                 "Available in functions: nsin/ncos period=amp=1; within(a,b) bef(x) aft(x) compare to time; smoove(x) cubic smoothstep; curvename(t) eval curve"]:
 
    tk.Label(root,text=helpline, font="Helvetica -12 italic",
 
             anchor='w').pack(side='top',fill='x')
 
    
 
recent_t=[]
 
later = None
bin/subcomposer
Show inline comments
 
@@ -131,11 +131,16 @@ def open_sub_editing_window(subname, use
 
if __name__ == "__main__":
 
    root=tk.Tk()
 
    root.config(bg='black')
 
    root.wm_title("subcomposer")
 
    root.tk_setPalette("#004633")
 

	
 
    sc = Subcomposer(root, dmxdummy=0)
 
    sc.pack()
 

	
 
    tk.Label(root,text="Bindings: B1 adjust level; B3 instant bump",
 
             font="Helvetica -12 italic",anchor='w').pack(side='top',fill='x')
 
    
 

	
 
    while 1:
 
        if 0:
 
            for i in range(20): # don't let Tk take all the time
0 comments (0 inline, 0 general)