|
More site info...
Kirupa Forum - www.kirupa.com | Site profile
|
|
Site profile page for http://www.kirupa.com.
This report page has aggregated and summarized the online discussions from the Message Board located at http://www.kirupa.com.
This site profile page outlines general site statistics such as: Users Activity, Site Activity, Site Rank, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional site profile information for http://www.kirupa.com is also shown in the following divisions:
1) Top 10 Active Forums during Last Week
2) Top 10 Site Forums
3) Latest Active Threads
4) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a site's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity table on Kirupa Forum:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
786
|
2,762
|
8,095
|
|
Post:
|
1,802
|
7,001
|
19,774
|
|
|
Authority Badge:
|
|
|
BoardReader Authority Badge code for Kirupa Forum (http://www.kirupa.com)
|
|
Put this code anywhere on your forum page:
|
|
|
|
|
|
|
|
Rating - The position measured by activity among all forum sites tracked by BoardReader.
If rating is 10 there are 9 forum sites which have higher activity.
Posts - Number of posts on forum site during last 7 days.
Threads - Number of threads on forum site active during last 7 days.
Authors - Number of authors which contributed to the site within last 7 days.
|
|
|
|
|
Kirupa Forum posting activity graph:
|
|
http://www.kirupa.com Alexa graph:
|
Top authors on Kirupa Forum during last week:
user's latest post:
ASDoc hates Vector... "Type...
Published (2009-11-19 19:15:00)
That worked, wvxvw! Many thanks. I usually avoid using betas in release as the chances of users actually having that release downloaded is rare, but since all ASDoc does is generate HTML files, my rules no longer apply. In case anyone stumbles upon this, here is the (current) link to download Flex 4 SDK Beta: http://opensource.adobe.com/wiki/dis...ownload+Flex+4
user's latest post:
My Week
Published (2009-11-21 02:53:00)
Quote: Originally Posted by Templarian ^ But it's your birthday! http://www.youtube.com/watch?v=S4D5V6iqOSU Quote: Originally Posted by graylensman And you're bringing... monkey balls? Super Monkey Ball 2, to be precise.
user's latest post:
The Insanely Huge TimmyTots...
Published (2009-11-19 11:13:00)
Quote: Originally Posted by Syous can you post a recording? Quote: Originally Posted by biznuge I don't have any way to record onto my uber pc Never fear...I can give you a feel for the dialect with the following joke: Q. What's the difference between a kangaroo and a kangaroot? A. The first is an Australian marsupial, the second is a geordie stuck in the lift. Wot does yor screeve horn soond leek? It's canny honky - courtesy...
user's latest post:
function to execute queries from...
Published (2009-11-20 18:55:00)
I rewrote the function. It's easier to use. You don't need to specify the column names. It reads $_POST and gets the form field names and then it reads the column names from the table. It matches them and it means that the data from that POST does in that column and builds the query. PHP Code: public function query ( $tablename , $add_more_to_query = ''...
user's latest post:
Array Question is AS3
Published (2009-11-17 01:22:00)
ok - good work, you've got the right idea. what you need to do here is 'decrement' the array index (eg. count) that you're using, similarly to how you are 'incrementing' the index as you load each new image in the array - but there are also a few ways that you could make your code more efficient - study the changes made here and see what you can learn from it ActionScript Code: stop ( ) ; var...
user's latest post:
Will OOP reduce performance
Published (2009-11-21 17:14:00)
Overall, it can. But if you have a specific task that requires optimum performance, having an OOP project built around it won't necessarily affect that task. Design with OOP in mind, then make optimizations where needed. OOP only tends to reduce performance because of the overhead of object communication, something that can be reduced or eliminated in the case of optimizing specific tasks.
user's latest post:
Issue about "TypeError:...
Published (2009-11-20 11:53:00)
Try taking those function definitions out of your for loop. Code: public function BlurIT(e:Event) { var my_filters = e.currentTarget.filters; var my_bf:BlurFilter = new BlurFilter(15, 15, 3); my_filters = [my_bf]; e.currentTarget.filters=my_filters;
user's latest post:
Simple pass of PHP var to AS3!
Published (2009-11-21 09:47:00)
if you cant find a decent tutorial googling it AND no one answers you correctly you could look at these two posts where (indirectly) your question is covered... http://www.kirupa.com/forum/showthre...65#post2518365 http://www.kirupa.com/forum/showthread.php?t=338827 Best of luck!! S EDIT of course it would be easier to just have Flash load the picture rather than get the URL from a php file and then load the picture... And of course it is more...
|
|
|
Top 10 active forums on Kirupa Forum during last week:
|
|
Top 10 forums on Kirupa Forum:
ActionScript 3.0
- 48,772 posts
|
ActionScript 1.0/2.0
- 24,327 posts
|
Random
- 22,717 posts
|
Flash CS3
- 15,567 posts
|
Showcase & Critiques
- 13,629 posts
|
Flash 8
- 12,101 posts
|
Server-Side (PHP, SQL, ASP.NET, etc.)
- 9,796 posts
|
Computers & Games/Tech
- 8,211 posts
|
Game/AI Programming
- 7,911 posts
|
Client-Side (HTML, CSS, JavaScript)
- 7,900 posts
|
|
|
|
|
Latest active threads on Kirupa Forum:
Started 8 hours, 23 minutes ago (2009-11-23 01:35:00)
by NamikazeMinato
Code:
timerDisplay.text="00:02:00";
var dispSecs=60;
var dispMins=2;
var timerInterval=setInterval(countDown,1000);
functi on countDown()
{
dispSecs--;
if(dispSecs==59)
{
dispMins--;
}
if(dispSecs==0)
{
dispSecs=59;
}
if(dispMins==0)
{
clearInterval(timerInterval);//STOPS THE TIMER....
}
timeDisplay.text=prependZero(dispMins)+":"+prepend Zero(dispSecs...
Started 2 weeks ago (2009-11-08 11:10:00)
by simplistik
Started 8 hours ago (2009-11-23 01:58:00)
by jase21
Code:
public var mouseIconClicked: Boolean;
public function onClickStartKeyControl( event:MouseEvent):void
{
mouseIconClicked = false; //=> keyboard icon is clicked
dispatchEvent( new NavigationEvent( NavigationEvent.START ) );
}
public function onClickStartMouseControl( event:MouseEvent):void
{
mouseIconClicked = true; //=> mouse icon is clicked
...
Started 1 week ago (2009-11-16 09:14:00)
by shannonDB
Hi,
I'm having a hard time wrapping my head around XML, in particular using XML to place an image on the stage.
I've got some code which I've appropriated from a tutorial, which creates a nice XML driven menu - And I would like to adapt it so that when I click on a menu item it displays a JPG (it currently calls up defined labels on my timeline, which is not really what I'm looking for)
...
Started 7 hours, 53 minutes ago (2009-11-23 02:05:00)
by oluc
you could do the rows and column code like so:
ActionScript Code:
var rows: Number = 8 ; var columns: Number = 2 ; var imageWidth: Number = 150 ; //you would change this to your image Width var imageHeight: Number = 150 ; //you would change this do you image height var marginX: Number = 3 ; var marginY: Number = 1 ; var leftMargin : Number = 50 ; ...
Started 8 hours, 15 minutes ago (2009-11-23 01:43:00)
by jase21
it must be if condition. and not if else.
Code:
function ValidateAndSend(event:MouseEvent):void
{
if(!txtContactFirstName.length) {
status_txt.text = "*Please enter your first name.";
}
if(!txtContactEmail.length) {
status_txt.text = "*Please enter an email address";
}
if(!validateEmail(txtContactEmail.text)) {
status_txt.text = "*...
Started 13 hours, 56 minutes ago (2009-11-22 20:02:00)
by a tadster
somewhere on here or perhaps actionscript.org, Senocular has answered the how to include swc files in CS4 question, but i don't remember his answer right now or the thread title.
are you wanting to do that for the benefit of the timeline? or just for graphical uses?
I use the SDK to compile and just use CS for graphics, i export swc files or just plain swfs then use the Embed meta tag.
...
Started 1 month ago (2009-10-22 17:16:00)
by jenkravt
Freelance programmers and designers wanted!
Professional remote wokers - programmers and designers - needed for freelance marketplace http://www.freelancerbay.com . Portfolio is desirable.
Compensation: up to 900$ depending on the remote job project.
Started 1 year ago (2008-11-02 08:01:00)
by frankieN
Do you also have the code for an volumeslider with the On/Off button??
I just cant seem to figure out how to to that..
thanks
|
|
Hot threads for last week on Kirupa Forum:
Started 3 years, 2 months ago (2006-09-23 07:28:00)
by Timmytots
thanks. looks easy.
i've changed my info page. any thoughts:
http://www. timothy-clark.com/information /
black ok?
Started 2 weeks, 2 days ago (2009-11-06 16:16:00)
by justkevin
Very nice work! Maybe for the next demo let the user have the option of controling the camera?
Started 3 days, 21 hours ago (2009-11-19 12:37:00)
by imagined
Maybe the action attribute of the form tag is wrong.
HTML Code:
<form action= "wrongPage.php" method= "post" >
What is the action attribute of the form tag?
Can you post the whole HTML form?
Started 4 days, 14 hours ago (2009-11-18 19:56:00)
by TheCanadian
Try typing it as Object and then casting it to DisplayObjectContainer in
the loop. It's kind of stupid that for..in expects a String when the
iterand could be anything, as in this case.
Started 4 days, 14 hours ago (2009-11-18 19:24:00)
by AHernandez
As far as I know there is not any difference between a SWF created in Flash or one created in Flex. In fact, Flex simply converts MXML into AS3 code and then compiles the code same as a native AS3 project would. I am not sure if Flex would cause the problem you are having.
How is it you are using this SWF? Is it just on a web page or is it part of a larger app? Because I don't believe you can...
Started 1 week ago (2009-11-15 18:54:00)
by blazes
A) Awesome outro you have on this soliloquy.
B) I feel the same way. But I think that there's always a tiered system on how poeple help. Think of it this way:
Beginners (TimmyTots)
Intermediates (me)
Advanced (Senocular)
And when you ask, the tier above you answers. That way you can always assume a level of knowledge.
Started 1 week ago (2009-11-16 05:12:00)
by HunterEx
Problem with XML
I written a class, loading XML. How can I call the XML class when Event COMPLETE, because now it trace me NULL.
Started 3 days, 21 hours ago (2009-11-19 12:45:00)
by senocular
There's nothing native in the language that makes this easy, but there is code others have written that can do this. For example:
http://proto.layer51.com/d.aspx?f=952
Started 1 week, 1 day ago (2009-11-14 19:49:00)
by cbeech
hmmm - well either the instance textBox is not a member of the calling scope, or it doesn't have an instance name assigned
Started 1 week ago (2009-11-15 22:26:00)
by NeoDreamer
It really depends on who your audience is. If it's a relatively high-tech website, then most of your audience won't use old browsers. If you're making a site meant to be used by everyone, then you better support the 30% or so people still using IE6. You can't force them to upgrade. If they're too stupid to use IE6, they're too stupid to follow your instructions asking them to upgrade to FF or ...
|
|