Help with problematic code

I am trying to write an ecryption program that ignores the words "a" and "an" but replaces all other letters with another letter I specify. It uses two JTextAreas, one for inputText, one for outputText. The segment of code I am using is if(b=='a' || b=='A')
if(index>0)
     if((sentance.charAt(index-1) == ' ' && sentance.charAt(index+1)== ' '))
          rIndex+=1;
     else if(sentance.charAt(index-1)== ' ' && sentance.charAt(index+1)== 'n' && sentance.charAt(index+2)==' ')
          rIndex+=2;
else if(sentance.charAt(index+1)== ' ')
          rIndex+=1;
     else if(sentance.charAt(index+1)== 'n' && sentance.charAt(index+2)==' ')
          rIndex+=2;
     else
          outputText.append("A");
}but this replaces EVERY 'a' in the inputText
Does anybody have any ideas on how I can replace the 'a' and 'an' without replacing all other a's?

I do that (the index -1 and index+1 parts of the code respectively) but for some reason it still gets rid of the a' s that don't have the space like apple prints out pple and water prints out wter

Similar Messages

  • Can you help with the code to publish Flash to my own domain.

    Thank you for your help, I publish the my site to my own domain, I do not use .Mac, I tested your code and ity works well on .Mac, can you help with the code to publish to my own domain.
    Thank you again

    You appear to have just collected a variety of code snippets and thrown them together, including a section of AS2 code ( gage.onRelease = function() {... )
    The suggestion I offered yesterday still stands.  You should find a tutorial regarding AS3 and the atan2 function.  Beyond that, what you show suggests this is a school assignment.  You should seek help from your fellow students and instructor if that is the case.

  • I need help with this code error "unreachable statement"

    the error_
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errors
    import java.util.*;
    import javax.swing.*;
    import java.awt.*;
    public class Tools//tool class
    private int numberOfToolItems;
    private ToolItems[] toolArray = new ToolItems[10];
    public Tools()//array of tool
    numberOfToolItems = 0;
    for(int i = 0; i < toolArray.length; i++)//for loop to create the array tools
    toolArray[i] = new ToolItems();
    }//end for loop
    }//end of array of tools
    public int search(int id)//search mehtod
    int index = 0;
    while (index < numberOfToolItems)//while and if loop search
    if(toolArray[index].getID() == id)
    return index;
    else
    index ++;
    }//en while and if loop
    return -1;
    }//end search method
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0;
    int index;
    index = search(id); <-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    }//end delete method
    public void display()//display method
    for(int i = 0; i < numberOfToolItems; i++)
    //toolArray.display(g,y,x);
    }//end display method
    public String getRecord(int i)//get record method
    // return toolArray[i].getName()+ "ID: "+toolArray[i].getID()
    }//end getrecod
    }//end class
    Edited by: ladsoftware on Oct 9, 2009 6:08 AM
    Edited by: ladsoftware on Oct 9, 2009 6:09 AM
    Edited by: ladsoftware on Oct 9, 2009 6:10 AM
    Edited by: ladsoftware on Oct 9, 2009 6:11 AM

    ladsoftware wrote:
    Subject: Re: I need help with this code error "unreachable statement"
    F:\Java\Projects\Tools.java:51: unreachable statement <-----------------------------------------------------------------------------------------------------------------THIS
    int index;
    ^
    F:\Java\Projects\Tools.java:71: missing return statement
    }//end delete method
    ^
    F:\Java\Projects\Tools.java:86: missing return statement
    }//end getrecod
    ^
    3 errorsThe compiler is telling you exactly what the problems are:
    public int insert(int id, int numberInStock, int quality, double basePrice, String nm)//insert method
    if(numberOfToolItems >= toolArray.length)
    return 0; // <<== HERE you return, so everyting in the if block after this is unreachable
    int index;
    index = search(id);  //< -----------------------------------------------------------------------------------------------------------------HERE
    if (index == -1)
    toolArray[index].assign(id,numberInStock, quality, basePrice,nm);
    numberInStock ++;
    return 1;
    }//end if index
    }//end if toolitem array
    return -1;
    }//end insert method
    public int delete(/*int id*/)//delete method
    // <<== HERE where is the return statement?
    }//end delete method
    public String getRecord(int i)//get record method
    // return toolArray.getName()+ "ID: "+toolArray[i].getID() <<== HERE you commented out the return statement
    }//end getrecod
    }//end class

  • Need help with WMI code that will send output to db

    'm new to WMI code writing, so I need some help with writing code that we can store on our server. I want this code to run when a user logs into their computer
    and talks to our server. I also want the code to:
    * check the users computer and find all installed patches
    * the date the patches were installed
    * the serial number of the users computer
    * the computer name, os version, last boot up time, and mac address
    and then have all this output to a database file. At the command prompt I've tried:
    wmic qfe get description, hotfixid
    This does return the patch information I'm looking for, but how do I combine that line of code with:
    wmic os get version, csname, serialnumber, lastbootuptime
    and
    wmic nicconfig get macaddress
    and then get all this to output to a database file?

    Thank you for the links. I checked out http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx and
    found lots of good information. I also found a good command that will print information to a text file.
    Basically what I'm trying to do is retrieve a list of all installed updates (Windows updates and 3rd party updates). I do like that the below code because it gives me the KB numbers for the Windows updates. I need this information so my IT co-workers &
    I can keep track of which of our user computers need a patch/update installed and preferably which patch/update. The minimum we want to know is which patches / updates have been installed on which computer. If you wondering why we don't have Windows automatic
    updates enable, that's because we are not allowed to.   
    This is my code so far. 
    #if you want the computer name, use this command
    get-content env:computername
    $computer = get-content env:computername
    #list of installed patches
    Get-Hotfix -ComputerName $computer#create a text file listing this information
    Get-Hotfix > 'C:\users\little e\Documents\WMI help\PowerShell\printOutPatchList.txt'
    I know you don't want to tell me the code that will print this out to a database (regardless if it's Access or SQL), and that's find. But maybe you can tell me this. Is it possible to have the results of this sent to a database file or do I need to go into
    SQL and write code for SQL to go out and grab the data from an Excel file or txt file? If I'm understanding this stuff so far, then I suspect that it can be done both ways, but the code needs to be written correctly for this to happen. If it's true, then which
    way is best (code in PowerShell to send information to SQL or SQL go get the information from the text file or Excel file)?

  • I need help with my code..

    hi guys. as the subject says I need help with my code
    the Q for my code is :
    write a program that reads a positive integer x and calculates and prints a floating point number y if :
    y = 1 ? 1/2 + 1/3 - ? + 1/x
    and this is my code
       This program that reads a positive integer x and calculates
       and prints a floating point number y if :
                 y = 1 - 1/2 + 1/3 - ? + 1/x
       import java.util.Scanner; // program uses class Scanner
        class Sh7q2
           // main method begins execution of Java application
           public static void main( String args[] )
          // create Scanner to obtain input from command window
             Scanner input = new Scanner( System.in );
             int i = 1; // i is to control the loop
             int n = 2; // n is suppose to control the number sign
             int x; // a positive integer entered by the user
             int m;
             System.out.println("Enter a positive integer");
             x = input.nextInt();
             do
                m = (int) Math.pow( -1, n)/i;
                System.out.println(m);
                   n++;
                   i++;
             while ( m >= 1/x );
          } // end method main
       } // end class Sh7q2 when I compile it there is no error
    but in the run it tells me to enter a positive integer
    suppose i entered 5
    then the result is 1...
    can anyone tell me what's wrong with my code

       This program that reads a positive integer x and calculates
       and prints a floating point number y if :
                 y = 1 - 1/2 + 1/3 - ? + 1/x
       import java.util.Scanner; // program uses class Scanner
        class Sh7q2
           // main method begins execution of Java application
           public static void main( String args[] )
          // create Scanner to obtain input from command window
             Scanner input = new Scanner( System.in );
             int i = 1; // i is to control the loop
             int n = 1; // n is suppose to control the number sign
             int x; // a positive integer entered by the user
             double m;
             int a = 1;
             double sum = 0;
             System.out.println("Enter a positive integer");
             x = input.nextInt();
             for ( i = 1; a <= x; i++)
                m =  Math.pow( -1, n+1)/i;
                sum  = sum + m;
                n++;
                a++;
             System.out.print("y = " + sum);
          } // end method main
       } // end class Sh7q2is it right :S

  • Noob needs help with this code...

    Hi,
    I found this code in a nice tutorial and I wanna make slight
    adjustments to the code.
    Unfortunately my Action Script skills are very limited... ;)
    This is the code for a 'sliding menue', depending on which
    button u pressed it will 'slide' to the appropriate picture.
    Here's the code:
    var currentPosition:Number = large_pics.pic1._x;
    var startFlag:Boolean = false;
    menuSlide = function (input:MovieClip) {
    if (startFlag == false) {
    startFlag = true;
    var finalDestination:Number = input._x;
    var distanceMoved:Number = 0;
    var distanceToMove:Number =
    Math.abs(finalDestination-currentPosition);
    var finalSpeed:Number = .2;
    var currentSpeed:Number = 0;
    var dir:Number = 1;
    if (currentPosition<=finalDestination) {
    dir = -1;
    } else if (currentPosition>finalDestination) {
    dir = 1;
    this.onEnterFrame = function() {
    currentSpeed =
    Math.round((distanceToMove-distanceMoved+1)*finalSpeed);
    distanceMoved += currentSpeed;
    large_pics._x += dir*currentSpeed;
    if (Math.abs(distanceMoved-distanceToMove)<=1) {
    large_pics._x =
    mask_pics._x-currentPosition+dir*distanceToMove;
    currentPosition = input._x;
    startFlag = false;
    delete this.onEnterFrame;
    b1.onRelease = function() {
    menuSlide(large_pics.pic1);
    b2.onRelease = function() {
    menuSlide(large_pics.pic2);
    b3.onRelease = function() {
    menuSlide(large_pics.pic3);
    b4.onRelease = function() {
    menuSlide(large_pics.pic4);
    I need to adjust five things in this code...
    (1) I want this menue to slide vertically not horizontally.
    I changed the 'x' values in the code to 'y' which I thought
    would make it move vertically, but it doesn't work...
    (2) Is it possible that, whatever the distance is, the
    "sliding" time is always 2.2 sec ?
    (3) I need to implement code that after the final position is
    reached, the timeline jumps to a certain movieclip to a certain
    label - depending on what button was pressed of course...
    I tried to implement this code for button number two...
    b2.onRelease = function() {
    menuSlide(large_pics.pic2);
    if (currentPosition = finalDestination) {
    this.large_pics.pic2.gotoAndPlay("s1");
    --> sliding still works but it doesn't jump to the
    appropriate label...
    (4) I wanna add 'Next' & 'Previous' buttons to the slide
    show - what would be the code in this case scenario ?
    My first thought was something like that Flash checks which
    'pic' movieclip it is showing right now (pic1, pic2, pic3 etc.) and
    depending on what button u pressed u go to the y value of movieclip
    'picX + 1' (Next button) or 'picX - 1' (Previous button)...
    Is that possible ?
    (5) After implementing the Next & Previous buttons I need
    to make sure that when it reached the last pic movieclip it will
    not go further on the y value - because there is no more pic
    movieclip.
    Options are to either slide back to movieclip 'pic1' or
    simply do nothing any more on the next button...
    I know this is probably Kindergarten for you, but I have only
    slight ideas how to do this and no code knowledge to back it up...
    haha
    Thanx a lot for your help in advance !
    Always a pleasure to learn from u guys... ;)
    Mike

    Hi,
    I made some progress with the code thanx to the help of
    Simon, but there are still 2 things that need to be addressed...
    (1) I want the sliding time always to be 2.2 sec...
    here's my approach to it - just a theory but it might work:
    we need a speed that changes dynamically depending on the
    distance we have to travel...
    I don't know if that applies for Action Scrip but I recall
    from 6th grade, that...
    speed = distance / time
    --> we got the time (which is always 2.2 sec)
    --> we got the disctance
    (currentposition-finaldestination)
    --> this should automatically change the speed to the
    appropriate value
    Unfortunately I have no clue how the action script would look
    like (like I said my action script skills are very limited)...
    (2) Also, one other thing I need that is not implemented yet,
    is that when the final destination is reached it jumps to a certain
    label inside a certain movieclip - every time different for each
    button pressed - something like:
    if (currentPosition = finalDestination) {
    this.large_pics.pic2.gotoAndPlay("s1");
    that statement just doesn't work when I put it right under
    the function for each button...
    Thanx again for taking the time !!!
    Mike

  • Help with html code - inserting video into Muse

    I am seeking help writing the code to insert a video into Muse. I uploaded video into my Business Catalyst hosting. I need it to autoplay, loop and not show any controls or frames.
    When I host video on Vimeo or YouTube, I see markings on the video that is why I am trying to just host in the same place that the files are stored for my website. If there is a way to host on youtube with out any markings showing up on the video I would be open to that too.
    I don't want to see any play button or time bar.
    Thanks in advance!!

    Hello,
    Just as an FYI - we also have an HTML5 video tool over at MuseThemes.com that achieves this, but works on mobile devices as well. The link above looks like it uses Flash, which isn't common anymore since the release of HTML5 based video.
    Simply drag the widget out onto your canvas, and link up your videos / set options like loop, controls visible, etc. It's quite a flexible widget, and there's a complete training video included so you don't get stuck
    Check out the widget here
    Just wanted to provide another alternative that could be helpful. Cheers!
    Steve Harris
    MuseThemes.com

  • Help with abap code in Transformation

    Hi Experts,
    we have a scenario where we load delta data from an DSO into a Cube.
    The records in the DSO looks like below.
    Location as (L)
    WorkOrder as (W)
    Startdate(DDMMYYYY)/time (HH:MM:SS) as (S)
    Finishdate/time as (F)
    L1
    W1
    21/04/2009/10:00:00
    21/04/2009/12:00:00
    L1
    W2
    21/04/2009/14:00:00
    21/04/2009/23:00:00
    || L1 ||W3||  21/04/2009/16:00:00 ||21/04/2009/20:00:00 || 
    Total time ( April 2009 ) for above Location L1 should be calculated as a difference between W1 and W2 since W3 is a overlapping record. So the result would be 13 Hrs. Work Orders are summarised, so we dont need work order info in the output.
    Can you experts help me with the code to implement??
    Thanks,
    DV

    For each location, for example L1, move the records to an internal table itab.
    sort itab by startdate.
    read table itab index 1. 
    You will get the first value.
    sort itab by finishdate descending.
    read table itab index 1.
    you will get the second value.
    Calculate the difference and populate it to the internal table.
    finally modify the source package.
    I have just given the logic.  I hope you can build upon this.
    I hope it helps.
    Thanks.

  • Help with date code

    Sry about this amount of code lines.... but i realy need help...
    I must insert into a table, the date, like 10/12/2009, and the time, like 22:34:12... but, when i select the date from a datepicker, and insert the time into a text field... i got this result:
    if the date inserted was 12/12/2009 and the time 22:34:12
    result is.......................12/12/0922 34:12:00 <<<<< it´s getting just the two lasts number of the year and inserting the two firsts number of the time into the year, like year 0922 ....
    I´m using a javascript source to create a datepicker......
    and that is the procedure to insert into the table.......
    PROCEDURE set_atendimento(
    p_id_chamado_atendimento IN chamado_atendimento.id_chamado_atendimento%TYPE,
    p_id_chamado IN chamado_atendimento.id_chamado%TYPE,
    p_informacao IN chamado_atendimento.informacao%TYPE,
    p_datahora_inicio IN chamado_atendimento.datahora_inicio%TYPE,
    p_datahora_fim IN chamado_atendimento.datahora_fim%TYPE,
    p_hora_inicio IN VARCHAR2,
    p_hora_fim IN VARCHAR2
    IS
    v_inicio DATE;
    v_fim DATE;
    BEGIN
    v_inicio := TO_DATE(TO_CHAR(p_datahora_inicio || p_hora_inicio), 'DD/MM/YYYY HH24:MI:SS');
    v_fim := TO_DATE(TO_CHAR(p_datahora_fim || p_hora_fim), 'DD/MM/YYYY HH24:MI:SS');
    UPDATE
    chamado_atendimento
    SET
    informacao = UPPER(p_informacao)
    WHERE
    id_chamado_atendimento = p_id_chamado_atendimento;
    IF SQL%NOTFOUND THEN
    INSERT INTO
    chamado_atendimento
    (id_chamado_atendimento, id_chamado, id_operador, datahora_inicio, datahora_fim, informacao)
    VALUES
    (SEQ_CHAMADO_ATENDIMENTO.nextval, p_id_chamado, pkg_operador.get_id_operador, v_inicio, v_fim, UPPER(p_informacao));
    END IF;
    END;
    that is the JAVASCRIPT
    <script language="JavaScript" type="text/JavaScript">
    $(function(){
    $.datepicker.setDefaults({
    showOn: 'button',
    buttonImage: '/i/themes/fwsac/includes/jquery/images/calendario.gif',
    buttonImageOnly: true,
    closeText: 'Fechar',
    prevText: '<Anterior',
    nextText: 'Pr&oacute;ximo>',
    currentText: 'Hoje',
    monthNames: ['Janeiro','Fevereiro','Mar&ccedil;o','Abril','Maio','Junho','Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
    monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun','Jul','Ago','Set','Out','Nov','Dez'],
    dayNames: ['Domingo','Segunda-feira','Ter&ccedil;a-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sabado'],
    dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
    dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
    dateFormat: 'dd/mm/yy',
    firstDay: 0,
    isRTL: false,
    showAnim: 'slide'
    $('#P5004_DATAHORA_INICIO , #P5004_DATAHORA_FIM').datepicker({ beforeShow: fdateRange });
    function fdateRange(input){
    return {
    minDate: (input.id == "P5004_DATAHORA_FIM" ? $("#P5004_DATAHORA_INICIO").datepicker("getDate") : null),
    maxDate: (input.id == "P5004_DATAHORA_INICIO" ? $("#P5004_DATAHORA_FIM").datepicker("getDate") : null)
    </script>
    what i must change to get the 4 numbers of the year and all numbers of the time and conca " || " with the date??
    can someone help with this, pls??

    Hello brugo,
    Try this:
    v_inicio := to_nchar((to_date(p_datahora_inicio || p_hora_inicio , 'DD/MM/YYYY HH24:MI:SS')), 'DD/MM/YYYY HH24:MI:SS');
    v_inicio := to_nchar((to_date(p_datahora_fim || p_hora_fim , 'DD/MM/YYYY HH24:MI:SS')), 'DD/MM/YYYY HH24:MI:SS');When I substitute strings: '10/12/2009' for p_datahora_inicio and '22:30:05' for p_hora_inicio, using this format string, I get: 10/12/2009 22:30:05 as a result.
    Don.
    You can reward this reply by marking it as either Helpful or Correct :)

  • Help with html code. not running properly once on server

    The video works fine in captivate and works once i publish it, but when I try to upload it onto the server it does not. This is my first time using captivate 4, and when I matched the codes from my old movies they were quite different. So I just messed with the code I had and made it lok like the old vodes and it runs fine on the server.
    I was wondering if anyone had any ideas on what is going on with the code that it does not work on the server?
    Thank you!!!!!
    -danielle

    Hello Sue. It's very easy actually.
    If you have the lastest update of Muse CC from Nov 2013, there is a FREE Muse Library by musegrid.com that you can download from the Adobe Muse Exchange page that does this specifically using Google Analytics.  Here is the direct link should you like to check it out: 
    http://muse.adobe.com/exchange-library/add-google-analytics
    Start by "Right Clicking" on the "Master Page Icon" in the "Plan View" and choose "Page Properties" from the list of menu options available. 
    This will open up the "Page Properties Dialog Box" for the entire site. Once that dialog box is open, paste your code into the "Metadata" tab section (I believe that tab is displayed at default - at least on the Mac it is - I'm pretty sure it's the same on the Windows platform).
    All anaytics embed code goes in the <head> tag of an html page (note: it actually says "HTML for <head>" at the top of the embed window area - making it helpful to know you're in the right area). This is also where you would add any <meta> tags too like facebook's OpenGraph code etc.
    If using more than one master, included it to all masters.  If just using it on a specific page - say like a landing page, just go to that particular page in your site's "Plan View" and paste it there instead.
    Incase i get too "wordy" i've attached screen shots of what these should look like. 
    Good luck Sue!
    And congratulations on a nice new computer too - its got "juice".

  • Need help with HTML5 code

    What is wrong with this code?  It does not play. It should play in Windows-7 and XP with IE8.
    Also, on the screen there is a large white area where the <video> code is.  Why?
    How do I get rid of it?
    Thanks.
    <!DOCTYPE HTML>
    <html>
    <head>
    <title>video testing</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    </head>
    <body>
    <p>Click the <a href="Download" _mce_href="http://www.amelox.com/Media/UX-CT-Tour-Short-1024d12db.mp4">Download">http://w ww.amelox.com/Media/UX-CT-Tour-Short-1024d12db.mp4">Download mp4 </a> button to start video.</p>
    <p>Click the <a href="Download" _mce_href="http://www.amelox.com/Media/UX-CT-Tour-Short-1024d12db.webm">Download">http:// www.amelox.com/Media/UX-CT-Tour-Short-1024d12db.webm">Download webm </a> button to start video.</p>
    <p>Click the <a href="Download" _mce_href="http://www.amelox.com/Media/UX-CT-Tour-Short-1024d12db.ogg">Download">http://w ww.amelox.com/Media/UX-CT-Tour-Short-1024d12db.ogg">Download ogg </a> button to start video.</p>
    <p>Click the <a href="Download" _mce_href="http://www.amelox.com/Media/UX-CT-Tour-Short-1024d12db.flv">Download">http://w ww.amelox.com/Media/UX-CT-Tour-Short-1024d12db.flv">Download flv </a> button to start video.</p>
    <video width="480" height="270" controls="controls">
    <source media="all" src="rtp:UX-CT-Tour-Short-1024d12db.mp4"  type='video/mp4; codecs="vp8, vorbis"' />
    <source media="all" src="rtp:UX-CT-Tour-Short-1024d12db.webm" type='video/webm; codecs="avc1.42E01E, mp4a.40.2"' />
    <source media="all" src="rtp:UX-CT-Tour-Short-1024d12dB.ogg" type="video/ogv; codecs=&quot;theora, vorbis&quot;" />
    <object data="id=player1" width="480" height="270">
        <param name="classid" value="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" />
        <param name="movie" value="player.swf" />
        <param name="flashvars" value="UX-CT-Tour-Short-1024d12db.flv & autostart=true" />
        <param name="allowfullscreen" value="false" />
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="allowscriptaccess" value="always" />
    <embed flashvars="file=UX-CT-Tour-Short-1024d12db.flv & autostart=true" id="player1" src="player.swf"
    allowfullscreen="true" allowscriptaccess="always" width="480" height="270" />
    </object>
    </video>
    <p>here is some more text</p>
    </body>
    </html>

    Data load? Did it pass a syntax check?
    Anyway, maybe this will help:
    DATA: create_date              TYPE sy-datum,
          update_date              TYPE sy-datum,
          number_of_days_closed(4) TYPE c,
          alert_close_flag(1)      TYPE c,
          result                   LIKE number_of_days_closed.
    IF alert_close_flag EQ 'Y'.
      number_of_days_closed = update_date - create_date .
    ELSE.
      CLEAR number_of_days_closed.
    ENDIF.
    result = number_of_days_closed.
    Rob

  • Help with Flash code in web page

    I have a Flash file in the masthead of my web site that shows
    a slideshow. I want to code the page so that if the viewer doesn't
    have Flashplayer, an alternative jpeg comes up in the masthead
    instead of the file with the flash slideshow. I'm afraid I'm new to
    most of this.... I'd very much appreciate help with the
    programming.
    Thank you!
    Here's the file:
    http://www.ewgaphilly.com/cs3index.html
    (the slide show isn't working at the moment -- a server issue). The
    alternate file I want to put in is:
    http://www.ewgaphilly.com/alternate_mast.jpg

    I'm sorry to be so dull on this, but I'd appreciate if you
    could tell me specifically which is the embed code (the codes in
    the <head>? What to I change here? I really appreciate your
    help.
    Here is what I get when I publish the movie and the open the
    html file:
    <!-- saved from url=(0013)about:internet -->
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>main_slideshow_philly</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    // Globals
    // Major version of Flash required
    var requiredMajorVersion = 7;
    // Minor version of Flash required
    var requiredMinorVersion = 0;
    // Revision of Flash required
    var requiredRevision = 0;
    // the version of javascript supported
    var jsVersion = 1.0;
    // -->
    </script>
    <script language="VBScript" type="text/vbscript">
    <!-- // Visual basic helper required to detect Flash
    Player ActiveX control version information
    Function VBGetSwfVer(i)
    on error resume next
    Dim swControl, swVersion
    swVersion = 0
    set swControl =
    CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i))
    if (IsObject(swControl)) then
    swVersion = swControl.GetVariable("$version")
    end if
    VBGetSwfVer = swVersion
    End Function
    // -->
    </script>
    <script language="JavaScript1.1"
    type="text/javascript">
    <!-- // Detect Client Browser type
    var isIE = (navigator.appVersion.indexOf("MSIE") != -1) ?
    true : false;
    var isWin =
    (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true :
    false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ?
    true : false;
    jsVersion = 1.1;
    // JavaScript helper required to detect Flash Player PlugIn
    version information
    function JSGetSwfVer(i){
    // NS/Opera version >= 3 check for Flash plugin in plugin
    array
    if (navigator.plugins != null &&
    navigator.plugins.length > 0) {
    if (navigator.plugins["Shockwave Flash 2.0"] ||
    navigator.plugins["Shockwave Flash"]) {
    var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? "
    2.0" : "";
    var flashDescription = navigator.plugins["Shockwave Flash" +
    swVer2].description;
    descArray = flashDescription.split(" ");
    tempArrayMajor = descArray[2].split(".");
    versionMajor = tempArrayMajor[0];
    versionMinor = tempArrayMajor[1];
    if ( descArray[3] != "" ) {
    tempArrayMinor = descArray[3].split("r");
    } else {
    tempArrayMinor = descArray[4].split("r");
    versionRevision = tempArrayMinor[1] > 0 ?
    tempArrayMinor[1] : 0;
    flashVer = versionMajor + "." + versionMinor + "." +
    versionRevision;
    } else {
    flashVer = -1;
    // MSN/WebTV 2.6 supports Flash 4
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1)
    flashVer = 4;
    // WebTV 2.5 supports Flash 3
    else if
    (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1)
    flashVer = 3;
    // older WebTV supports Flash 2
    else if (navigator.userAgent.toLowerCase().indexOf("webtv")
    != -1) flashVer = 2;
    // Can't detect in all other cases
    else {
    flashVer = -1;
    return flashVer;
    // If called with no parameters this function returns a
    floating point value
    // which should be the version of the Flash Player or 0.0
    // ex: Flash Player 7r14 returns 7.14
    // If called with reqMajorVer, reqMinorVer, reqRevision
    returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer,
    reqRevision)
    reqVer = parseFloat(reqMajorVer + "." + reqRevision);
    // loop backwards through the versions until we find the
    newest version
    for (i=25;i>0;i--) {
    if (isIE && isWin && !isOpera) {
    versionStr = VBGetSwfVer(i);
    } else {
    versionStr = JSGetSwfVer(i);
    if (versionStr == -1 ) {
    return false;
    } else if (versionStr != 0) {
    if(isIE && isWin && !isOpera) {
    tempArray = versionStr.split(" ");
    tempString = tempArray[1];
    versionArray = tempString .split(",");
    } else {
    versionArray = versionStr.split(".");
    versionMajor = versionArray[0];
    versionMinor = versionArray[1];
    versionRevision = versionArray[2];
    versionString = versionMajor + "." + versionRevision; //
    7.0r24 == 7.24
    versionNum = parseFloat(versionString);
    // is the major.revision >= requested major.revision AND
    the minor version >= requested minor
    if ( (versionMajor > reqMajorVer) && (versionNum
    >= reqVer) ) {
    return true;
    } else {
    return ((versionNum >= reqVer && versionMinor
    >= reqMinorVer) ? true : false );
    return (reqVer ? false : 0.0);
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <script language="JavaScript" type="text/javascript">
    <!--
    var hasRightVersion = DetectFlashVer(requiredMajorVersion,
    requiredMinorVersion, requiredRevision);
    if(hasRightVersion) { // if we've detected an acceptable
    version
    var oeTags = '<object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="780" height="444"'
    + 'codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="main_slideshow_philly.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#ffffff" />'
    + '<embed src="main_slideshow_philly.swf" quality="high"
    bgcolor="#ffffff" '
    + 'width="780" height="444" name="main_slideshow_philly"
    align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="
    http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags); // embed the flash movie
    } else { // flash is too old or we can't detect the plugin
    var alternateContent = 'alternate.giv';
    document.write(alternateContent); // insert non-flash
    content
    // -->
    </script>
    <noscript>
    // Provide alternate content for browsers that do not
    support scripting
    // or for those that have scripting disabled.
    Alternate HTML content should be placed here. This content
    requires the Macromedia Flash Player.
    <a href="
    http://www.macromedia.com/go/getflash/">Get
    Flash</a>
    </noscript>
    </body>
    </html>
    Here is my existing code in my home page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>EWGA Greater Philadelphia Executive Women's Golf
    Association</title>
    <style type="text/css">
    <!--
    @import url("/ewgacss.css");
    -->
    </style>
    <script src="Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <style type="text/css" media="screen">
    <!--
    @import url("p7tbm/p7tbm_center_08.css");
    -->
    </style>
    <script type="text/javascript"
    src="p7tbm/p7tbmenu.js"></script>
    </head>
    some other stuff goes in here!!
    then...
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','780','height','444','title','EWGA
    Greater
    Philadelphia','src','/main_slideshow_philly','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','/main_slideshow_philly'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="780" height="444" title="EWGA Greater Philadelphia">
    <param name="movie" value="/main_slideshow_philly.swf"
    />
    <param name="quality" value="high" />
    <embed src="/main_slideshow_philly.swf" quality="high"
    pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="780"
    height="444"></embed>
    </object>
    </noscript>

  • Can anyone help with this code

    i am trying to create a html5 video gallery for my website  I was wondering if anyone can help me with this code :  Am i missing something got this from the adobe widget browser i can get the button fuctions but i can not seem to get the video to play or work.. 

    This is the full page i am still working on it but the video code which i posted earlier is not working...    
    123456789101112131415
    Home
    Biography
    To Be Lead
    Gallery
    Videos
    Memorial Page
    Wallpaper
    Blog
    Forum
    Contact
    Randy Savage Bio
    Randy's Facts 101
    His Early Career
    Randy's Career in the WWF
    Randy's Career in WCW
    The Mega Powers  
    Mega powers Bio Mega Powers Facts 101 
    PM to fans and Elizabeth
    Randy's Radio interview
    His Death
    Elizabeth Hulette 
    Elizabeth Bio Elizabeth Facts 101 Her Career in the WWF Her Career in WCW Later Life Farewell to a Princess Elizabeth's Radio Interview Elizabeth Death 
    Sherri Martel
    Gorgeous George
    Team Madness
    Early Years
    ICW Gallery
    WWF Gallery
    WCW Gallery
    NWO Gallery
    Memorial Page for Randy
    Memorial Page for Elizabeth
                          Video of the Month    
    Site Disclaimer
    Macho-madness is in no way in contact with World Wrestling Entertainment. All photos are copyright to World Wrestling Entertainment or their respective owners and is being used under the fair copyright of Law 107.
    ©macho-madness.net All right's Reserved.  
            Affiliates
    Want to be an affiliate, elite, or partner site? Email: [email protected] with the list of things below.
    Place in the subject of email: “Randy Savage Online Affiliation”.
    Name: 
    Email: 
    Site Name: 
    Site URL: 
    When Will The Site Be Added?:
                        To see A List Click Here...
    ©macho-madness.net All right's Reserved.  
    Offical Links

  • Help With Crash Code  In PRE8 Please

    In an interest to turn some of my recent discussions in a more positive direction and in keeping with the primary function of this forum (seeking advice and solutions) and in a further effort to not continually ***** about PRE8, can someone please help with and interpret the following crash codes recently generated by PRE8?
    Thanks in advance for any help.
    Glenn
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangXProcB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                ba8e
    Hang Type:                                        32
    Waiting on Application Name:       ElementsOrganizerSyncAgent.exe
    Waiting on Application Version:    8.0.0.0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 2:         84f3
    Additional Hang Signature 3:         f0a90877ec38c16fd285cc410c83433d
    Additional Hang Signature 4:         ba8e
    Additional Hang Signature 5:         cb0b340a390054264815ceb8e3574d53
    Additional Hang Signature 6:         84f3
    Additional Hang Signature 7:         f0a90877ec38c16fd285cc410c83433d
    Extra information about the problem
    Bucket ID:                                          749899167
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                af71
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 2:         d900
    Additional Hang Signature 3:         431be4795d1c061aba02734aa57c4950
    Additional Hang Signature 4:         af71
    Additional Hang Signature 5:         37a5e7ba79ac8a533571e7d8f2e8acd0
    Additional Hang Signature 6:         d900
    Additional Hang Signature 7:         431be4795d1c061aba02734aa57c4950
    Extra information about the problem
    Bucket ID:                                          811067413
    Description
    A problem caused this program to stop interacting with Windows.
    Problem signature
    Problem Event Name:                      AppHangB1
    Application Name:                           Adobe Premiere Elements.exe
    Application Version:                         8.0.0.0
    Application Timestamp:                   4aa5c87c
    Hang Signature:                                7008
    Hang Type:                                        0
    OS Version:                                        6.0.6001.2.1.0.256.1
    Locale ID:                                           1033
    Additional Hang Signature 1:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 2:         0fb3
    Additional Hang Signature 3:         a5f1d311bc7bfa26f067b42cbdeac6af
    Additional Hang Signature 4:         7008
    Additional Hang Signature 5:         f0af3d01fb74f43241231d4e61778ffa
    Additional Hang Signature 6:         0fb3
    Additional Hang Signature 7:         a5f1d311bc7bfa26f067b42cbdeac6af
    Extra information about the problem
    Bucket ID:                                          781893170

    Here are my system specs.  Let me know if you need anything else.
    Thanks
    Glenn
    Operating System
    MS Windows Vista Ultimate SP2
               Installation Date: 06 March 2009, 02:58
               Intel Mobile Core 2 Duo T9550
                   Cores                       2
                   Threads                     2
                   Name                        Intel Mobile Core 2 Duo T9550
                   Code Name                   Penryn
                   Package                     Socket P (478)
                   Technology                  45nm
                   Specification               Intel Core2 Duo CPU  T9550 @ 2.66GHz
                   Family                      6
                   Extended family             6
                   Model                       7
                   Extended model              17
                   Stepping                    A
                   Revision                    E0
                   Instructions                MMX, SSE, SSE2, SSE3, SSSE3, SSE4.1, EM64T
                   Bus speed                   266.0 MHz
                   Rated Bus speed             1064.0 MHz
                   Stock core speed            2666 MHz
                   Stock bus speed             266 MHz
                   Average Temperature         36 °C
                   Cache
                       L1 data cache size              2 x 32 KBytes
                       L1 instructions cache size      2 x 32 KBytes
                       L2 unified cache size           6144 KBytes
                   Core 1
                       Core speed            1596.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           37 °C
                       Thread 1
                           APIC ID     0
                   Core 2
                       Core speed            2660.0 MHz
                       Multiplier            x 6.0
                       Bus speed             266.0 MHz
                       Rated Bus speed       1064.0 MHz
                       Temperature           36 °C
                       Thread 1
                           APIC ID     1
          Memory
                   Type                                DDR2
                   Size                                4096 MBytes
                   Channels #                          Dual
                   DRAM frequency                      399.0 MHz
                   CAS# Latency (CL)                   6.0 clocks
                  RAS# to CAS# delay (tRCD)           6 clocks
                   RAS# precharge (tRP)                6 clocks
                   Cycle time (tRAS)                   18 clocks
               SPD
                   Number of SPD modules          2
                   Slot #1
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       00007112
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                           tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
                   Slot #2
                       Type                DDR2
                       Size                2048 MBytes
                       Manufacturer        Hyundai Electronics
                       Max bandwidth       PC2-6400 (400 MHz)
                       Part number         HYMP125S64CP8-S6 
                       Serial number       02008065
                       Week/year           52 / 08
                       SPD Ext.            EPP
                       JEDEC #3
                           Frequency             400.000000 MHz
                           CAS# latency          6.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  18
                          tRC                   24
                           Voltage               1.8 V
                       JEDEC #2
                           Frequency             333.333344 MHz
                           CAS# latency          5.0
                           RAS# to CAS#          6
                           RAS# Precharge        6
                           tRAS                  16
                           tRC                   21
                           Voltage               1.8 V
                       JEDEC #1
                           Frequency             266.666656 MHz
                           CAS# latency          4.0
                           RAS# to CAS#          4
                           RAS# Precharge        4
                           tRAS                  12
                           tRC                   16
                           Voltage               1.8 V
    Mother Board
    Manufacturer   Dell, Inc.
               Model                      0P786H
               Version                    A04
               Chipset vendor             Intel
               Chipset model              PM45
               Chipset revision           07
               Southbridge vendor         Intel
               Southbridge model          82801IM (ICH9-M)
               Southbridge revision       03
               BIOS
                   Brand       Dell Inc.
                   Version     A04
                   Date        11/26/2008
               Monitor
                   Name                    Generic PnP Monitor on ATI Mobility Radeon HD 3650
                   State                   enable
                   State                   primary
                   Monitor Width           1920
                   Monitor Height          1200
                   Monitor Bit             32
                   Monitor Frequency       60
                   Device:                 \\.\DISPLAY1\Monitor0
                   Name                    Default Monitor on ATI Mobility Radeon HD 3650
                   State                   disabled
                   State                   removable
                   Monitor Width           800
                   Monitor Height          600
                   Monitor Bit             32
                   Monitor Frequency      60
                   Device:                 \\.\DISPLAY2
               ATI Mobility Radeon HD 3650
                   GPU                         M86
                   Device ID                   1002-9591
                   Subvendor                   Dell (1028)
              

  • Hi I have a geometry problem.Can anyone help with java code

    Hi I have a non simple polygon . My job is to make it a simple. for that First I need to find the intersecting lines say line AB intersects line CD. If so then I must replace AB & CD with AC & BD or AD or BC which ever keeps the polygon closed . So can anyone help me out with this code
    import java.io.*;
    import java.awt.*;
    import java.awt.geom.*;
    import java.awt.image.*;
    import javax.swing.*;
    public class Simple{
    static int POINTWID = 4; // size of points
    // the x and y arrays hold the coordinates
    // the B array is the order of the points in the polygon
    // You want to fill the C array with the simple polygon
    static double x[] = new double[200];
    static double y[] = new double[200];
    static int B[] = new int[200]; // the permutation matrix
    static int C[] = new int[200]; // the one that becomes simple
    static SimpleFrame myFrame;
    static int numPoints = 3;
    public static void main(String args[]) {
    makePolygons();
    // Create the frame to draw on
    myFrame = new SimpleFrame();
    myFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    myFrame.setSize(600, 600);
    myFrame.setVisible(true);
    public static void makePolygons(){
    // Build an array of random points in the unit square
    for(int i = 0; i < numPoints; i++){
    x[i] = Math.random();
    y[i] = Math.random();// Sample program
    B[i] = i; // default permutation
    // Create the simple polygon
    createSimplePolygon();
    * This is the only function you need to mess with
    public static void createSimplePolygon(){
    // Initialize the C[] array with the identity permutation
    for(int i = 0; i < numPoints; i++)
    C[i] = i;
    // Bubble sort the points from left to right
    for(int i = 0; i < numPoints; i++)
    for(int j = 0; j < numPoints - 1; j++)
    if(x[C[j]] > x[C[j+1]]){
    int temp = C[j];
    C[j] = C[j+1];
    C[j+1] = temp;
    public static class SimpleFrame extends JFrame{
    public static JSlider numPointsSlider;
    public SimpleFrame()
    super("Create you own Simple Polygon");
    Container content = getContentPane();
    content.setLayout(new java.awt.BorderLayout());
    JTabbedPane tabbedPane = new JTabbedPane();
    tabbedPane.setPreferredSize (new java.awt.Dimension(300, 400));
    tabbedPane.addTab("Scrambled", new ScrambledPanel());
    tabbedPane.addTab("Simple", new SimplePanel());
    content.add(tabbedPane, java.awt.BorderLayout.CENTER);
    // Slider for the number of points
    numPointsSlider = new JSlider (javax.swing.SwingConstants.HORIZONTAL,
    3, 100, 11);
    numPointsSlider.addChangeListener (new javax.swing.event.ChangeListener () {
    public void stateChanged (javax.swing.event.ChangeEvent evt) {
    numPointsSliderStateChanged (evt);
    content.add(numPointsSlider, java.awt.BorderLayout.SOUTH);
    private void numPointsSliderStateChanged (javax.swing.event.ChangeEvent evt) {
    numPoints = numPointsSlider.getValue();
    makePolygons();
    repaint();
    public static class ScrambledPanel extends JPanel{           
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[B[i]]),
    (int) (Ywid * y[B[i]]),
    (int) (Xwid * x[B[(i+1) % numPoints]]),
    (int)(Ywid * y[B[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);
    public static class SimplePanel extends JPanel{
    public void paintComponent(Graphics g){
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    // First set the scaling to fit the window
    Dimension size = getSize();
    int Xwid = (int) (0.95 * size.width);
    int Ywid = (int) (0.95 * size.height);
    // First draw the segments
    g2.setColor(Color.red);
    for(int i = 0; i < numPoints; i++)
    g2.drawLine((int) (Xwid * x[C[i]]),
    (int) (Ywid * y[C[i]]),
    (int) (Xwid * x[C[(i+1) % numPoints]]),
    (int)(Ywid * y[C[(i+1) % numPoints]]));
    // Now draw the points
    for(int i = 0; i < numPoints; i++){
    g2.fillRect((int) (Xwid * x[i]) - POINTWID,
    (int) (Ywid * y[i]) - POINTWID,
    2*POINTWID + 1, 2*POINTWID + 1);

    Hi I am sorry I could explain you properly . Ok
    My program gives me a polygon(as you can see when u
    run this program)But the polygon is a non simple
    polygon.So to make this polygon we must remove all
    the crossings betweeen edges in the polygon.The
    algorithm which i gave will remove all the crossings
    and make the polygon simple.You did not give an algorithm!
    SO my job is to take the
    existing code and implement the algorithm for this
    program in the Createsimpelpolygon() function. For
    this First the program must find whether two edges
    cross if they cross then swap the vertices like
    replace AB & CD with AC & BD or AD & BC.Which ever
    keeps the polygon closed . Still not entirely clear to me. You cannot just go and replace vertexes from a polygon: that way you'll end up with a different polygon.
    So as we go on we find the
    many crossings and iterate the algorithm on all the
    crossings until we get simple polygon.Like I said: I don't really understand what it is you're after. You did not respond to my suggestions, so I gather it is not what you're after?
    What about Polygon Tessellation (Google for it)? Perhaps that's what you want.
    Also, why do you not create a (or use java.awt's) Point class and a Polygon class which holds a java.util.Set of Point's? Your current code looks rather messy.

Maybe you are looking for

  • Apple Mail won't download .doc attachments

    Lacking a specific "Mail" catagory I've posted this here. Less than Ideal I know but here goes. This just started last week. Many of us in the office and contractors we work with send .doc files by email. In the last four of five days (mid March 2014

  • MacBook Pro Hard Disk Crashed after Frozen Screen

    Hi Very unpleasant experience with my first MacBook.  My MacBook Pro Book 13'' (late 2010 model) screen froze on start up.  Realised that the battery was low and plugged the power adapter in, and let the frozen screen continue hoping for it to start

  • Can't click on "Enable Disk Use" in itunes

    When I go to the itunes options and click on edit, then preferences, ipod, & music, the Enable Disk Use is not in bold print, but it is checked. I don't know what has happened, and I'm not able to use it. Can someone help me with this? HP   Windows X

  • How do you tell what version is running

    I have inherited a JSF project, and would like to find out what SUN RI version that I�m using. How do you tell? If I get properties on jsf-api.jar the modified date is May 17, 2006 and the Created date is Sept. 13 2006.

  • UCCX Advanced Quality Management with VMware View

    Hi, I have a customer who uses UCCX 8.5 with VMware View clients running CAD and 7940 IP phones. They are looking at recording options and have expressed an interest in the Advanced Quality Management product. There are a few issues that I would need