[F8] Flash Based Rating And Comments System
Hi there I'd like to create a rating and comments system to the video site I'm working on. Basically the user will rate the video (stars or thumbs up) from 1-5, have the new rating process and improve or lower the video rating automatically. For the comments the user will be able to write and send the comment and then either have it posted automatically with the option for the site moderator to erase any offensive comment or have it sent to a database for approval first and then post it by the site moderator.
I assume I need a php form and action script code? Can anyone point me in the right direction? Any ideas / leads / examples are appreciated. Cheers
FlashKit > Flash Help > Flash ActionScript
Posted on: 04-24-2007, 02:27 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
[F8] Flash Based Rating And Comments System
Hi there I'd like to create a rating and comments system to the video site I'm working on. Basically the user will rate the video (stars or thumbs up) from 1-5, have the new rating process and improve or lower the video rating automatically.
For the comments the user will be able to write and send the comment and then either have it posted automatically with the option for the site moderator to erase any offensive comment or have it sent to a database for approval first and then post it by the site moderator.
I assume I need a php form and action script code?
Can anyone point me in the right direction?
Any ideas / leads / examples are appreciated.
Cheers
Rating System In Flash
Hi, is it possible to have a rating system in a flash movie? Similar to the kind used by sites such as Amazon. I have found references to flash rating in php but I don't have access to php or a mysql database. I'm looking to either do it directly in flash with actionscripts or with asp
Any help would be greatly received as I have googled myself around in circles!
Flash Rating System?
Hi, im not that confident with my actionscripting abilities ( im alright :S).
I am wondering if there are any tutes that can show you how to make a simple reating system (vote) as i need a system like this for my site.
and yes i have read the thread by tae, and it is not what i am looking for. Just a very simple rating system will do just fine
hope someone can help me find a simple tute or source. I know I will have to use php, which will give me a little trouble
Flash Rating System
Hi guys,
I posted the same thread over flash 8 but I didnt get any help so I thought I might give it a try over here.
Ive been making a flash 8 gallery for a website and they want me to add a rating system to it so people can rate the images out of 5, 10 or whatever. Do you know any tutorials or code resources about this sort of thing?
Thanks a lot.
Flash Rating System
is their any simple way to create a flash rating system? I would like a very easy tut that I can follow. Thanks
Rating System In Flash?
Hello,
has somebody an idea where I can find a tutorial about creating a flash rater?
I want to create a simple rating system for my flash/xml image gallery but I can't find a tutorial and have no idea how to construct one myself!
If somebody can give me advice on it, that would be really nice!
I just want to create a rater that goes from 1 (awsome) to 5 (horrible). Now something has to remember every visitors vote.
Thanks for any help.
Fallin'
[MX04] Flash Rating System
i have made a website in PHP and was looking foa good flash rating system for it like the one attached in this document. It was really cool and i found it on one of thw sites. When you clikc submit, the data goes to the specified php file. A lot of the paramaters for this is set via html.
Flash Blog With Comments System?
Hi ppl! I've been looking for a CMS that uses flash. I found that I can integrate b2 (URL) with flash by using b2flash and rss but the problem here is that I can't use the comments system. I also know that I can't load the images files used in any post, but this is not a major problem as my main webpage will always be the php generated file and not the flash one. Anybody out there who knows how to integrate the comments system in a flash blog?
Rating System Help
alright so i want to make a system so people can rate videos on my site, but my server doesn't support php cuz i'm just trying this out and i'm on a free server, so i was wondering if there is any way that in flash i can make a 5 star rating system without using php. thanks a lot
PS: this is the site in case you want to visit it http://www.angelfire.com/hero2/jabjib
Rating System
has anyone come across a 'free' rating system such as this one.
see this
I would it to have a PHP/mySQL backed like this one.
Rating System
Im building a site with music for the user to stream and download. Is it possible to to have a rating system in flash (submit form)? Thanks
Rating System
Im building a site with music for the user to stream and download. Is it possible to to have a rating system in flash (submit form)? Thanks
RATING SYSTEM
Im building a site with music for the user to stream and download. Is it possible to to have a rating system in flash (submit form)? Thanks
Rating System
Hey all i animate for this site Fun-games.net and ive been set out on this "quest" to find a rating system where people could rate our movies "they are stickdeath" and right now all we have them do is go to the forum and tell us what you think...well thanx alot for any help i get later all <<<<< i like that guy o yeah it needs to be in html
Rating System
I'm currently trying to develop a simple flash rating system, but I can't figure out something pivotal.
If you take a look here, you'll see what I have so far. The problem is that I'm wanting, when hovered over from left to right, the correct number of stars to stay up once passed by the cursor, instead of going back to the 'up' state.
Dynamic Rating System
I am trying to build a dynamic rating system to rate different elements on my site. Does anyone know of a good tutorial on thisd subject? Or at least a good place to start?
Thanks
Employee Rating System
Hello everyone. I am new to this site. I am designing a database for my job using flash. I want to design a rating system for our employees. It is a little difficult to explain. Basically, the office is broken up into 4 teams. Each team has 10 people. Each person on a team is rated from 1-10. The total of all individual ratings determines the overall team rating. For example, if each person on Team A is rated as a ten, the overall team ranking would be 100 (10 X 10). Hope I haven't lost you. Now lets say that out of the 4 teams, teams C & D have a rating of 80, and teams A & B have a rating of 100. To even out the team ratings, I would have to shift team members around until the ratings even out. For example, I could take one person from teams A & B, rated as a 10, and put them on team C & D. This would make C & D ratings a 90. Team A & B would have one less person per team. I need to know how I would write this in action script. I am using Flash MX 2004. I need the action script to automatically calculate the team ratings as I shift people around. I would appreciate your help. Thanks.
Star Rating System Help
I am trying to get a function to change depending on what event triggered it.
Basically I'm trying to learn Actionscript [3.0], and I've decided to make a simple rating system with stars. Most people have probably seen something like it - 5 stars, click/mouse-over on one, and that star and the ones before it are selected. Now I've made the stars (buttons), put them in a row, given each star in the row an instance name (star1, star2, etc). My problem is that I want more than one star to light when the mouse is over it, depending on what star the mouse is over.
ActionScript Code:
import.fl.controls.Button;
var starsOver:Number = 0
function showStars(event:MouseEvent):void{
}
twoStar.addEventListener(MouseEvent:mouseOver,showStars)
threeStar.addEventListener(MouseEvent:mouseOver,showStars)
fourStar.addEventListener(MouseEvent:mouseOver,showStars)
fiveStar.addEventListener(MouseEvent:mouseOver,showStars)
I'm thinking that perhaps I can use just one function to do all that, but change depending on whether it was twoStar, threeStar, etc. that triggered it.
Is there a way to do this? - or do I have to make a function for each star, or change them to a movie clip, or make a "class", or is there another easier way? Mind, I'm sorta learning , so i'm not too good with programming.
Creating A Simple Rating System...
How can i make a simple rating system which asks the user for a mark out of 5, and then updates the overall rating which is also displayed. Peolple shouldn't be able to vote more than once. Is there a way of doing this without using complicated databases and all that.
Thanks,
brocwind
[CS3] Creating A Star Rating System...
Hi All,
I've begun creating a rating system but am unsure how to go about the actual storing and recalling of information when the user selects the number of stars. You can see a very stretched out .swf file here of what I am trying to do. I am not sure whether I need the as3 to write the data to a text file then pull the data from the same file? Any ideas would be great.
Thanks in advance,
BC
How To Create A Star Rating System....
Hi All,
I've begun creating a star rating system but am unsure how to go about the actual storing and recalling of information when the user selects the number of stars. You can see a very stretched out .swf file here of what I am trying to do. I am not sure whether I need the as3 to write the data to a text file then pull the data from the same file? Any ideas would be great.
Thanks in advance,
BC
Flash Based Messaging System
I’m trying to make a PHP/Flash messaging system. I’m familiar with how PHP/Flash/Database interaction and variable passing works. The Flash scripting is my problem. I’d like Flash to display the messages in a table with the subject, sending user, and date sent displayed. How can I have Flash do this dynamically? For example, if the user has 1 message have only one entry in the message queue but if the user has 500 messages there are 500 entries. I keep thinking “array” but I’m not sure how I would code it correctly.
Any ideas?
Flash Based Operating System
I am fairly new to Flash Development. I have become recently interested in Open Source and wonder if there is any sort of flash based desktop environment or even a flash based operating system in the brew, or even already made. If not, I have some great ideas on something involving rich graphical interfaces in a desktop or operationg system environment.
Flash Based Intercom System
I am somewhat proficient with action script and programming in general, but I am not sure about the best way to send voice over a netowrk using flash. If anybody has any ideas please let me know.
Flash Based Online Billing System
I am wondering in anybody knows a Flash based online billing system to handle clients and billing operations for a hosting reseller company.
Something like http://www.modernbill.com/ but in Flash!
It's okey if it is not free...
Constraint Based Layout System For Flash CS3
I know most of you guys use Flex which has a great constraint based layout system architecture by default, but in Flash CS3 there is no built in way to do this. To create intelligently resizing layouts, you have to manually resize each element on a stage resize event. This can create obscene amounts of code really fast, especially if you start to work in simple arithmetic to avoid hard coding in positions, such as "stageWidth-obj.x-obj.width" etc.
Is there any code library to do this for you built in AS3? I basically want something like this:
ActionScript Code:
var layout = new Layout();
layout.header_mc = 'left|right|top';
layout.left_mc = 'left|top|bottom';
layout.footer_mc = 'bottom|left|right';
...
function onStageResize(evt){
layout.resize(stage.stageWidth,stage.stageHeight);
}
XML Based Help System
I would like to add a help movie to my site.
Basically there are 12 different sections of my site and I would like to include a help button that when clicked will display a help swf above all the other content.
I would like the help panel to include a menu on the left hand side with the 12 section names. And on the right hand side would be the help text for the current section.
I was thinking the best way is to have an xml file with the menu on it so that this menu can be easily updated if more sections are added. This xml file would include the name of the associated text or XML file with the actual help text for each section.
The text for each section would be just plain unformatted text. I am not that familiar with XML so I am not sure if this content text should be done as an XML file for each section or just a simple text file - are there any advantages of either?
Anyway so basically I would like any advice on how to set up and program the above in Flash MX especially the choice of either a text file or XML file.
One other thing is that I would like to highlight the current section name on the left hand side menu. Not sure how best to do this but basically want to change its background color and text color of this menu item.
If anyone has managed to read all this without falling asleep, I would really appreciate any help.
Many thanks
Chucky
Turn Based Battle System
Hello, I am new to Flashkit and I was wondering how can u make a turn based battle system with flash. Please post a tutorial, because I am using Flash 4
Windows Interface Based System
Hi!,
Im trying to build a windows interface based system like: http://www.elhuyar.com/
I have problems with the resizer object... I can't find out the right line of code to align all the resizer with the window...
See attached .FLA and the code below:
DOWNLOAD PROJECT:
http://www.gazpachu.com/main.rar
Code:
resizer.onPress = function()
{
this.mouseOffset = {_x: this._xmouse, _y: this._ymouse};
this.onMouseMove = function()
{
this._x = Math.max(minWindowSize.width, _xmouse - this.mouseOffset._x);
this._y = Math.max(minWindowSize.height, _ymouse - this.mouseOffset._y);
pane.windowbg._width = resizer._x;
pane.windowbg._height = resizer._y;
closebutton._x = this._x;
titlebar._width = pane._width;
}
}
resizer.onRelease = function()
{
delete this.onMouseMove;
}
resizer.onReleaseOutside = function()
{
delete this.onMouseMove;
}
Condition Based On System Time?
Hey all,
I just wondered... I am playing around with the timedate.getHours(); function and I was wondering how I might go about setting up a condition whereby between 3am and 3pm, movieclip1 loads and between 3pm and 3am, movieclip2 loads?
I'm sure it's not that difficult but I'm not sure how to structure the if/else statement or read the hour from the timedate function. Thanks in advance!
Counter Based On System Clock
HI,
I want to create a counter that counts forms that have been processed by a server, but i want to do it by the system clock.
i.e.
at midnight on Jan 1st there had been 10,000 forms processed
a form is processed every 2 minutes
is there a way to get flash to look at the system clock and work out the amount of forms processed so far, and increment by 1 every 2 minutes?
I'm really quite lost on this , so any pointers would by much appriciated.
Cheers
Marv.
Change Site Style Based On Users System Time
Could anyone point me to a good tutorial or explanation on how one might change a site element based on the users computer time? What we are trying to do is change the color of the sky and shade of the buildings in a cityscape scene on a cartoonish style site. If it is 9:00 PM on the site visitor's end, they will see a nighttime colored scene. If it's 7:00 AM, it would be sunrise-ish. I figure something like this would be pretty simple, but for a newbie like myself I needed some help!
Product - RATING Stars Sign In FLASH From 1-5
Hi Everyone
I need to show the STARS rating signs in front of the products according to the value given in the admin that is for eg: (1/2/3/4/5) the value which we could get from XML is in the Flash variable named as "RNUM = 1" or RNUM = 2.
So can anyone please tell me how to display the stars according to the value of 1-5 in flash?
Will really appreciate any help in this case.
Regards
F.
Flash Search Engine Rating Problem
Hi flashers,
A question.... My webby is flash only (ie no option between html and flash). I wanna stick to this. I did have a "flashcheck" script on my index which refered you to either a flash page or a "get flash" page. I scrapped that so the index is now the flash page coz i didnt like the refering function (looks nasty imo). So if you dont have flash the index just dont work, which i can live with i guess.
My problem is tho, as the whole site is just one flash movie on the index, search engine spiders will be able to read the meta stuff in the html BUT my site will appear to have no body text as i dont *think* spiders can read the embeded flash text. This will probably result in low ranking.
Any suggestions on how to get around this?
So far all i can think is to have
1] A welcome html splash screen, which i dont really want.
2] Use a <noscript> function ??
3] Create loads of referer pages with spam body text and submit them to the search engines?
Any ideas on what to do?
Ta
Comments In Flash
does anyone know how to a comment appear when you roll over a button in flash mx? Is it a component, or action scripted feature? I've seen it done at sites such as... www.trendax.com/flashframes.html
thanks in advance.
Comments Box In Flash
Can someone tell me how I would make a comments box in flash? Something where the users can put in there name and their message and it'll add it to the box so everyone can see and answer back? I have MySQL available if this is the easiest way. Any help or a point in the right direction would help thanks.
Flash Comments Scripts
Hello!
I am looking for an easy way to create a comments section for my flash movie. Ultimately I want a news article or two to be posted within flash so that anonymous users can post their comments. I was thinking the news artice can be pulled from a .txt file and the comments I was thinking about using a mysql db with a php backend, but I'm not sure if this is going to be the easiest way to update by someone not familiar with either flash, php or mysql. Sounds like a challenge huh? I just want to get any additional ideas you all may have before I proceed.
thanks,
Patrick
Comments On My First Flash-site...
Hi..
Atlast i've finished my first 100% flash-site ever...
And I simply wanted to know what you all think about it
the adress is: http://www.janik.tk (it's a site about me..)
Xml Flash Gallery With Comments?
guys, can anyone help me where to find an xml gallery with comments/ where a user can type/ post they're comments on the specific image...
im sure i found it somewhere here but got lost...
i need the source files for my thesis project...
thnx to all....
Checking Flash MX Website.. Comments Pls
Hello Guys,
I am checking my new website created with the new features of Flash MX. I have some heavy videos there and I am trying to find out how fast the video streams from different places. Could you pls help me out here. The url is
http://www.niyas.com/rlc/RLCProfile.html
Thanks in advance ..
Niyas
Leaving Comments On A Flash Site?
Is there a way for people to type in comments on a flash site and it appears on the site or the comment is emailed to me so I can put it up? If so could you tell me.
Thanks In Advance
Flash Web (need Comments/advice/ideas)
i've use flash to create a web but it's not done yet. i need some comments/advice/ideas to help me. pls have a look at http://jasonpang.bizhat.com and tell me what u think.
NEW FLASH SITE-Food Machinery-comments Please
Hi all, I am new to this forum.
would just like a few comments on this site.
It's a flash based site aimed at broadband users/companies but loads relatively fast on 56k.
they wanted the site to be dynamic with a real promotional/tv ad style feel.
tell me what you think
BTW looking at the web stats, they are recieving on average just under a thousnad unique visitors per day and the average stay on the site is 4 mins and over. some visitors have stayed up tp 48mins at most.
They recieve at least 5-7 serious enquries per day.
These food machines are very expesive as you can imagine.
here's the Link
Regards
riffking
Code Comments Affect Flash Apps
flash-bug.com sustains that AS code comments are evaluated by the compiler. I, for one, don't believe that this is possible, but that guy seems pretty sure about it and tells a nice story regarding Adobe and it's product.
Link to the main site: http://www.flash-bug.com/
|