5 star voting system

Hey guys,
Am looking for assistance in creating a voting system for my
website. not a poll. Is there a program I can use w/ Dreamweaver
cs3 or a tutorial for this?

did you try doing a web search? i did, and the responses led
me to
hotscripts.com where i searched for "rating."
http://www.hotscripts.com/search?q=rating&cat=All&imageField.x=0&imageField.y=0
warhawk36 wrote:
> Still looking for some help guys.
>

Similar Messages

  • Report to generate the First Delivery Date in STAR/R3 system

    Hi SAP Community,
    I would like to generate a report for the first date for each sales order entered in SAP (STAR/R3 system). Can you please help to identify the transaction code to generate this report?

    Hello,
    Use enhancement userexit_field_modification in include MV45AFZZ for delivery block LIFSK in VBAK Table.
    below is the sample code for it.
    if (write specific condition)
    vbak-lifsk = '1' to '9'.
    else.
    vbak-lifsk = ' ' .
    endif.

  • Flash drag and drop voting system

    I am looking for someone to design a top 100 or more voting system like the ones at MTV or VH1 ..... The voting will be I will add the shows we want voting on and the end user drags them over into like a top 10 and would place them 1 thru 10 if you look at this it will give you a idea
    http://www.cmt.com/shows/dyn/top_twenty_countdown/series_wildcard.jhtml?wildcard=/dynamic_ templates/shows/center_templates/wildcard/top_twenty_countdown/2009/top20_viewers_poll_mai n.jhtml

    send an email via my website:  www.kglad.com

  • Troubles with my Aperture star ratings system

    Been using aperture 2 for a couple of years now. No serious problems with it at all. Then, 2 weeks ago, all of a sudden my star ratings system started playing up and I have no idea why.
    The problem is strange; it is still possible for me to rate photographs from 1 to 5 stars but when i come back to that folder and try to look at my 1 star or better pics then i see them all and the ratings i have assigned them. However, if i try to look at 2 star or better or 3 star or better etc photos then my screen is completely empty and if i want to export or sort my pics i now have to do it manually which seriously interrupts my workflow.
    This issue applies to all my folders in aperture and I'd appreciate any help anyone can give me. Thank you very much !!!

    Try here first http://support.apple.com/kb/HT2945

  • Hi in need of help trying to add a live voting system

    i am trying to add a live voting system to my website basically two buttons one dislike and like its quite hard to explain a good example is www.truelad.com they have the set up that i want and i am quite confused on how to do this.
    any help would be mch appreciated
    oyea and i want it to be live and login feature

    Which server-side programming languages and databases are you using for your site? 
    There are several voting widgets (plug-ins) available for WordPress, Joomla! & Drupal. If you're using one of those frameworks to build your site, that's probably where you should begin searching. 
    Nancy O.

  • Create Voting System

    I am trying to create a member voting system.
    I use a recordset to display a Random Member(database row) photo and three details (total of 4 columns, "pic_big", "stage_name", "age", "city", from my database).
    I used the standard Binding Record Set,
    $query_randomMember = "SELECT * FROM JobSeekers WHERE JobSeekers.popularity ORDER BY RAND()";
    That Works great. Now I insert an "Update Record" using 10 radio btns group (voting).
    I got everything almost working for basic voting, but I am wondering how do I select Primary key:
    $upd_JobSeekers->setPrimaryKey("jobseekerID", "NUMERIC_TYPE", "???", "???");
    from the the recordset "randomMember"?
    The next step:
    I was thinking I need to create another database column "popularity_count" to add a value of 1 every time someone votes and keep count of votes...
    How would I take the current value in the "popularity_count" column and add 1 for each vote(update record) and insert that value into "popularity_count"?
    I was then going to take current score (("popularity" * "popularity_count") + the current form value(lets say KT_Update1)) / ("popularity_count" + 1) = the new value(rounded) to put that value back in "popularity".
    Does any one else see that working to get the new value?
    The final step, because this is only accessable to members, I know how to restrict re-voting by SESSION "kt_login_id".
    How would I set the vote vs see results for each member who is voted on?
    I know this seems over whelming but the idea is simple, vote for members by members and stop revoting.
    Does anyone see this a fesible or unfesible?
    Please visit www.sexyexoticjobs.com/included_employers_page.php to get the idea
    If any one knows a script already that will do this for me and allow me to "update" the score to column "popularity" and stop voting based on SESSION that would be helpful.
    Thanks in advance,
    Scott

    The easiest way to do like/unlike voting is use facebook´s like/unlike button generator at http://developers.facebook.com/docs/reference/plugins/like/ to create a code. You can set up the appearance and some features of your button and you will end up having an iFrame code. You can add that code into your html-wrapper file with some regular texteditor like wordPad....
    Here´s one example, it´s an InDesign SWF finalized with eDocker but I don´t see any reason why you couldn´t use the SWF exported directly from InDesign as well. If you want to put it to some specific location, you have to wrap it up into a div and set up some css for that div, but it´s not a rocket science either.....=)
    http://www.prepress.fi/keva

  • Star Rating System

    I would love for Adobe Forms to include a star rating system, similar to iTunes/Amazon etc. Im aware of the currrent ones thats built in but no simpler sysrtem like a star system.

    Thank you for the suggestion.

  • 5-star rating system

    This is a good one: I want a 5-star rating system like YouTube etc so I have 5 radio buttons (not in a group) switched to the Star button style.
    I want to be able to check if the star.rawValue ==1 or 0 and if so turn on/off the remaining stars.
    So if no stars are selected and you pick the 4th star, 1,2 and 3 fill in. Likewise if you pick the 2nd star after the 4th, stars 3 and 4 will turn off.
    What is the best way to go about this? Also I want a variable set to however many stars are set so I can track the rating somone gave it.
    Here is my begining code which is far short of what it needs to be be:
    //Placed on a click of rbstar1
    //Checks if star2 is on and if so tuns all others off because if 2 is on then 3,4,5 might be
    if(rbstar2.star2.rawValue ==1)
    rbstar2.star2.rawValue =0
    rbstar3.star3.rawValue =0
    rbstar4.star4.rawValue =0
    rbstar5.star5.rawValue =0
    rbstar1.star1.rawValue =1
    else
    // If star 2 is not on then star 1 may not be so put it on
    rbstar1.star1.rawValue =1
    //this is my attempt at tracking a variable of which was selected
    TextField1.rawValue ="1"
    I was thinking i could use a combo of click and change events?

    I tested it, normally this one should work with javascript.
    Here you go:
    if(this.rawValue == 1)  //doesn't matter which star it is
    star0.rawValue = 0;
    star1.rawValue = 0;
    star2.rawValue = 0;
    star3.rawValue = 0;
    star4.rawValue = 0;
    this.rawValue = 1; //this one refers to the actual star
    This one will work for ALL stars and you won't mess up the mapping of the stars.
    If you do: if(starNumber.rawValue = 1) ...
    You won't be able to unclick it so there is NO difference to radiobuttons.
    The if sentence isn't even important then. you could simply state it as:
    star0.rawValue = 0;
    star1.rawValue = 0;
    star2.rawValue = 0;
    star3.rawValue = 0;
    star4.rawValue = 0;
    this.rawValue = 1;

  • Help with Voting System (PHP)

    I am working on a voting system for my site, allowing users
    to rate submissions.
    On the submission page there is a voting meter (1-5) which is
    actually five individual images side by side. Each one links the
    user to the same page (index.php?page=submission&id=[id]) but
    adds '&vote=[a number 1-5]' to the url. When the submission
    page loads it checks if $_GET['vote'] is set and will take actions
    accordingly. After these actions are taken I wanted to use the PHP
    header function to reload the same page without the 'vote' variable
    in the url, but I can't do this because the submission page is an
    include on index.php, so it tells me the header has already been
    set.
    Obviously this method isn't going to work. Could someone tell
    me a better way of doing this?

    Q2) should the indexes be inserted before or after
    inserting the document, or is this irrelevant?In the sense that this will not affect what the indexes contain, this is irrelevent. However, we normally recommend adding indexes before documents, or you would risk a lengthy re-index operation.
    Q3) If I create the container from php as shown
    before, and then I open it with dbxml it shows:
    Type of default container: NodeContainer
    Index Nodes: off
    However if I create the container directly from dbxml
    it
    Type of default container: NodeContainer
    Index Nodes: on
    Why is that?This is a bug in the PHP API - it is also why your indexes made no difference for you. You will need to create your container outside PHP using DBXML_INDEX_NODES.
    Q4) I need to repeat several times $mgr->query(....)
    . Does this affect somehow the data base acces
    performance?If the query is run several times, you would benefit from preparing it once, and executing it from the XmlQueryExpression object.
    John

  • Voting system, questions and answers.

    Ok, you can call me blind, dumb or whatever you want but... I simply can't find how to give someone votes (I don't even know how many I have lefy), how to mark my post as a question or as an answered question.
    Could someone explain me as if I were 4...
    Thanks.
    JP

    I absolutely hear what you're saying.
    But you pose the question: "Is it really about the levels, or about helping our fellow users" ?
    Why must it be either, or. Why can't it be about both: Helping fellow users, and feeling good about having rendered that help -- both for the sake of rendering help and for the sake of that tiny carrot called appreciation in the form of + votes and leveling.
    The old Discussions system expressly rewarded people who contributed and for receiving the thanks of one's fellow users in the form of + votes. Custom avatar privileges were conferred upon those who qualified for Level 3 status. Lounge access was given to those who qualified for Level 4 status. And under that reward system, the Discussions were vibrant, (imo) thoughtful (for the most part), involved many different users and concerned many different topics.
    It's true, as someone pointed out earlier, that children get gold stars. Adults don't. That's also true. Adults get something else, bonuses, an increase in their return on investment, other rewards. Yankees Third Baseman Alex Rodriguez just won the MVP (Most Valuable Player) award in the American League in US Baseball for the season just ended. Did he play so well during the year strictly for the award, the publicity and recognition that went along with it, or for the one million US $ bonus that he got as a result? No, of course not. He's a competitor and a professional athlete and he no doubt wanted to do his best and help his team win, regardless of the prizes and recognition. But was he happy to receive the awards he got? I would imagine so.
    IMO, it was about both helping for the sake of helping and about being recognized for having helped in some extremely small way that didn't cost anybody. Now that extremely small carrot, that tiny but nonetheless palpable sense of feel-good recognition has been taken away for reasons that (to me anyway) just don't seem particularly compelling and seem almost certain to result in less people participating in fewer Discussions.

  • Database structure for a 5 star ratings system

    This is something I've been asked to look at creating. At the moment the site has a database back end storing details of a few hundred holiday properties. So that part is already set up.
    So I'm familiar enough with databases etc, but less so the formulas and any additional database structure for any voting.
    It would be pretty simple, ie visitors could vote 1, 2, 3 4, or 5 stars for any property.
    There needs to be a total score recorded somewhere for each property.
    And the site needs to display the average score for that property.
    Any pointers on this much would be much appreciated.
    Thanks.

    Consider my wrist duly slapped.
    Yes, Google is an excellent resource, although in my experience for many things such as this a search will return 101 different ways of doing something, many of which will do, or explain, 80% of what you need.
    So sometimes posting on a forum is better for getting a recommendation from someone for a good tutorial on something.

  • CS4 Bridge Star sorting system doesn't work

    I have been using Photoshop and Bridge for years, but just started using Bridge in CS4 (Windows XP Pro). The sorting system where Bridge will display only those images with a specified number of stars simply does not work. I have never had this problem before, on any machine and with any version before CS4. (In other words, I know hot shi works because I've used it in CS2 and CS3, but it simply does absolutely nothing in my Bridge CS4!) Any recommendations?

    I know it's curious why I'm just getting to his now. I have had the software installed for a long time. I just haven't used it.
    I have been using Photoshop since PS 7, and this is a registered upgrade that I've had for quite a while. But I am slow in converting, and I have still been using CS2 up until recently. (I have some routines and actions built into CS2 that I'm not good at re-building or converting into a new version.
    So be assured this is legitimate software. I'm a businessperson and I do everything legit. www.paulwphotogaphy.com
    It might be because I still have CS2 and Bridge from CS2 still loaded on my PC. I don't want to lose CS2 yet. (I know, it's a familiarity thing.)
    All that being said, and ideas?

  • Using Aperture's star rating system

    Forum member mrhooper posted [something in another thread|http://discussions.apple.com/thread.jspa?messageID=13357908#13357908] which caught my eye. I didn't have time to respond, and now that thread is marked answered -- and my reply is slightly off-topic -- so I started this new thread in the hopes of learning how better to use the star rankings in Aperture.
    Below is +what I do.+ I'm very curious to find out what you do -- or to hear any suggestions for making what I do more sensible.
    Here is (part of) mrhooper's comment.
    So we are now bringing over everything into Aperture and then rating images on a 1, 2, 4, 5 basis. Come on, if its a 3 make a decision. Everything else is a 9, and then the rejects are deleted. And then the trash is emptied and they are out of the library.
    So we bring in the raw and then quickly rate, and I can't image a 400 shoot taking much more than 5 minutes rate.
    Go through once for 1, then for 2, by then the 4 is obvious and the 5 we just love anyway. 9 everything else.
    Fwiw (always an auspicious start to an Internet posting), I TOTALLY agree re: the wasted gamut of the seven-level rating system (that's rejected-unrated-1-2-3-4-5).
    Here's what I've settled on:
    • If I look at a picture, I rate it. Reject or save-and-decide-later. That's "9" and "1". So "unrated" is meaningful to me. It doesn't mean "less than rated", and, importantly, it doesn't mean "not-rejected"; it means, literally, not-yet-rated. (The problem solved here occurs when I am part way through tossing rejects from a Project and I am interrupted.)
    Immediately after import, I add a Project description, assign a Place, and Stack images taken in burst mode or with any range of exposure settings. When I rate images in a Project, the first thing I do is go through these Stacks and select the most usable image from these minor variations (I need to do this before comparing un-like images in the Project). Within any Stack, I might have rejects ("9") and saves (1-star); the "pick" of the Stack gets a 2-star rating (1-star is already in use).
    • 1- and 2-star ratings +have the same value to me as images.+ The only difference is that 2-star images came from Stacks. (Those Stacks may contain 1-star images which for any number of reasons I want to retain even though they are not a Stack pick and will likely never be promoted nor processed nor printed nor published).
    Now I can go through my Project and make my picks. I mark images to be developed in RED (I use the 8 color labels to track image development). All of these also get upgraded to 3- or 4-stars.
    • 3-star means "keep". The general idea is that in a few years time I will likely want to do some major weeding in my Aperture orchard. Any 1- or 2-star images will then be unceremoniously deleted. 3-star images will be kept.
    • 4-star means good enough for publication. One of the best of the Project.
    After I develop the images in a Project, I will re-assign the star rankings. During development, some images will be promoted.
    • 5-star means not only good enough to be published as one of the best of the Project (and I mean that at whatever level one works -- from emailed to friends to printed for sale), but good enough to be included in some other sampling of my work. (I keep an Album for my Portfolio. The images in the Album are selected from my 5-star images.
    Note that in my use, +star ratings are Project specific+. There is no value-equivalence between the star ratings -- and I consciously try to avoid comparisons across Projects. (If I've done a shoot, I need to know which are the usable/salable shots in that shoot -- I don't need to know how they rank in my life's work.) All of the 4-star images in one Project may be of less comparative value to me than the only 4-star image in another Project.
    So in my system, "Reject", "3-star", and "4-star" are the only ratings which are necessary. They correspond to the all important distinctions mrhooper indicated:
    - throw-out
    - keep but don't use
    - use.
    The other star ratings could -- and from a tidy database standard, should -- be replaced by a metadatum that is not part of the rating gamut.
    The orchard floor is yours ...
    Message was edited by: Kirby Krieger

    Hi Kirby,
    Thanks for opening this up, as I suspect most of us have gone through the "let's see that's a 1 or no... probably a 2, perhaps I can clean up the backgound and then it would be 3. " etc etc.
    We settled on a similar process where you suggest it is a project by project rating, not our life's work.
    So we skip 3, play with 4 and 5, that should be obvious.
    1 and 2, they are going to be deleted at some stage in the future, unless it is some rare thing, and that doesn't happen every shoot.
    In Jan this year looked at the 2008 year 1, 2 and deleted most of them. Hey, we hadn't used them, touched them, improved them or even thought about them. Goodbye.
    Some memorabilia, sentimental value ones got to stay.
    When we look for the best, then 5 is the go. Maybe a review of 4's but only if we are struggling in 5s
    Which by the way we tend to be fairly generous with I suppose.
    Checked a shot of 60 images early in the week, 15 are in the 4 and 5, 8 are 5.
    We also use the wonderful color system. Now this sorts out a lot of things for later smart albums.
    Here are a few Green-teaching. Red-for web site pages, Blue - the crown jewels, the ones we both love. Purple- spec shots for photo library etc.
    Yep, sometimes a shot might be two or more colors, but it is not stopping us at the moment.
    We do shoot burst, but don't stack. If its a 4 I want to be able to see it. We create albums in the project Star 4, Star 5, so there they are in a hurry. Yep, know it is easy to do that in the search box, and can use Ctlr1-5, but the clever is later when we can be really specific in search for albums with Star 5, or what ever.
    Just to finish off, the 4 and 5 get keywords, lots of them. From event, to person, to specific lighting, to species, or building type or.....
    want a pic of a 1937 Ford- in Blue, at the Last Cafe, in Spring, in the sunshine, front lit, side view?
    That is what Aperture does.
    and because of the way we use projects for each shoot, bet I could find it in about 10 seconds in quick review of the appropriate year or month as well.
    This is not the thread on project names, but we have from the beginning way back in iPhoto(5) put them in as a date and description.
    Cool thing now in Projects/Full Screen, is I can Filter by the date number so typing in 9012 gets me all the projects only from 2009, December. (9) 0 (12) Oh, am aware of what is going to happen when we have been round the scale once and the numbers come back. And we have a plan.
    I am sure there are other ways to start a good system, to use the ratings and the keywords of Aperture, and agree that you have to think project specific when it comes to what is a 5.
    Reserving 5 only for the 'very best image you ever took of a rose", is a bit limiting and what if my "Very best waterfall picture' is even better?
    Thanks for starting a good ideas discussion.
    Regards
    DJ

  • How effective is the five star rating system?

    I'm all for rating buyers and sellers on eBay so that one can distinguish the good buyers and sellers from those that are perhaps a little less professional.  However, I've had sellers ask me to leave a 5 star rating across the board, as they claim anything less is considered a negative rating.  Most sellers write thank you on the items they send but in many cases that's the only communication that you've had with them.  What does that warrant on the rating system to provide honest feedback?  When the description on an item doesn't really tell you anything other than say "old stamp".  How do you rate that?  It is an old stamp; so looked at one way the description is very accurate but it's not really telling you anything about the item..   I may be a bit naive here but I've never seen a list of the criteria used to determine "very accurate", "very fast", "very satisfied" or "very quickly".  For the rating system to accurately reflect how good or poor the buyers and sellers are it needs to be objective.  That is to say that buyers and sellers must have a generally agreed upon statement of what constitutes the categories from 1 to 5.  After all one person's "very fast" (it shipped within a week) could be another person's "very slow".  Subjective ratings are open to interpretation and all one sees is the feedback comment and the ratings not how the person determined the ratings.  I think this is a discussion that would help to improve the feedback system and make it a more accurate reflection of how both buyers and sellers do business in this arena.

    It seems now that Ebay let now the sellers decide when it is ok to receive an item  Not exactly. EBay removes Seller Protection if the seller does not ship within seven days. Which has been the policy for many years. The delivery time is mostly due to the shipping service (China Post, USPS, Canada Post) although if an overseas seller uses Surface Shipping, he should understand that it will be on the high seas for six weeks to three months.The 'expected delivery time' is given by the shipping service not by the seller. Paypal is now allowing buyers to open disputes for up to 180 days**, in part as a reaction to unhappy buyers who have been hornswoggled into waiting past the former 45 day deadline for delivery. So really, there is now more power in the hands of the buyer. In my opinion, and I have lots of opinions. no buyer should wait more than 30 days for a delivery.Normal delivery from Europe* is 10 to 15 days.From Canada or the USA 15 to 20 days.From Asia 20 to 30 days. After that contact the seller and if neither tracking information nor a refund arrives within 24 hours, open a Dispute.    *European sellers use Air Mail as default. Asian sellers, especially those using Free Shipping, use Surface as a default. **(Or just don't ship at all and then promise a replacement which never arrives, but by then the Dispute period of 45 days has passed.)

  • I lost my star rating system

    I lost the star system rating on PSE 8.  All my pictures lost the star rating  How do I retrieve the rating back?

    Obvious answer : if you made a recent backup, you should restore.
    Otherwise, if you used 'write metadata to files', the rating may be still in the photo pictures. The problem is there is no reverse action to my knowledge : write file metadata to the database...
    If you have written the metadata to files, you can check in the editor, using 'file  / file info' and the 'advanced' section in the left of the panel. It's in the xmp core properties, xap:rating
    So you could create a new catalog and reimport your files, you'd recover tags and ratings,  but you'd lose stacks, version sets and albums.

Maybe you are looking for

  • Obiee 11g error

    Hi All, I am using obiee 11g for a demo project.When i a run the a report just with 2 columns from 1 from dimension and 1 from fact.It is throwing an error.the error message is Query Failed: [nQSError: 14025] No fact table exists at the requested lev

  • How to keep OAM 11g session in HTTPS

    I have a LB that initiates HTTPS and then forward the request to OHS which is in simulateHTTPS. Webgate is running on this OHS. Problem I am seeing is that request starts off as HTTPS then WG redirects to OAM, its running in HTTP. How can I keep OAM

  • After update to 6.0.2 i cant open link's in new tab by middle button. What happen with?

    i cant open link's by middle button click'n! Before update that was work, no new addons, nothing new! Just after update!

  • SuperDrive Update 2.1 Error message at startup!

    About a month ago there was a software update for superdrive, it was checked so i downloaded it. well ever since, when my computer starts up, the first program that opens up is "SuperDrive Update 2.1" and all it does is display a message "No updatabl

  • Why Has Too Many Tabs Been Suddenly Removed?

    Firefox and add ons have been working fine. Following a crash I am now informed that Too Many Tabs 1.3.6 is not compatible with Firefox 3.6.18 . I don't want to upgrade because, usually, numerous add ons fail to work with upgrades and an upgrade tend