Help me with my project !

My project objective : To design the simulation of a poker game and to evaluate a standard poker hand.
public class Card {
private String suit;
private String rank; // Ace-King
public static final String [] CSUIT =
{"Hearts","Diamonds","Clubs","Spades"};
public static final String [] CRANK =
{"Ace","Two","Three","Four","Five","Six","Seven","Eight","
Nine",
"Ten","Jack","Queen","King"};
public Card (String s, String r) {
suit = s; rank = r;
public String getSuit() {
return suit;
public String getRank() {
return rank;
public String toString() {
String result = rank + " of " + suit;
return result;
public class Pack {
private Card [] pack = new Card [52];
int x = 0;
public Pack () {
for (int i=0; i<Card.CSUIT.length; i++) {
for (int j=0; j<Card.CRANK.length; j++) {
String col = Card.CSUIT;
String siz = Card.CRANK[j];
pack[x++] = new Card(col,siz);
// Not sure if this is correct or not
public void shufflePack() {
for (int i = 0; i < Card.CSUIT.length; i++) {
i = (int) ( Card.CSUIT.length * Math.random() );
for (int j = 0; j < Card.CRANK.length; j++) {
j = (int) ( Card.CRANK.length * Math.random() );
public Card getCard(int n) { // whats this for?
return pack[n];
public class PokerHand {
private Pack [] phand = new Pack [5]; //correct?
// Not sure if correct or not
public boolean isFlush() {
CSUIT f = new CSUIT();
String flush = f.getSuit();
for(int i = 1; i < 5; i++){
if(!(phand.toString().equals(flush)))
return true;
return false;
Questions:
1.) For class Pack.java, I need a method shufflePack() to randomise the sequence of cards in the pack. Need some advice and explanation on how I do it, my method is surely wrong I know :(
2.) For class PokerHand.java, it represents a pokerhand of 5 playing cards, I need a method isFlush() which returns true if the poker hand has a flush, or false otherwise (boolean), flush is 5 cards of the same suit. Advice and explanations? I'm not sure if the constructor is correct too?
Sorry, I'm super new to this, and the lessons is kinda fast for me to catch up. Any help would be greatly appreciated! Thanks in advance!
P.S. Try and look at this program in a noob kinda way. Because i got some great advice from nice people but I just don't understand when they tried to explain Vector to me, which i had not learn yet.

Reply #1 was very helpful to your shufflePack() method.
Basically, you can create a second array of 52 cards, like tempPack[52] or something. Now, all you need to do is loop through every card in pack[], and put it into a random index in tempPack. Once you've done that for every card, set pack equal to tempPack.
Pseudocode:
Card [] tempPack = new Card[52];
for (0 to 51) {
    // -pick a random number between 0 and 51
    // -if tempPack[randomnumber] is empty, put pack[loop index] into that position
    // -if there's already a card in tempPack[randomnumber], keep picking random numbers until you find an empty spot
//all cards from pack[] should now be in a random position in tempPack[]
pack = tempPack;You could also reverse this and pick random cards from pack[] and add them in order to tempPack[]. Doesn't matter. Just make sure you include every card, and don't grab the same card twice.

Similar Messages

  • Please help me with my project- I know nothing about PS!!!!

    I want to major in Photography and have to take a Digital Imaging class. The first project is a Mr. Potato Head body with all the parts (eyes, mouth, hands, etc.) scattered around it. I have to create layers I guess to put the body parts in but have NO idea how to do it! I know how to create a new layer, but I don't know how to put the body parts in the layer or anything! The only thing I've done with Photoshop prior to this is editing photos but have no idea how to do anything else and have always been confused with the layers in Photoshop and never really understood the feature. (This is an online class BTW).
    Also, I asked this somewhere else and the person told me that when I selected the part of the image I wanted to put in the new layer, I can select the copy via layer and a new layer is automatically created. However, I can't seem to access that layer when I click on it and it doesn't appear to be locked. Why is this? (The answer is probably something obvious but I'm so new at Photoshop I know pretty much nothing about it!)
    If anyone can help me, I would reeeally appreciate it!!!!

    Hi,
    Below are some tutorial link explaining layers.
    http://www.photoshopessentials.com/basics/layer-shortcuts/
    http://www.tutorial9.net/photoshop/working-with-layers-in-photoshop/
    For extracting a perticular part you have to create selection for the part and Press Ctrl+J to copy paste in new layer.
    Hope this helps,
    Cheers,
    Maneet Puri,
    LeXolution IT Services

  • Please help me with my project

    I am required to do a proj in java.i am not finding
    a good topic. But i liked the topic"html from java"
    i dont have a clue as to h ow to do it.
    please could you specify the detailed algorithm
    for implementing it.i will be grateful
    also if you know some other better topic ,pls
    could you tell me abt it along with the algorithm
    plese help
    belur

    So in a way you'd like us to do your project for you?
    Wouldn't that make it our project?

  • Can some one help me with this project

    This project will simulate the behavior of an Integrity Subsystem in validating the data in a database.
    More specifically, assume there are 2 tables, A and B, in a given database. Table A has 4 integer
    attributes names a, b, c, d and table B has 4 integer attributes named e, f, g, h.
    Your program is to input up to 20 integrity rules as discussed below, and store them in some internal
    format of your choosing. Then enter up to 15 tuples for each table. For each tuple, check it against all the
    applicable integrity rules and print out an error message for each rule that is violated. If no rules are
    violated then print a message saying all it well and enter that tuple into the database. Do not enter a tuple
    into a database if any rule is violated for that tuple.
    There are 3 different types of integrity rules: Primary key, Foreign key, and Attribute.
    The formats for the rules are given below:
    Primary key: rule#, P, tablename, attribute name
    1 A or B a,b,c,d,e,f,g, or h
    The meaning of this rule is that the specified attribute name of the specified table is the
    primary key of that table.
    Foreign key: rule#, F, tablename, attribute name, tablename, attributename
    2 A or B a,b,c,d,e,f,g, or h A or B a,b,c,d,e,f,g, or h
    The meaning of this rule is that the first attribute name and tablename is a foreign key
    referencing the second attribute name and tablename.
    Attribute: rule#, A, tablename, attribute name, low value, high value
    3 A or B a,b,c,d,e,f,g, or h 0-9999 0-9999
    The meaning of this rule is that the attribute name in the specified table always have a value lying
    in the range of low value to high value inclusive.
    Your program should implement at least the following 10 rules
    Rules:
    1 P A b
    2 F A d B g
    3 A A a 10 20
    4 A B h 8 9000
    5 P B g
    6 A B g 0 100
    7 F A c B h
    8 A A b 10 30
    9 A B e 0 80
    10 A A a 8 30
    Page 2 of 3
    The following data is provided for your convenience to test the correctness of your program. Remember I
    will use these data and some other new data for the testing.
    Tuples: (Insert in this order)
    A 8 32 30 50
    A 10 20 30 40
    B 5 20 50 100
    B 8 30 40 200
    A 10 20 100 50
    A 10 22 100 40
    A 8 32 30 40
    B 30 40 50 60
    B 80 2000 0 0
    A 9 25 200 50
    A 12 25 60 50
    B 0 0 0 100
    A 10 10 10 10
    A 20 20 200 40
    A 0 0 0 0
    B 0 0 0 0
    B 50 50 50 50
    Specifications:
    1. You can just represent the provided 10 rules and new rules created by yourself in some
    internal data structures. Or you can store the rules in a text file and then read it one by one.
    2. The test data must be stored in a text file �tuples.txt� in which each line has one tuple and
    field items are separated by one or more blank spaces (not comma, or colons).
    3. Bring a project report at the beginning of the class on the due date. The project report
    should have a summary on how you finish the project. For examples, you should discuss
    some key data structures you chosen to store the rules and tuples, how you check the invalid
    tuples and insert valid tuples, and so on. I hope that after reading the report, I should get some
    ideas how you finish the project even without reading the source code.
    4. Also you should print out source code and include in the report. In addition, you need to
    copy the execution output results. I give a sample expected output for your reference. You
    can change it in any way but just make sure it is clear to read for users.
    Sample Outputs (for simplicity only three rules used in this example):
    Integrity Rules (total 3):
    1 P A b
    2 F A d B g
    3 A A a 10 20
    Tuples: (Insert in this order)
    T1: A 8 32 30 50
    Page 3 of 3
    T2: A 10 20 30 40
    T3: B 5 20 50 100
    T4: A 8 25 40 100
    Results:
    T1 is invalid (against rule 3), discard it!
    T2 is valid, insert to DB
    T3 is valid, insert to DB
    T4 is invalid (against rule 1), discard it!
    Summary:
    2 tuples (T2, T3) are inserted to DB
    2 tuples (T1, T4) are discarded
    5. Bring a floppy disk containing the source code and the project report word file. It should
    only have one directory named as your �Firstname.Lastname� For example, if your name is
    John Johnson, the directory name should be �John.Johnson� in the root (your wku email
    should be [email protected] also in most cases).
    Create a subdirectory �Report� to store the report word file. The report name can be
    �CS543_Project_2_Report�. Then create another directory named as �Code� to keep all the
    necessary files to run the program without any further configuration (including �tuples.txt�).
    6. Submit a zip file which contains all the files in your floppy disk to the �Digital Drop Box�.
    The zip file name must be �Firstname.Lastname.zip�. For example, if your name is John
    Johnson, the directory name should be �John.Johnson.zip�. So if I unzip the file, I should get
    exactly same files as the floppy disk.
    7. Follow closely �Program Scoring Rubric For CS Dept� and �Writing/Documentation
    Scoring Rubric for CS Dept�. Your project grading will be based on these two guidelines.
    At least, your code should have a perfect and consistent format style and include sufficient
    comments (generally > 20%) which explain possible confusions clearly. Also always try to
    use constant variables to denote numbers. For example, if you created 20 rules in total, you
    can define a constant variable such as in C++ �#define TOTAL_INTEGRITY_RULES 20�.

    So what is your question?
    People here are not generally inclined to read your homework, and then read your mind to find out what's giving you trouble.
    If you're absolutely lost and have no clue where to start, you should speak to you instructor or engage the services of a private tutor. These forums are simply not an effective venue for that kind of help.
    Otherwise, take your best shot, do as much as you can do, and then post specific questions about the specific bits that are giving you trouble. Be as thorough and precise as possible about what you're trying to do and what didn't work. Copy/paste the complete text of any error messages. Add println statements to your code and include comments like "I expected it to print xyz here but it printed abc".

  • Need Help ASAP with MS Project Professional 2013 - 60-day Trial Download

    I followed all steps to download the 60-day trial of MS Project Professional 2013, and it doesn't work.
    Once I get to the download manager and download what I think is the trial application, the file comes in as: ProjectProfessional_x86_en-us.img. I tried to launch the program once downloading was completed while Download Manager was open, and it
    asks for "choose program you want to use to open this file". The file is specified as disc image file (saved on my file - downloads). An icon didn't successfully download to my deskstop.
    Where can I download the actual 60-day Trial Application? I've tried link below and started steps from that point and wasn't successful as it just accepted file as .img and wouldn't save onto my computer.
    Has anyone encountered the downloaded trial file as an .img file?
    How can I prevent my computer from reading the file as a disc image file in my downloads?
    What is the correct extension file of the trial application?
    Will product key from original attempted trial download work when attempting 2nd download?
    When downloaded successfully, should the file be full data application not just .img file that originally was received on 1st and 2nd attempts at downloading trial?
    Thanks for your help!
    Loren

    Helga --
    Do not despair, my friend, for there is a way to install the trial software without burning a CD.  I use a tool called 7-Zip that can extract the files in an IMG or ISO file easily.  It extracts the files and folders into a folder of your choice. 
    You can download the 7-Zip software for free at:
    http://www.7-zip.org/
    And no, I do not work for this company.  I simply user their tool and like it because it allows me to install software without needing to burn a CD or DVD of the software.  And by the way, I downloaded the same trial IMG file that you did and
    7-zip was able to extract the files.  From that point, I could install the trial version of Project 2013, as needed.  Hope this helps.
    Dale A. Howard [MVP]
    VP of Educational Services
    msProjectExperts
    http://www.msprojectexperts.com
    http://www.projectserverexperts.com
    "We write the books on Project Server"

  • Please people help me with this project ( the bag of fruits)

    hey everyone, i have a assignment that due next Monday and i have some troubles solving it its about a bag of fruits where we can put items grab items get items and so on. this site where the applet for this application is exist http://courses.cs.vt.edu/~csonline/SE/Lessons/OOP/index.html this is my code
    public class Bag{
    String fruits[];
    int bagSize;
    public Bag () //constructor
    String[] newFruits = new String[8];
    bagSize=0;
    private boolean isEmpty () {
    if (bagSize == 0) {
    return
    true;
    return false;
    private boolean isFull(){
    if ( bagSize== fruits.length-1){
    return true;
    return false;
    private int totalItems () {
    return bagSize;
    private boolean emptyBag (){
    return bagSize ==0 ;
    private boolean hasItem ( Object item ) {
    for ( int i =0 ; i<= bagSize-1 ; i++)
    if ( i == 0)
    return false;
    return true;
         public boolean putItem(String pItem){
         if(isFull() == true)
         return
         false;
         else
         fruits[bagSize] = pItem;
         return true;
    i will appreciate any help from you, thanks

    madridimoot wrote:
    my problem is that i have some missing methods like grabItem , putItem, getItem. and when i run the program it told me out of boundYes I can see from your code that you're having trouble with array indexes; if bagSize == 0 your bag is empty and where your bagSize == 8 (the size of the array) your bag is full. You have to add another fruit item at index position bagSize (and increment it afterwards). Deleting an element is a bit more trouble when you want to use an array. Also your method emptyBag() is redundant because it's functionally equivalent to the isEmpty() method. An array is quite a clumsy data structure for a bag of things. A List would've been better.
    kind regards,
    Jos

  • Help me with Perspective Projection (Mode7)

    Sorry I don't know wheter this question is more into Java2D or Java3D...
    #include <graphics.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <conio.h>
    #include <math.h>
    float matrix[4][4] =
    {{1, 0, 0, 0},
    {0, 0, 0, 0},
    {0, 0, 0, 1},
    {0, 0, 1, 0}};
    void vertex( float x, float y, float z ){
         float n[4],r[4]={0, 0, 0, 0};
       n[0]=x; n[1]=y; n[2]=z; n[3]=1;
       for(int i=0; i<4; i++)
            for(int j=0; j<4; j++)
               r[i]+=n[j]*matrix[j];
    putpixel(r[0]+(getmaxx()/2),r[1]+(getmaxx()/2),YELLOW);
    int main(void)
    int gdriver = DETECT, gmode, errorcode;
    initgraph(&gdriver, &gmode, "");
    errorcode = graphresult();
    if (errorcode != grOk) {
    printf("Graphics error: %s\n", grapherrormsg(errorcode));
    printf("Press any key to halt:");
    getch();
    exit(1);
    int angle = 40;
         do{
    cleardevice();
    //isometric projection
    matrix[2][0] = -0.5 * sin( angle * M_PI / 180 );
    matrix[2][1] = -0.5 * cos( angle * M_PI / 180 );
    for(int i=-100; i< 100; i+=1)
    for(int j=-100; j< 100; j+=1)
    vertex(i,0,j);
    angle+=10;
    if(angle>=360) angle=0;
    }while(!kbhit());
         getch();
    closegraph();
    return 0;
    This code is made with BC31 (graphics.h included) and this is an isometric projection.
    Anyway, I want to make a perspective projection and I need the matrix to convert into something like the code I've made (the code is isometric, but I need perspective).
    This perspective is called Mode7 in flash or SNES, and I need to make it done here in Java (for making a racing car game).
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    If these are meant to be ABAP certification questions, never thought it would be so easy. I think i should consider taking it this time
    >
    Rob Burbank wrote:
    > Tob
    Rob, when was your name changed to Tob?

  • Collage Students need help with Java project(Email Server) whats analysis?

    Hi im studying in collage at the moment and i have just started learning java this semester, the thing is my teacher just told us to do an project in java , since we just started the course and i dont have any prior knowledge about java i was wondering if some one could help me with the project.
    i choose Email Sevice as my project and we have to submit an analysis and design document , but how the hell am i suppose to know what analysis is ? i just know we use ER diagrams & DFD's in the design phase but i dont know what analysis means ?
    could some one tell me what analysis on an email service might be? and what analysis on a subject means? is it the codeing involved or some thing coz the teacher told us not to do any codeing yet so im completly stumped,
    oh and btw we are a group of 3 students who are asking u the help here coz all of us in our class are stupmed ?

    IN case any one is interested this is the analysis i wrote
    ANALYSIS
    Analysis means figuring out what the problem is, maybe what kinds of solutions might be appropriate
    1.     Introduction:-
    The very definition of analysis is an investigation of the component parts of a whole and their relations in making up the whole. The Analysis done here is for an emailing service called Flashmail, the emailing service is used to send out mails to users registered with our service, these users and there log activities will be stored in some where, the most desirable option at this time is a Database, but this can change as the scope of the project changes.
    2.     Customer Analysis:-
    We are targeting only 30 registered users at the moment but this is subject to change as the scale changes of the project .Each user is going to be entitled to 1MB of storage space at this time since we lack the desired infrastructure to maintain anything higher than 1MB but the end vision of the project is to sustain 1000 MB of storage space while maintaining a optimal bandwidth allocation to each user so as to ensure a high speed of activity and enjoyment for the Customer.
    The Service will empower the user to be able to send, read, reply, and forward emails to there specified locations. Since we are working on a limited budget we can�t not at this time enable the sending of attachments to emails, but that path is also left open by modularity of java language, so we can add that feature when necessary.
    3.     Processor Load Analysis:-
    The number of messages per unit time processing power will be determined on hand with various algorithms, since it is best not to waste processor power with liberally distributing messages per unit time. Hence the number of messages will vary with in proportion to the number of registered users online at any given time.
    4.     Database Decision Analysis:-
    The High level Requirements of the service will have to be decided upon, the details of which can be done when we are implementing the project itself. An example of high level requirements are database management, we have chosen not to opt for flat files because of a number of reasons, first off a flat files are data files that contain records with no structured relationships additional knowledge is required to interpret these files such as the file format properties. The disadvantages associated with flat files are that they are not fast, they can only be read from top to bottom, and usually they have to be read all the way through. Though there is are advantages of Flat files they are that it takes up less space than a structured file. However, it requires the application to have knowledge of how the data is organized within the file.
    Good databases have key advantage over flat files concurrency. When you just read stuff from file it�s easy, but tries to synchronize multiple updates or writes into flat file from scripts that run in different process spaces.
    Whereas a flat file is a relatively simple database system in which each database is contained in a single table. In contrast, relational database systems can use multiple tables to store information, and each table can have a different record format.
    5.     Networking Analysis:-
    Virtually every email sent today is sent using two popular protocols known as SMTP (Simple Mail Transfer Protocol) and MIME (Multipurpose Internet Mail Extensions).
    1.     SMTP (Simple Mail Transfer Protocol)
    The SMTP protocol is the standard used by mail servers for sending and receiving email. In order to send email we will first establish a network connection to our SMTP server. Once you have finished sending your email message it is necessary that you disconnect from the SMTP server
    2.     MIME (Multipurpose Internet Mail Extensions)
    The MIME protocol is the standard used when composing email messages.

  • After mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please

    after mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please are there any settings i need to alter as it seems the wav or mp3 file i ceated is being converted to a data file somewhere between the folder and disc drive

    Same thing for a movie file.. If you want to play back the movie via a DVD and a DVD player you must create a Movie DVD  and not just burn files to a data DVD... as Data DVDs are just storage devices for files and therefore will only work with computers...
    Movie DVDs are special formats that include things like menus and special file formats.. so they can playback via a DVD Player...
    You will need a 3rd party DVD Burning app like Toast which is what i actually use.... or the more popular DVD Creator app...to create and then burn a Movie DVD that will playback on a DVD Player....
    https://answers.yahoo.com/question/index?qid=20101220205435AA70beb

  • Please help me with this weird project.

    Dear all:
    I've got this project to make a chm file. The project consists of five child projects, and some topics within the master project itself. (see the first figure below) I didnt do anything to the project, just want to generate it. But after i generate the project and open the generated CHM file. It looks nothing like the TOC in the project. (see the second figure below). The CHM file has a bunch of contents that are not shown in the TOC, and none of the child projects are included.
    As i check those "bunch of contents", they are actually the topics in the master projects under the HTML files folder.
    So can anyone help me with these problems? I'm using RH8.
    p.s.
    1. The project seems like a combination of old version of RH and FM. Outside the folders of robohelp project files, there are some **.fm and **.book files.i'm not sure how they are related to what i need to do with the project.
    2. I open the project in the following weird way:
    a. Extract the rar file of the whole project files. Open the project by double clicking the "**.hhp" file.
    b. By doing this, I got the "**.xpj" file. But the original TOC becomes blank. The "HHC" file is 0kb.
    c. So i re-extract the files, the new HHC file replaces the blank one.
    d. Open the master project by doule clicking "**.hhp" file. And the TOC is shown, as in the figure above.
    Thanks!

    Thanks a lot for your reply.
    To answer your questions:
    1. "I am assuming there was no XPJ otherwise why use the HHP"
    Yes, i only see HHP file. Any consequence by opening the project with this? Well, the consequence so far i see is the blank TOC.
    2. "This was all done previously in RH? "
    I'm not sure and i dont think so. The following softwares are needed for the project before. So can you explain to me anything i have to pay attention to?
    - Adobe FrameMaker 7.0
    - WebWorks Publisher 7.05
    - Microsoft HTML Help Workshop 1.3
    - Adobe Acrobat 4.05 or later
    - Microsoft FrontPage 98 or later
    3. "Maybe you have generated to other folders and not placed copies all in one folder."
    I did what you say, and get the right result.
    One thing that i'm quite curious is that besides the child projects, there are some topics in the parent project that are not shown in the project TOC but in the generated CHM file, like "Apperance" shown in the figure within my first post.

  • HELP PLEASE!  Major Problem with FCP Project

    OK I am starting to panic. I was editing a wedding video for a client on this 150GB proMAX external hard drive. Everything as fine until this morning. Now when I go to open the project I always get a fatal error.
    What happens is the project begins to load but then gets to one unrendered point on my timeline and it just hangs. I get that spinning ball of death and I'm not sure why. Then the program "quits unexpectedly." I have tried this several times and consistently get the same result.
    I have tried opening this project on my MacBook and the same thing occurs. Can anyone PLEASE help me with this issue? I would appreciate any help

    sounds like a corrupted clip.
    disconnect the proMAX drive first, then open the project.
    when the project has opened (with all media offline) then reconnect and mount the proMAX drive.
    now you can start to reconnect the media ... but do it in parts, not all in one go. by a gradual process you should eventually discover which clip is causing the crash .... when you find out the corrupt clip, recapture from source.
    good luck
    Andy

  • I just got a Dell m110 projector which can do wireless projection. however I cannot project with my ipad...can anyone help me with this?

    I just got a Dell m110 projector which can do wireless projection. however I cannot project with my ipad...can anyone help me with this?

    u might need to download this app: mobishow-pro for dell projector
    http://itunes.apple.com/au/app/mobishow-pro-for-dell-projector/id459389736?mt=8

  • Help me with my Science Project

    Hi, for my science project, Im making my own solar panel ipod recharger. I need to know whats the minimum amount of current a 5th gen Ipod requires. I know USB 2.0 has a max of 500ma but i would like to spend less money and try to buy solar panels wtih less current. So ill take any information that'll help, but be sure of the information. I wouldnt want to fry my 3 month old ipod X). Thnx

    Nope, they wrote
    Unfortunately licenses are only available to companies; we do not license individuals for these purposes. The standard iPod specifications are confidential and available only to our licensees. Best of luck with your project!
    So if anyone else have any ideas please do tell.

  • Help With A Project " XML Photo Gallery"

    Hi all thanks for taking the time to look at this post,
    I have made a Photo Gallery using Xml but im having a bit of
    trouble getting it to work, What i mean is that i have saved my xml
    gallery as a .swf file and im loading it into a loader componet of
    another .swf file.
    The gallery is the screen shots for my Clans webpage. But
    when i load the gallery .swf file into the themain.swf file i get
    no pictures or captions.
    I used a tutorial to make this work
    http://www.gotoandlearn.com/
    Flash XML Basics video.
    My website thats in development can bew viewed here
    http://www.theoaps.co.uk/Support%20Files/Index1.html
    (please note this is still in draft as we are trying to include xml
    to make the swf files smaller)
    The Gallery file can be viewed here
    http://www.theoaps.co.uk/Support%20Files/GScreens.swf
    (this works but the buttons do not go to the next picture)
    The Actual .fla file is here
    http://www.theoaps.co.uk/Support%20Files/GScreens.fla
    Please Please Please can someone help me with my problem (not
    the drinking problem) this is driving me made and i can't
    understand why it is doing this
    Thanks
    Dunkyb123
    www.theoaps.co.uk

    I HAVE SOLVED THE BUTTONS PROBLEM

  • Need help with a project

    Hi,
    I'm a final year engineering student doing my project on cloud computing. Our project is a web application developed which concerns the issue of cloud security.Our lecturers asked us to put it on the cloud instead of showing it as a web application. So we
    are trying the trial version of Windows Azure. I need help in putting my project on to the cloud. Please help regarding this as soon as possible... 
    We are using Apache tomcat, JDK 1.6, Wamp server for our web application and we have developed this using netbeans IDE
    Very Urgent!!!

    Hello there, if you're still looking for help you might not be in the right forum.  This fourm is all about Azure SQL Database.

Maybe you are looking for