Bleach Online Forum

 Retrieve Password
Search
Author: Ragnos
Print Prev. thread Next thread

Does anyone know ActionScript 3? [Copy URL]

Rank: 3Rank: 3

21#
Post time 2016-2-27 15:56:29 |Show the author posts only
Ragnos replied at 2016-2-26 11:38

lmao...
why am i just seeing this now.

Use magic Report

Rank: 3Rank: 3

22#
Post time 2016-2-27 16:05:00 |Show the author posts only
Uzumakia1 replied at 2016-2-26 15:13
Nerdsssssssssss

We did.. We have a close circle of NEET.
#ONLYNERDSALLOWED

Use magic Report

Rank: 3Rank: 3

23#
Post time 2016-2-27 16:08:00 |Show the author posts only
[email protected] replied at 2016-2-27 21:05
We did.. We have a close circle of NEET.
#ONLYNERDSALLOWED

Aww. Let me spy on you guys

Use magic Report

Rank: 3Rank: 3

24#
Post time 2016-2-27 16:23:53 |Show the author posts only
Uzumakia1 replied at 2016-2-27 16:08
Aww. Let me spy on you guys

You are welcome to join only if u pay a monthly fee of $2k,
only any CamGirl site.
Premium Member only.
#NOLIFE
#SEXDOLL
#GOVERNMENTSECRETS


#WEWATCHYOUWATCHPORN

Use magic Report

Rank: 3Rank: 3

25#
Post time 2016-2-27 17:03:51 |Show the author posts only
  1. JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green.");
Copy the Code

Use magic Report

Rank: 3Rank: 3

26#
Post time 2016-2-27 17:09:05 |Show the author posts only
  1. //custom title, warning icon
  2. JOptionPane.showMessageDialog(frame,
  3.     "Eggs are not supposed to be green.",
  4.     "Inane warning",
  5.     JOptionPane.WARNING_MESSAGE);
Copy the Code

Use magic Report

Rank: 3Rank: 3

27#
Post time 2016-2-27 17:11:42 |Show the author posts only
  1. <!DOCTYPE html>
  2. <html>
  3. <body>

  4. <p>Click the button to display an alert box:</p>

  5. <button onclick="myFunction()">Try it</button>

  6. <script>
  7. function myFunction() {
  8.     alert("I am an alert box!");
  9. }
  10. </script>

  11. </body>
  12. </html>
Copy the Code

Use magic Report

Rank: 3Rank: 3

28#
Post time 2016-2-27 17:17:11 |Show the author posts only
[email protected] replied at 2016-2-27 21:23
You are welcome to join only if u pay a monthly fee of $2k,
only any CamGirl site.
Premium Member o ...

My kinda guy ;)

Use magic Report

Rank: 4

29#
Post time 2016-2-29 08:58:55 |Show the author posts only
Mojito1985 replied at 2016-2-27 16:11

XD
Glad someone else here knows HTML.

Use magic Report

Rank: 3Rank: 3

30#
Post time 2016-2-29 09:02:36 |Show the author posts only
  1. <html>
  2. <head>
  3. </head>
  4. <body>
  5. <center>
  6. <script language="javascript" type="text/javascript">
  7. var day_of_week = new Array('Sun','Mon','Tue','Wed','Thu','Fri','Sat');
  8. var month_of_year = new Array('January','February','March','April','May','June','July','August','September','October','November','December');

  9. //  DECLARE AND INITIALIZE VARIABLES
  10. var Calendar = new Date();

  11. var year = Calendar.getFullYear();     // Returns year
  12. var month = Calendar.getMonth();    // Returns month (0-11)
  13. var today = Calendar.getDate();    // Returns day (1-31)
  14. var weekday = Calendar.getDay();    // Returns day (1-31)

  15. var DAYS_OF_WEEK = 7;    // "constant" for number of days in a week
  16. var DAYS_OF_MONTH = 31;    // "constant" for number of days in a month
  17. var cal;    // Used for printing

  18. Calendar.setDate(1);    // Start the calendar day at '1'
  19. Calendar.setMonth(month);    // Start the calendar month at now


  20. /* VARIABLES FOR FORMATTING
  21. NOTE: You can format the 'BORDER', 'BGCOLOR', 'CELLPADDING', 'BORDERCOLOR'
  22.       tags to customize your caledanr's look. */

  23. var TR_start = '<TR>';
  24. var TR_end = '</TR>';
  25. var highlight_start = '<TD WIDTH="30"><TABLE CELLSPACING=0 BORDER=1 BGCOLOR=DEDEFF BORDERCOLOR=CCCCCC><TR><TD WIDTH=20><B><CENTER>';
  26. var highlight_end   = '</CENTER></TD></TR></TABLE></B>';
  27. var TD_start = '<TD WIDTH="30"><CENTER>';
  28. var TD_end = '</CENTER></TD>';

  29. /* BEGIN CODE FOR CALENDAR
  30. NOTE: You can format the 'BORDER', 'BGCOLOR', 'CELLPADDING', 'BORDERCOLOR'
  31. tags to customize your calendar's look.*/

  32. cal =  '<TABLE BORDER=1 CELLSPACING=0 CELLPADDING=0 BORDERCOLOR=BBBBBB><TR><TD>';
  33. cal += '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2>' + TR_start;
  34. cal += '<TD COLSPAN="' + DAYS_OF_WEEK + '" BGCOLOR="#EFEFEF"><CENTER><B>';
  35. cal += month_of_year[month]  + '   ' + year + '</B>' + TD_end + TR_end;
  36. cal += TR_start;

  37. //   DO NOT EDIT BELOW THIS POINT  //

  38. // LOOPS FOR EACH DAY OF WEEK
  39. for(index=0; index < DAYS_OF_WEEK; index++)
  40. {

  41. // BOLD TODAY'S DAY OF WEEK
  42. if(weekday == index)
  43. cal += TD_start + '<B>' + day_of_week[index] + '</B>' + TD_end;

  44. // PRINTS DAY
  45. else
  46. cal += TD_start + day_of_week[index] + TD_end;
  47. }

  48. cal += TD_end + TR_end;
  49. cal += TR_start;

  50. // FILL IN BLANK GAPS UNTIL TODAY'S DAY
  51. for(index=0; index < Calendar.getDay(); index++)
  52. cal += TD_start + '  ' + TD_end;

  53. // LOOPS FOR EACH DAY IN CALENDAR
  54. for(index=0; index < DAYS_OF_MONTH; index++)
  55. {
  56. if( Calendar.getDate() > index )
  57. {
  58.   // RETURNS THE NEXT DAY TO PRINT
  59.   week_day =Calendar.getDay();

  60.   // START NEW ROW FOR FIRST DAY OF WEEK
  61.   if(week_day == 0)
  62.   cal += TR_start;

  63.   if(week_day != DAYS_OF_WEEK)
  64.   {

  65.   // SET VARIABLE INSIDE LOOP FOR INCREMENTING PURPOSES
  66.   var day  = Calendar.getDate();

  67.   // HIGHLIGHT TODAY'S DATE
  68.   if( today==Calendar.getDate() )
  69.   cal += highlight_start + day + highlight_end + TD_end;

  70.   // PRINTS DAY
  71.   else
  72.   cal += TD_start + day + TD_end;
  73.   }

  74.   // END ROW FOR LAST DAY OF WEEK
  75.   if(week_day == DAYS_OF_WEEK)
  76.   cal += TR_end;
  77.   }

  78.   // INCREMENTS UNTIL END OF THE MONTH
  79.   Calendar.setDate(Calendar.getDate()+1);

  80. }// end for loop

  81. cal += '</TD></TR></TABLE></TABLE>';

  82. //  PRINT CALENDAR
  83. document.write(cal);

  84. //  End -->
  85. </script>
  86. </center>
  87. <br/><div style="clear:both"></div><div><a target="_blank" href="http://www.htmlbestcodes.com/"><span style="font-size: 8pt; text-decoration: none">HTML Best Codes</span></a></div>
  88. </body>
  89. </html>
Copy the Code

Use magic Report

You have to log in before you can reply Login | Register now

Archiver|GoGames.me

GMT-5, 2026-7-1 03:54 , Processed in 0.006727 second(s), 8 queries , Xcache On.

Powered by Discuz! X2

© 2001-2011 Comsenz Inc.

Top ~