Templet


Templet created now to do a series of .png images
Using magic mask for all green areas
Inverted the selection
copied it
pasted as a new image
and saved it to a .png
This a jpg 



This the png. I want to share this series so others can paste them in their own paint program. 








I am working on a composite video. The lower left will have the earth orbiting the sun.


To do this I had to create 365 pics, sun in the middle and square to use the position function.
Finally got that done, now I have them all created, I have the orbit pics MP001B.JPG .. MP365B.JPG
The matching templet pics are MP001.JPG .. MP365.JPG (excluding the B)
I load the templet pics then the orbit pictures.
Copy MP007B.JPG, delete it
Paste that copy as a new layer.
Object aline left
Object aline bottom
Save it then delete it.
I have to repeate this 365 times... anyone able to write a macro to do this?
Where I am now Templet 






The templet being composed of 12 subs with different border colors so when the video scrolls by the month change will be noticed.
The orbit files are named 
MP004B.JPG so the templet files will be named MP004.JPG with out the B, so they will be listed together  .
After the orbit jpg is pasted into the matching templet jpg, it will need to alined to the bottom left and saved.


 The bottom left will be covered with the orbit, the colors of borders for each month.
The year calendar shows the day numbers of the first and last day of the month.. i.e. Feb 32-59
Program kind of for r = 32 to 59:copy MPFEB.jpg to
MP001.JPG.. MP059.JPG
Using a code that will change the numbers
Program generated

1 REM TEMPLET.BAS
10 GOTO 100
20 N$=STR$(R):N$=MID$(N$,2,5)
25 N$="0000"+N$:N$=RIGHT$(N$,3)
30 TP$="MP"+N$+".JPG"
35 S$="COPY "+T$+" "+TP$
36 PRINT S$
37 SHELL S$
80 RETURN
99 REM *****************************************
100 T$="Z01JAN.JPG":FOR R=1 TO 31
110 GOSUB 20
120 C=C+1
130 NEXT R
140 REM ***************************************
150 T$="Z02FEB.JPG":FOR R=32 TO 59
160 GOSUB 20
170 C=C+1
180 NEXT R
190 REM ***************************************
200 T$="Z03MAR.JPG":FOR R=60 TO 90
210 GOSUB 20
220 C=C+1
230 NEXT R
240 REM ***************************************
250 T$="Z04APR.JPG":FOR R=91 TO 120
260 GOSUB 20
270 C=C+1
280 NEXT R
290 REM ***************************************
300 T$="Z05MAY.JPG":FOR R= 121 TO 151
310 GOSUB 20
320 C=C+1
330 NEXT R
340 REM ***************************************
350 T$="Z06JUN.JPG":FOR R=152 TO 181
360 GOSUB 20
370 C=C+1
380 NEXT R
390 REM ***************************************
400 T$="Z07JUL.JPG":FOR R=182 TO 212
410 GOSUB 20
420 C=C+1
430 NEXT R
440 REM ***************************************
450 T$="Z08AUG.JPG":FOR R=213 TO 243
460 GOSUB 20
470 C=C+1
480 NEXT R
490 REM ***************************************
500 T$="Z09SEP.JPG":FOR R=244 TO 273
510 GOSUB 20
520 C=C+1
530 NEXT R
540 REM ***************************************
550 T$="Z10OCT.JPG":FOR R=274 TO 304
560 GOSUB 20
570 C=C+1
580 NEXT R
590 REM ***************************************
600 T$="Z11NOV.JPG":FOR R=305 TO 334
610 GOSUB 20
620 C=C+1
630 NEXT R
640 REM ***************************************
650 T$="Z12DEC.JPG":FOR R=335 TO 365
660 GOSUB 20
670 C=C+1
680 NEXT R
690 REM ***************************************
700 PRINT C



zzz