joeheader16
friendsoffortiesfive Aimoo Forum List | Ticket | Today | Member | Search | Who's On | Help | Sign In | |
friendsoffortiesfive > General > General Discussion Go to subcategory:
Post New Topic Reply
Author Content
Zenith
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Date Posted:10/23/2022 7:14 PMCopy HTML

WORKSPACE SETUP:
Make a WORK folder somewhere on your computer...
How about DESKTOP >> CODE >> GAMES >> WORK.

In WORK folder put some of these, as you require them:

Images Folder
Prototype Folder
Backup Folder
Archive Folder (with game sub-folders)
Shortcut to aimoo site
Shortcut to alternate site(s)
MakeNew.bat (create one or more .. see tut)

Whatever else you need!

  Image Host Link:
   (https://freeimage.host/yourname/albums)
  Tiles.txt File Link: (local after creation)
   A list of image links from Image Host
  Colorpicker.exe Link: (local after install)
   (https://quick-html-color-picker.soft112.com/)
  Color Chart Link:
   (https://www.w3schools.com/colors/colors_picker.asp)
  Dictionary Link:
   (https://www.dictionary.com/)
  Thesaurus Link:
   (https://www.thesaurus.com/)
  Rhyming Link:
   (https://www.rhymezone.com/r/rhyme.cgi?Word=&typeofrhyme=perfect&org1=syl&org2=l&org3=y)
  Xworder Link:
   (http://www.xworder.com/Xword.aspx)
  Irfanview Image Ed  Link: (local after install)
   (https://www.irfanview.com/)

CONCEIVE, BELIEVE, ACHIEVE!
Zenith #1
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 7:18 PMCopy HTML

REM Call this MakeNew.BAT or your_choice.BAT
REM Creates a folder in current folder
REM .. named whatever you enter,
REM .. and copies local blank.dat into
REM .. the new folder renamed as
REM .. MYGAME_whatever.txt
REM FOLDER NAME could be a game number.
REM MYGAME can be changed to your game name.
REM =========================================

@ECHO OFF
SET /P var=[FOLDER_NAME=?]
REM %var%=FOLDER NAME
MD %var%
COPY blank.dat %var%\MYGAME_%var%.txt
PAUSE
EXIT

REM =========================================
CONCEIVE, BELIEVE, ACHIEVE!
Zenith #2
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 7:24 PMCopy HTML

OK, the batch file demo can create new folders and contents, instead of your normal step-by-step manual routine. If you need help with a special batch file, my email is: [email protected].
Zenith #3
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 7:46 PMCopy HTML

So, I guess an HTML game creation tut is called for if anyone bites on this! It's fun for me, but maybe tedious for someone else. Let me know, if I should make one. Actually a prototype that you can change colors and resize stuff, add different pics, etc. might do the job. Inline CSS (cascading style sheets) code is fairly easy to learn, to dress up the HTML skeleton.
Zenith #4
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 8:01 PMCopy HTML

Actually the HTML code for the  above demo, with corrupting spaces in the tags, so you can see it here is: < div style="color:#000066;font-size:14pt;font-weight:900;padding:30px;width:600px;border:20px double #000066;font-family:'Courier New';" > REM Call this MakeNew.BAT or your_choice.BAT< br > REM Creates a folder in current folder < br > REM .. named whatever you enter,< br > REM .. and copies local blank.dat into< br > REM .. the new folder renamed as< br > REM .. MYGAME_whatever.txt< br > REM FOLDER NAME could be a game number.< br > REM MYGAME can be changed to your game name.< br > REM =========================================< br >< br > @ECHO OFF< br > SET /P var=[FOLDER_NAME=?]< br > REM %var%=FOLDER NAME< br > MD %var%< br > COPY blank.dat %var%\MYGAME_%var%.txt< br > PAUSE< br > EXIT< br >< br > REM =========================================< /div >
Zenith #5
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 8:16 PMCopy HTML

Just change the text and you have a dark blue frame for your stuff. < br > means new line or break, (without the spaces). You would create a new line if the spaces were removed in here. ===< br >=== ===
===
Zenith #6
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/23/2022 8:44 PMCopy HTML

In Notepad++ you get colored code like this:

CONCEIVE, BELIEVE, ACHIEVE!
Zenith #7
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/24/2022 4:14 PMCopy HTML

INLINE CSS:

One important factor in the forumotion and aimoo editors is that all CSS code must appear on one unbroken line. Browsers other than Mozilla CHANGE THE CODE to something that the site editor cannot fix to suit itself. IE is a programmer's nightmare, by the way, and always needs a fix in practically any code language. =============================================== The inline CSS code I use mainly is as follows: =============================================== width:400px; ... width can be auto height:500px; ... seldom required border:8px solid #663300; ... usually a thin outer line ... see below for options margin:0px auto; ... this centers the object (table) in its container (page) text-align:center; ... this centers the text or image within the container (td) font-size:28px; ... 28 is huge, normal is about 14 line-height: 28px; ... use 1px with images or you get blank space underneath font-weight:900; ... 900 is maximum bold, normal 600 color:#663300; ... this pertains to font ... see chart link at bottom padding: 0px; ... space around inside of a cell (td) and its content ------------- NOTE:border-spacing ... other info is below re position, type, color, etc ... border-spacing:25px; ... background color or image is located in here background-color:#FFFFCC; background-image:url('http://myhost.com/htmltiles/bunny-tile.jpg'); NOTE: background-image takes precedence over background-color background-size:100% 100%; ... stretches image to fill box background-repeat:no-repeat; ... see following ... ----------- repeat The background image is repeated both vertically and horizontally ... The last image will be clipped if it does not fit. This is default repeat-x The background image is repeated only horizontally repeat-y The background image is repeated only vertically no-repeat The background-image is not repeated. The image will only be shown once space The background-image is repeated as much as possible without clipping. The first and last images are pinned to either side of the element, and whitespace is distributed evenly between the images round The background-image is repeated and squished or stretched to fill the space (no gaps) initial Sets this property to its default value. inherit Inherits this property from its parent element ---------- border: is a short form which includes border-width: border-style: border-color: Some browsers will split the borders into: border-left: border-top: border-right: border-bottom: border styles can be: solid .. used by Dave often, 5 to 10px wide double .. used by Dave often, 10 to 20px wide dotted .. seldom used by Dave dashed .. seldom used by Dave groove .. color is much lighter in Firefox ridge .. color is much lighter in Firefox .. used by Dave once in a while inset .. color is much lighter in Firefox outset .. color is much lighter in Firefox none .. seldom used by Dave hidden .. seldom used by Dave border colors can be: name - specify a color name, like "red" Hex - specify a hex value, like "#ff0000" RGB - specify a RGB value, like "rgb(255,0,0)" transparent border-radius:10px; ... used to add rounded corners to a box (td) Color chart at: https://www.w3schools.com/colors/colors_picker.asp font-family: These can be listed in order of preference, with separating commas. Arial Arial Black Comic Sans MS Courier New Georgia Impact Sans-serif Serif Times New Roman Trebuchet MS Verdana
CONCEIVE, BELIEVE, ACHIEVE!
Zenith #8
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/24/2022 5:28 PMCopy HTML

ZENITH'S COLOR TUTORIAL

The hexadecimal (base-16) color system uses 16 single-digit numbers.

00,01,02,03,04,05,06,07,08,09,10,11,12,13,14,15  decimal
 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F  hexadecimal

Hexadecimal number format is: #RrGgBb usually in steps of 33 hex ... max FF
RGB color format is: rgb(R ,G ,B ) usually in steps of 51 dec ... max 255

Kid's paint set primaries are RED, YELLOW, and BLUE
Light-mixed primary colors are red, green, and blue.

red and green  = yellow
red and blue   = magenta
green and blue = cyan

red and green and blue = gray #808080, or other equal numbers
Max gray = white #FFFFFF
Min gray = black #000000

As numbers go down the colors get darker.

Browsers differ, but normally they agree on steps of 33Hex or 51Decimal.
These steps are separated fairly well. 
Colors off by 1 unit are tough to tell apart.

Check out colors at: https://www.w3schools.com/colors/colors_picker.asp
CONCEIVE, BELIEVE, ACHIEVE!
Zenith #9
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/24/2022 6:12 PMCopy HTML

** BROWSER-SAFE COLORS **

#000000#000033#000066#000099#0000CC#0000FF
#000000#003300#006600#009900#00CC00#00FF00
#000000#003333#006666#009999#00CCCC#00FFFF
#000000#330000#660000#990000#CC0000#FF0000
#000000#330033#660066#990099#CC00CC#FF00FF
#000000#333300#666600#999900#CCCC00#FFFF00
#000000#333333#666666#999999#CCCCCC#FFFFFF

 

** PASTELS FOR BACKGROUNDS **

#FFFF33#FFFF66#FFFF99#FFFFCC#FFFFEE
#FF33FF#FF66FF#FF99FF#FFCCFF#FFEEFF
#FF3333#FF6666#FF9999#FFCCCC#FFEEEE
#33FFFF#66FFFF#99FFFF#CCFFFF#EEFFFF
#33FF33#66FF66#99FF99#CCFFCC#EEFFEE
#3333FF#6666FF#9999FF#CCCCFF#EEEEFF
CONCEIVE, BELIEVE, ACHIEVE!
Niceguy2 #10
  • Rank:Diamond
  • Score:329800
  • From:USA
  • Register:01/12/2009 5:00 AM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/25/2022 1:29 AMCopy HTML

Hey Dave, when I need a specific color, I go here:
Hex Color Codes (december.com)

Zenith #11
  • Rank:Emerald
  • Score:89070
  • From:Canada
  • Register:07/31/2019 10:06 PM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/25/2022 12:27 PMCopy HTML

That's a good one for named colors, Joe. I have some that I like for borders CCCC00 for gold 009900 or 006600 for green 663300 for brown 000066 for dark blue 808080 for mid gray There is also a color picker that matches colors in an image, that is  tough to do trying to match colors on a palette. Let me go find it.


https://download.cnet.com/Quick-HTML-Color-Picker/3001-2192_4-10400979.html


QueenFoxy #12
  • Rank:Ruby
  • Score:68310
  • From:USA
  • Register:10/20/2008 1:04 AM

Re:DESKTOP WORKSPACE FOR GAME CREATION

Date Posted:10/25/2022 3:09 PMCopy HTML

I use Color-Zilla and it is fantastic.

Post New Topic Reply
Copyright © 2000- Aimoo Free Forum All rights reserved.
Skin by SandhillsDebby - Elements from DivaAmyMarie.blogspot.com