r3d1405241470
Members-
Content Count
279 -
Joined
-
Last visited
Everything posted by r3d1405241470
-
which program is good for flash
r3d1405241470 replied to bamshad's topic in Graphics, Design & Animation
in your choices i think the best one is flash mx. i also tried swish max and it's good and fast in creating animating text, one click text animation. i didn't tried free hand coz i have ps and illustrator, i'd use this program to import gfx to flash for a nice and cool background -
also by mastering one programming languages you can do all of that charateristic in just one
-
sweet :)thnx for that, i think i should stick to my c++ refresher course
-
just put all the links in database and include them in your index file
-
outch Xisto hosting has no gd support for the moment, may be... this is part of the problem . and the tutorial won't work at this time. plz be patient while the admin is fixing this
-
same here i use dreamweaver in code mode, in the past i use notepad but it sux no code highlight, no autotag completion, no built in ftp. notepad is boring specially working on huge site
-
i believe that no programming langauges is hard to learn except asm(painfull and tough), you just need lot of resource and lot's of time.
-
you can find more stuffs made by google in thier laboratory
-
With php gd is the image function library of php. The functions include in this library enable php users to creating image up to manipulating photos. PHP gd can create with file extension of jpg, gif, swf, tiff and jpeg2000. Installation see http://php.net/manual/en/ref.image.php. Xisto hosting service has enable gd library, so wonât need any extra works except in coding. Lets get started, creating images from php set the canvas: $img = imagecreate(250, 80) imagecreatethis function create and set a blank canvas with the wide of 250 pixels and height of 80 pixels. setting the basic colors: $black = imagecolorallocate($img, 0, 0, 0) $white = imagecolorallocate($img, 255, 255, 255) $red = imagecolorallocate($img, 255, 0, 0) $green = imagecolorallocate($img, 0, 0, 255) imagecolorallocate $img represent the canvas. the next three value is color value in rgb(0-255), you also set the color in hex (0x00 â 0xff). drawing a something: imagerectangle($img, 10, 10, 240, 70, $white) imagerectangle this function create a rectangle a width of 230[240(x2) â 10(x1)] and a height of 60[70(y2) â 10(y1)]. $img the canvas, the first two value sets the starting point(x1, y1) . and last two number is the ending(x2, y2). And the last value is the color. imagefilledrectangle($img, 20, 20, 60, 60, $red) imagefilledrectangle this function create a filled rectangle with a color red. All values is the same as the imagerectangle function. imagefilledellipse($img, 90, 40, 40, 40, $blue) imagefilledellipse this one creates an ellipse(circular objects). $img is the canvas, the first two value(cx, cy) set the origin(center) of the ellipse. The third value set the width(horizontal width) and fifth one is the height(vertical width). Last but not the least the color value. $corners = array( 0 => 190, 1 => 60, 2 => 210, 3 => 20, 4 => 230, 5 => 60, ); imagefilledpolygon($img, $corners, 3, $white); imagefilledellipse and the last drawing function I discuss is a polygon function, in the example thereâs only 3 corners. The first value is the canvas, the second one is the corners in array, the value 3 is the number of vertices, and the last one is color. Showing the graphics: header("Content-type: image/jpeg") imagejpeg($img) header imagejpeg To output the image you must first send the appropriate header, in this example I use jpg extension and the content type is set to âimage/jpegâ. And call the imagejpeg function to create the images and shown up to the browser. For other file type such as png(image/png), gif(image/gif), windows bitmap(image/vnd.wap.wbmp), check php manual for details. And finally, use the imagedestroy function just to clear up the memory used by the imagecreate functions. Final code should look like this. <?php$img = imagecreate(250,80);$black = imagecolorallocate($img, 0, 0, 0);$white = imagecolorallocate($img, 255, 255, 255);$red = imagecolorallocate($img, 255, 0, 0);$green = imagecolorallocate($img, 0, 255, 0);$blue = imagecolorallocate($img, 0, 0, 255);$corners = array(0 => 190,1 => 60,2 => 210,3 => 20,4 => 230,5 => 60,);imagerectangle($img, 10, 10, 240, 70, $white);imagefilledrectangle($img, 20, 20, 60, 60, $red);imagefilledellipse($img, 90, 40, 40, 40, $blue);imagefilledellipse($img, 150, 40, 70, 40, $green);imagefilledpolygon($img, $corners, 3, $white);header ("Content-type: image/jpeg");imagejpeg($img);imagedestroy($img);?>enjoy
-
if gbrowser's support for css1 100% and css 2 100% and xhtml 100% i'll stick to it
-
Some answers Answers that users are looking for
r3d1405241470 replied to roberrtk's topic in Web Hosting Support
actually true. and most advance user notice this earlier, may be that's why thier migrating. but according to him(read opaque his post)... actually i'm trying a bias though. i have lot of hosting so i don't afraid to lose one. my frnd also try a hosting like this one but for group personal hosting only and this is not a good idea it really sux relying on banners for a payment but who know what's his up to. he might want to prove something i don't know. as far as i concern i have a hosted site here so i need to support this host like what i did to other host. and i'm also tracking a ****ing user who hack my site long time ago(payback time) gathering info about him(phsyco) and he is not active now. anyway i'd like the idea of this one(opaque) sharing what he have, and about free hosting as far i understand free host it is just like a temporary hosting not for life. and this host is much better than those hosting who own the server but after a month goes down for unkown reason. anyway it's up to if you would like to enjoy this host -
Some answers Answers that users are looking for
r3d1405241470 replied to roberrtk's topic in Web Hosting Support
google is not gone it's just disable for some weeks. may be some stupid users over clicking the adds. anyway i came here for my hosting not for answer, but i allready have the answer replied by opaque and i'm satisfied with it (poor opaque doesn't know what his talking out there ) -
more google index https://www.google.com/unclesam https://www.google.com/microsoft https://www.google.com/mac https://www.google.com/linux https://www.google.com/bsd https://www.google.com/?hl=xx-klingon&gws_rd=ssl https://www.google.com/?hl=xx-bork&gws_rd=ssl https://www.google.com/?hl=xx-elmer&gws_rd=ssl https://www.google.com/?hl=xx-piglatin&gws_rd=ssl https://www.google.com/?hl=xx-hacker&gws_rd=ssl google laboratory main laboratory shortcut keys for google google sets voice search google web quotes personalize google enjoy
-
Why? Why require 50posts?
r3d1405241470 replied to spacewaste1405241471's topic in Web Hosting Support
simple nothing is free in this world and and your 10 post is your primary payment, you can upgrade your hosting account when you reach 50 post. and you will be the lucky one if you get hosted here. just think of unlimited mysql, 2G BW and 150 MB web space and more you won't have that in any hosting -
basic = noobs :)but i found some ppl using this and they like and enjoying working on this one :)anyone who have an experience with this type of langauge?
-
what do you think of flash sites that load forever
-
someone says it's a good programming langauge use frequently in game programming anyone use this and willing to share some knowledge about it?
-
for free and open source => sourceforge.net
-
ewwww what the ... that's insane. anyone try that? is that safe?
-
eerrrr don't do this, don't use js or php to disable html code. once you did this, is just like opening a door to a script kiddies just use html entities e.g. < = <, > = >, © = Š and soon... html entities whon't envote any markup it just kind a replacement...
-
adobe illustrator it's a paint program like photoshop but it create vector type, it's the only paint program i knew who can meshes. and photoshop can't create mesh
-
What do you think of Need for speed Undergroud Is great or bad?
r3d1405241470 replied to jamesleon's topic in Computer Gaming
nfs is the best racing game ever