Help with and animation

hi i m trying to make an animation similar to
http://sstl.cee.uiuc.edu/java/twostory/index.html
i have made a block moving can anybody help me or advice me how to do make some thing similar..
thanks....
package DEMO2;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class DEMO2 {
     public static void main(String[] args) {
     JFrame frame = new demoframe();
     frame.show();
     class demoframe extends JFrame {
     public demoframe() {
     setSize(300, 500);
     setTitle("Earthquake");
     addWindowListener(new WindowAdapter() {
     public void windowClosing(WindowEvent e) {
     System.exit(0);
     Container contentPane = getContentPane();
     canvas = new JPanel();
     contentPane.add(canvas, "Center");
     JPanel p = new JPanel();
     addButton(p, "Start", new ActionListener() {
     public void actionPerformed(ActionEvent evt) {
     rigid b = new rigid(canvas);
     b.start();
     addButton(p, "Close", new ActionListener() {
     public void actionPerformed(ActionEvent evt) {
     canvas.setVisible(false);
     System.exit(0);
     contentPane.add(p, "South");
     public void addButton(Container c, String title, ActionListener a) {
     JButton b = new JButton(title);
     c.add(b);
     b.addActionListener(a);
     private JPanel canvas;
     class rigid extends Thread {
     public rigid(JPanel b) {
     box = b;
     public void draw() {
     Graphics g = box.getGraphics();
     g.fillRect(x, y, XSIZE, YSIZE);
     g.dispose();
     public void move() {
          if (!box.isVisible())
     return;
     Graphics g = box.getGraphics();
     g.setXORMode(box.getBackground());
     g.fillRect(x, y, XSIZE, YSIZE);
     /* int xx; int yy;
     for (int j=1; j<10; j++){
          xx=j*(x-10); yy=j*(y+5);
          g.fillRect(xx,yy,XSIZE, YSIZE);
     x += dx;
     Dimension d = box.getSize();
     if (x < 100) {
     x = 100;
     dx = -dx;
     if (x + XSIZE + 100 >= d.width) {
          x = d.width - XSIZE- 100;
     dx = -dx;
     g.fillRect(x, y, XSIZE, YSIZE);
     g.dispose();
     public void run() {
     try {
     draw();
     for (int i = 1; i <= 1000; i++) {
     move();
     sleep(200);
     } catch (InterruptedException e) {
     private JPanel box;
     private static final int XSIZE = 75;
     private static final int YSIZE = 5;
     private int x = 50;
     private int y = 400;
     private int dx = 2;
     private int dy = 2;
     }

thanks
.. there is a new problem when i run this program.. its meshed animation..
can u plzze advice
package DEMO2;
import java.awt.Container;
import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class DEMO2 {
     public static void main(String[] args) {
     JFrame frame = new demoframe();
     frame.show();
     class demoframe extends JFrame {
     public demoframe() {
     setSize(300, 500);
     setTitle("Earthquake");
     addWindowListener(new WindowAdapter() {
     public void windowClosing(WindowEvent e) {
     System.exit(0);
     Container contentPane = getContentPane();
     canvas = new JPanel();
     contentPane.add(canvas, "Center");
     JPanel p = new JPanel();
     addButton(p, "Start", new ActionListener() {
     public void actionPerformed(ActionEvent evt) {
     rigid b = new rigid(canvas);
     b.start();
     addButton(p, "Close", new ActionListener() {
     public void actionPerformed(ActionEvent evt) {
     canvas.setVisible(false);
     System.exit(0);
     contentPane.add(p, "South");
     public void addButton(Container c, String title, ActionListener a) {
     JButton b = new JButton(title);
     c.add(b);
     b.addActionListener(a);
     private JPanel canvas;
     class rigid extends Thread {
     public rigid(JPanel b) {
     building = b;
     public void draw() {
          int x1, x2, y1, y2;
          x1=x+20; x2=x+XSIZE-20; y1=y-(YSIZE); y2=y;     
          Graphics g = building.getGraphics();
          g.fillRect(x, y, XSIZE, YSIZE);
          for(int i=1; i<10; i++ ){
                    x1=x+70; x2=x1+XSIZE-30; y1=y-(i*YSIZE); y2=y;
                         g.drawLine(x1, y1, x1, y2);
                         g.drawLine(x2, y1, x2, y2);
                         g.drawLine(x1, y1, x2, y1);
     public void move(){
          if (!building.isVisible())
               return;
          Graphics g = building.getGraphics();
          g.setXORMode(building.getBackground());
               g.fillRect(x, y, XSIZE, YSIZE);
               g.drawLine(x1, y1, x1, y2);
               g.drawLine(x2, y1, x2, y2);
               g.drawLine(x1, y1, x2, y1);
          x1=x+20; x2=x+XSIZE-20; y1=y-(YSIZE); y2=y;
          x += dx;
          Dimension d = building.getSize();
          if (x < 100) {
               x = 100;
               dx = -dx;
          if (x + XSIZE + 100 >= d.width) {
               x = d.width - XSIZE- 100;
               dx = -dx;
               g.fillRect(x, y, XSIZE, YSIZE);
               for(int i=1; i<10; i++ ){
                    x1=x+20; x2=x+XSIZE-20; y1=y-(i*YSIZE); y2=y;
                         g.drawLine(x1, y1, x1, y2);
                         g.drawLine(x2, y1, x2, y2);
                         g.drawLine(x1, y1, x2, y1);
     public void run() {
          try {
               draw();
               for (int i = 1; i <= 100; i++) {
                    move();
                    sleep(200);
               } catch (InterruptedException e) {
     private JPanel building;
     private static final int XSIZE = 75;
     private static final int YSIZE = 5;
     private int x = 50;
     private int y = 400;
     private int dx = 2;
     private int x1, x2, y1, y2;
     }

Similar Messages

  • Help with flash animation!

    Hi there! My name is Dean and I've bought Adobe Flash CS4 4 months ago. I'm very new to flash and I've already made my first animation -
    http://www.swfcabin.com/open/1267200676
    but I'm here to ask a question.
    Well, I've been riding this cartoon -
    http://www.youtube.com/watch?v=bbUqEPUZ-ds
    and I was wondering, how did they do the hands and legs animation? It looks like the bone tool, but whenever I use the bone tool, I can't get it right! I always get wrong edges! Here are some pictures of my failures -
    http://img202.imageshack.us/gal.php?g=fail5.jpg
    anyway, I just couldn't get it right and I think it's because I draw it wrong.
    Please, any help will be awesome!
    mail: [email protected]
    msn: [email protected]
    Oh and by the way, about the lipsync, I think its a little jumpy, How can i make it better? (Like the Cartoon on top^)
    Thanks!

    Best to do it all in Flash or not Flash at all.
    Dan Mode
    --> Adobe Community Expert
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    "edmann1414" <[email protected]> wrote in
    message
    news:eqg06u$73n$[email protected]..
    >I am building my website in Dreamweaver MX 2004 and have
    been using the MX
    >2004
    > version of Flash for some of my slide shows. Those have
    been going well,
    > primarily because I have been following a tutorial, but
    for what I am
    > looking
    > for now, I cannot seem to find the right tutorial. I
    would like for the
    > buttons on my main page to "shoot" onto the page from
    the left just as a
    > user
    > opens the page and then for that animation to stop.
    Currently the buttons
    > are
    > rollover images with links to other areas of my website
    in dreamweaver,
    > and
    > with this animation I would only assume that Flash would
    be necesary. Do
    > I
    > have to remove the buttons in Dreamweaver and just
    create a movie in Flash
    > and
    > then position that movie where the buttons would be? Or
    can I have an
    > introduction movie for the buttons and then have my real
    buttons appear?
    >

  • Help with Reverse Animation On Button

    The buttons are animated with a movie clip inside each button
    and the movie clip plays on rollover, however I need this same
    movie clip inside the buttons to play reversed, when the cursor is
    moved away from the button.
    I know how to do this with an instance but I already made
    each button and fooled around a thousand times with the animation
    and I do not wish to start over again!
    I have only experimented with this type of action script
    before and I must say I am a little lost =(
    Can anyone help me as to how I would go about doing this ?
    Any coding would help.
    I know there is a simple way of doing it with action script,
    but I have no more time to fool around and I need your assistance
    =P
    If you could supply the code it would help me out.
    (I can modify it to work with my page and my buttons)
    Just need something to work off of.
    Maybe a code I can put on the button, or whatever you can
    come up with.
    For future reference,
    thanks

    Without knowing the details of what you have created, or the
    code you have attempted to use, the best I can offer at the moment
    is to say you need to have the reverse playing code of the
    movieclip get triggered by the mouse out event and not stop
    stepping back down the timeline until the _currentframe value
    reaches 1. If another mouse over should occur, then it's your
    decision as to whether it picks up from where it has stepped back
    to or starts from frame 1.
    Starting over again is often the better approach, since what
    you may have created may not be able to facilitate directing things
    to play in reverse.

  • Help with AND/OR Search

    Hi all,
    I'm setting up an 'Advanced Search' feature using a filter function and need some help with the logic - seem to be suffering a brain fade...
    There's a search form with (let's say) 4 different options:  Name, Description, Price, Features.
    I want the user to be able to fill in all or none of the fields and return the matching results.
    I can do an OR function like this:
    if(Name.match(regx1) || Description.match(regx2) || Price .match(regx3) )|| Features .match(regx4){
         return true;
    }else{
         return false;
    I know I could change the "||" to "&&" - but I need to do this only if there's something to search...
    The only way I can think of doing this at the moment is to write a bunch of 'if statements' with all permutations - eg:
    if(Name && !Description && !Price && !Features){
         //match Name only
    }else if(Name && Description && !Price && !Features){
         //match Name & Description
    }else... you get the idea
    Thanks for your help!
    Cheers

    hey Madhav,
    Thanks for the pointer.  I haven't used a bitwise AND Assignment before...
    When I write some code like below I get a compile error saying "Implicit conversion of type Boolean to an unrelated type Integer"
    From what I understand, 'criteria' should remain true only if the comparator is true.  But why do I get a compile error?
    Do you know what I'm doing wrong?
    var criteria:Boolean = true;
    var nameMatch:Boolean = false;
    if(name){
         if(name.match){
              nameMatch = true;
    if(name){
        crieteria &= nameMatch;  // compile error here
    thanks for your help!

  • Need help with flash animation and jump to slide

    I have been researching for days on how to build a menu in
    flash 8 that has links to jump to a slide later in the captivate
    lesson.
    The goal:
    I want to have a tab - when clicked on - opens up and shows a
    table of contents. Click on an item and it will jump to that slide.
    Method:
    I used flash 8 to build a tab and pop up menu. Works great.
    But how do I make the buttons or links to jump to slide?
    Is it possible to:
    * - use a roll over image in captivate - pause image and
    click on a button to pop over to the slide - no flash menus...just
    action script to pause and allow clicking.
    * - use a FS Command script from inside the captivate movie
    - java call in button proprieties.
    * - write the menu in flash - use action script to say "on
    release - jump to slide" or "on release - jump to frame" - I have a
    frame counter that I can find the frame number of the slide - but
    how would you get the script to work.
    Please Help -
    Flash not a good friend of mine - so any time I can avoid --
    is great...but it is what it is - i do anything to get it to work.
    Thank you in advance for your help and I really look forward
    to your thoughts.
    Regards -
    Vince

    Hi
    I didn't understand a few things here.
    1. Are you trying these things using Adobe Presenter or this is just plain Powerpoint you are talking about?
    2. Are you trying to view the output on the Slide show or presenter output
    If you are doing it for PowerPoint slide show, try setting the animations using with previous and after previous
    1. first insert the video. Set it to play automatically
    2. Insert the first text box. Apply animation on it saying "with Previous". This will make the animation play as soon as the video starts. If you want some delay apply some delay for the animation in the animation pane, such that the animation appears when the video has content sound
    3. For the remaining text boxes apply animations as "after Previous". This will make the animations play after the previous animation has completed.
    4. Now all you have to do is applay delay to the animations to adjust them as and how you want
    Hope this is what you wanted to achieve
    Thanks
    Mahesh

  • Need a little help with an animated JButton.

    I have a nice little button that on mouse entry runs a morf animation from one picture to another then stops.
    On leaving the button it runs the animation in reverse. The animation is done with two GIF images loaded as
    Icons using ImageIcon. Now this looks really nice, BUT it only dose it the first time the button is entered
    and the first time the button is exited. After this is abruptly switches from the "un-entered" button icon to the
    "entered" button icon (the end frame of the respective GIF animation's). I originally tried using the
    setRolloverIcon etc. When that did not work I thought that I would be able to get the images to be loaded
    each time by adding a MouseListener and using the mousePressed, mouseReleased, mouseEntered,
    mouseExited etc. methods. This gives me the situation described above. In the MouseListener methods a
    line like the following is used:
    ((JButton) e.getSource()).setIcon (new ImageIcon (MainWindow.
    class.getResource ("images/selected.gif")));
    How can I get the Button to run the animation every time it is entered | exited? The GIF from which the
    icons are made are set to run the animation through once, not an end less loop which would not be the
    desired effect.
    Any suggestions would be great
    Thank you
    M Pratten.

    Well I guess I should of just kept trying "lunch helps".
    Any way to get the image to reanimate each time the mouse pointer enters leaves the button I changed the
    code in the mouseListener to something like:
    ImageIcon i = new ImageIcon (MainWindow.class.getResource ("images/selected.gif"));
    i.getImage().flush ();
    ((JButton) e.getSource()).setIcon (i);
    I am assuming the flush puts the GIF animation back at its first frame so it has to redo the animation, which is
    exactly what I want.
    Now if any of the local experts know of a better way of doing this I would be happy to hear about it. But at
    the moment it seems to work just fine.
    Thanks to those that read my post.
    M Pratten.

  • Help with shadow animation

    I'm having a bit of a difficulty animating a shadow. I have several pieces of art on the stage with a shadow on them. I have them on a tween, that will enlarge them (one at a Time) from there current state (100%) to (300%). What I'm trying to do is as the art increases in scale the shadow decreases to nothing, and on the return tween will increase the shadow back to the original setting.
    I'm able to get the shadow the fade out, but its not smooth, or precise enough (may have something to do with the timimg of the tween itself), then there is the problem of animating the shadow back on the scale down.
    here is the code I have that I have been trying to get that effect
    //Function called by an enterframe listener so the shadow will change every frame
    function drawshadow (e:Event):void
    makeShadow = new DropShadowFilter();
    makeShadow.distance = 5;
    makeShadow.angle = 80;
    makeShadow.color = 0x333333;
    //figured the alpha was the easiest filter to change for the animation I want
    makeShadow.alpha = changeshadow
    makeShadow.blurX = 2;
    makeShadow.blurY = 2;
    makeShadow.strength = 1
    makeShadow.quality = 15;
    makeShadow.inner = false;
    makeShadow.knockout = false;
    makeShadow.hideObject = false;
    //if the stamp is  scaling up in the range the alpha decreases (note:the tween to enlarge is .5)
    if (stamp[i].scaleX > 1 && stamp[i].scaleX<3)
    changeshadow = changeshadow-.03
    stamp[i].filters = new Array(makeShadow)

    I am using all as3 for the animantion. I have  two functions containingg tweens that scales up and down based on a timer to trigger
    One tween to another (and repeat)
    this is what I'm using for the scale up tween if it helps
    stampScaleX=new Tween(stamp[i], "scaleX", Strong.easeIn, 1, howLarge, .5, true)
    stampScaleY=new Tween(stamp[i], "scaleY", Strong.easeIn, 1, howLarge, .5, true)
    HowLarge is = 3 (300%)

  • Need help with jerky animation in Flash CC

    Hello,
    I'm creating an animation of a planet orbiting the sun and it is stuttering a little bit no matter what I try.  I'm working in Flash CC, the animation is done with a custom ease and only 2 keyframes (one at the slowest point and one at the fastest).  The end result has to be .mp4 so I am exporting as video.  But even the swf is a little jerky.  My frame rate is 29.97.  The animation path is oval in shape (using an oval guide path which the planet follows), the planet is small, maybe 6 mm across,  and the planet's speed varies as it orbits the sun (thus the custom ease).  The number of frames in the animation is 202, that's how long it takes for the planet to complete one rotation.  That anim is then looped in the movie as a graphic.
    thanks in advance for any help you can give.  

    Here would be a similar example, linear versus an ease tossed in. I made an oval similar to yours (633px by 446px) and just used it as a guide:
    Here's some videos showing the movement I get per frame. You can even see Flash Pro (CS6 in this case) exporting some odd frame choices. For example right before the 5 second mark the circle jumps 2 movements and stays in place for an extra frame (easy to see stepping through it using arrows and Quicktime player). It does this consistently even when using "None" for Quicktime compression, or using a codec.
    Here's some video examples (30FPS over 202 frames, 6.7 seconds):
    Linear Movement
    -60 to 60 ease at the opposite side
    (Source MOV (Animation codec @ 85 quality) to verify MP4 is the same)
    I imagine your results are the same. It's just too much movement for to little time to really get it to play back smooth. Double the time and you'll cut that in half and I think you'll be happier. Increasing FPS beyond 30 might not be a good idea as playback will start to become machine dependant at that resolution and it could bog even worse.

  • Asking for help with my animation

    First, I want to thanks to those that take time to answer and help. I solved the problem of my shivering images, setting the fps to 30. Now, if someone  can help me with this: I need to make a sequence of images (6) flow along the screen continuously. I don't know how to join the last image with the first as a non stop smoothy loop. I know there is a way using the action-scrip window, but I don't remember much because I have not been using this app much lately. Thank you.

    Place the images in separate layers
    Then you take the half part of the last image animation to the starting of frame
    Or placing the half part of the first animation to the last frames

  • I need help with and Error PLEASE!!

    Everytime i try to upgarde my itunes 6 to itunes 7 i get and Error Drive E:/ message and then i get a message saying The installer encountered errors before Itunes could be configured.
    WHAT DO I DO? I NEED SERIOUS HELP HERE!

    After installing iTunes 7, it tried to update my daughter's 20G wheel iPod but failed crashing the iPod. After the crash, my daughter got a 1418 error reporting the iPod could not be restored. An iPod salesman sold her a new iPod – blaming her for screwing up her iPod, so much for sales “experts.”
    Her iPod problem was merely caused by upgrading to Apple’s iTunes to version 7 with its dysfunctional built-in updater (OS = Windows XP), not by anything to do with the iPod hardware.
    The fix was to uninstall the iPod in Windows/Device Manager/disk Drives and rename the c:\program files\ipod\bin\ipodservice.resources folder – thereby disabling it - uninstall iTunes v. 7, reboot and install the last iPod updater, dated 6/2006. Then restore the iPod (wiping out everything) using the 6/2006 updater. Next, reinstall iTunes ver7.1, which will report all is well with the restored iPod. (Or, buy another iPod).
    Also, if the “do not disconnect” iPod message is persistent, just go into My Computer and “eject” the iPod to clear the iPod error message.

  • Help with simple animation please

    Hello all. I am writing a class and part of it is to make a stick figure walk across the screen. I have searched for tutorials and all I could seem to find is what I have already done. I have one leg moving on my guy now I am trying to get the whole body to move to the right and start again after it reaches the end of screen. I'll post what I have so far. I have started some new coordinates for the body part (the one long line). It didn't go so well in my applet. Before I go through all this trouble figuring out all these different coordinates trying to move each body part one at a time and keeping them aligned, can somebody tell me if I am on the right track or am I making it harder on myself? I can figure out the movement of a leg because I am only moving one end of it but when it comes to the entire (body) line and the circle, that's where I get a little confused. Is there an easier way of doing this? Am I declaring the variables correctly? Without my crazy body variables, the leg moves just fine, just wanted to show what I am trying to do. Thanks for any help on this.
    import java.applet.*;
    import java.awt.*;
    public class Exercise1 extends Applet
    private int index = 0;
    int[] horiz = {130,120,110,100,90,80,70,60,50};
    int[] vert = {310,310,310,310,310,310,310,310,310};
    int[] bu = {85,110,140,110,170,110}; //move upper body to right?
    int[] bl = {85,310,110,310,140,310};//move lower body to right?
    private int sleep = 200;
    public void start()
    index = 0;
    public void paint(Graphics gr)
    gr.drawOval(30,30,80,80);
    gr.drawLine(85,110,bu[index],bl[index]);
    gr.drawLine(0,310,260,310);
    ++index;
    if(index == horiz.length)
    index = 0;
    gr.setColor(Color.BLACK);
    gr.drawLine(85,210,horiz[index],vert[index]);
    try
    Thread.sleep(sleep);
    catch(InterruptedException e)
    repaint();
    }

    FWIW this is how I would approach this problem: I wouldn''t use hardcoded arrays, I would compute positions.
    1. Add an instance field increment of type int to represent the increment (by how many pixels movement is to be effected in the x-direction i.e. horizontally).
    2. Draw a vertical line to represent the body and move it by "increment" pixels at a time, multiplying increment by -1 each time "body" reached the boundaries of its container. Test that to oblivion.
    3. Add a line for a leg, the top end of which would be the lower end of "body" and the bottom end at the center of the baseline. Test that (the leg would stretch terribly, but there you have it, for the time being)
    4. Start to increment the x position of the bottom of the leg by 2 * increment as soon as the horizontal displacement of the bottom of the leg from the body exceeds a certain limit, and stop as soon as it again exceeds the sme linit in the opposite direction. Test that to oblivion.
    5. Add the other leg, making sure the two legs start ahead and behind the body, so that the partial stick figure appears to walk, not hop.
    6. Modify the condition to reverse the movement when any part of the figure, and not just the body, goes outside the boundaries of the container.
    Then, after getting that working, I would start to think about the head and then the arms. Later I would look into mdifying the routine to give the stick man knees and elbows, then maybe ankles and feet... raise a foot off the ground when taking a step... swing his arms as he walks...
    In a nutshell, do this one part at a time, visualizing where the rest will go, and test test test at each stage so you don't have to backtrack too much.
    A word of advice: don't hardcode movement increments into the body of your code, use variables declared and initialized at the top of the program, where it will be easy to find them and change the values.
    db

  • Please Help with moving animation

    Hey, im having trouble figuring out this technique.. where say for instance someone is running past a pole and once they cross the other side a word appears as they run by.
    And when you use a tree and move it across the screen as a transition.
    What should i search to learn these?

    You will also find links to many
    free tutorials in the PremiereProPedia that will quickly show you how things are done in Premiere Pro.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • Help with browser/cache Possible iCloud issue- I think

    A few months ago I built a website through Volusion.com.  I also bought my domain name through them: whisperingcreektradingpost.com
    Shortly afterward I became dissatisfied with their service and chose to move to Shopify.com
    In order to move my domain name, I had to transfer it to GoDaddy.com first and then follow Shopify instructions on how to have it point to my new store with them. IP address, etc.
    So I did all that, and for a little while it seemed okay, but periodically would still point to the old Volusion store.  Today, Shopify told me that I needed to make sure all the setting with them were set correctly and to also add the domain name without the “www” to the list of what would point to the domain name.
    Everything in Shopify is now set so that the following three items all point only to the main domain name whisperingcreektradingpost.com
    1. whisperingcreektradingpost.com
    2. www.whisperingcreektradingpost.com
    3. whispering-creek-trading-post.myshopify.com
    For the rest of the day and still tonight, I cannot get to my Shopify store at all.  Not on either of my desktops, laptop, two iPads, iPhone or iPod.  Everything on my network takes me to the old Volusion store when I type in that domain.  I even downloaded Chrome and tried that on the three computers, still no success. 
    Even when I am in my admin section ON the Shopify website, when I input the data for a product, save it, then click the link to view in browser- it STILL takes me to the old Volusion site- even from INSIDE my Shopify admin!!!
    Over an hour on the phone with Shopify tech support did not clear it up.  I cleared the data on every device on every browser.  Restarted every device, etc.  My daughter is next door with her own internet service account and can bring up my new site with no problem. 
    The internet service provider swears they cannot store anything like cookies or cache on the router so it is not on them, Shopify is able to get to my site with no problem.  They told me that their only job is to make sure I have a connection to the internet. Period.  And that the problem of not getting the ‘right one’ is not something they can help with and if they sent someone out to prove that I would be charged for the service call.
    Is it possible that there are cookies/cache on the iCloud that keeps putting the information back on my devices?  Is there some way that within my network they are all sending each other the case information before I can clear it?
    I am the only one, and every device on my network, that cannot get any browser to go to the new website instead of the old one.
    In addition, even with all the updates AND restarting several times, my internet connection is dragging something awful now.
    Help.
    I am very frustrated.

    The browser icon availability is controled by the carrier provisioning. Assuming that you have a BlackBerry specific data plan then your device is properly provisioned. All you should have to do to get the browser icon back is register your BlackBerry on the network.
    Go to Options > Advanced Options > Host Routing Table. Press the menu key and select Register Now. If the icon does not reappear after a minute or two them remove the battery for 10 seconds.

  • Help with removing my account name from the search...

    Dear Sirs:
    Due to a breach security in my P.I., I need to have my skype name to be removed from the search directory.  Please help me.
    Thanks,
    GP

    Hi, GP2013, and welcome to the Community,
    Please take a look at this information: 'Can I delete my Skype account?' and then contact customer service for assistance.  We here in the Community do not have access to Skype account details.
    Here is a slightly annotated version of the instruction to file your request with Skype Customer Service, and to receive a reply via e-mail.  Hope this serves as a useful road map!
    Regards,
     Elaine
    How can I contact Skype Customer Service?
    Skype offers help and support through:
    The Skype Support website
    The Skype Community
    The Heartbeat blog
    Skype blogs
    Email and Live chat (for eligible customers)
    To get help with the issue you’re experiencing:
    Go to the Support request page.  You will be asked to sign on to the Skype website at this step.
    Select the topic you need help with and the problem you’re experiencing. ... or the closest topic which matches your enquiry.  Some information that might help with your problem is displayed.  These are the FAQ articles pulled from the library for your review.
    If you still feel that the information doesn’t help, scroll down to the bottom of the website page and click the Continue support request button at the bottom of the screen. 
    Select your contact method. (We recommend that you check our Skype Community first. No need to circle back here, as the Community is where you started!)
    If you chose email, enter your details, describe your problem, and then click Send support request. We'll get back to you as soon as we can.
    We don’t currently provide telephone support.
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • 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)
              

Maybe you are looking for

  • Creative zen microphoto 4GB big prob

    Since a week or so, when i open the player by moving and holding the power button to on position, the only thing appear is the splash screen of creative logo and copyright 2005 and it stays there until I remove the battery, cause when I tried to clos

  • IDML Coordinate Spaces != DOM coordinate spaces?

    Given IDML for a rectangle, <Rectangle Self="ucf" StoryTitle="$ID/" ContentType="GraphicType" FillColor="Color/Black" GradientFillStart="0 0" GradientFillLength="0" GradientFillAngle="0" GradientStrokeStart="0 0"   GradientStrokeLength="0" GradientSt

  • Video over IP

    My customer is looking for the following: 1. Video Conferencing across 20 WAN locations. 2. Each location would have a conference room which would be used for a multiparty video conference. 3. Individual PC users with a desktop camera should be able

  • Form - Insert only if not a duplicate

    Hi, In Oracle Portal I have a form that submit data to a table. I only want the information to be inserted if the table doesn't already contain that email address that the user has types into the form. In the additional PL/SQL code I added the follow

  • Warning during javac

    Hi, I am sorting a Vector that contains CardTiles objects. CardTiles is a class that extends JButton and implements Comparable. The code works fine but i get the following warning after compilation. Note: DeckOfCards.java uses unchecked or unsafe ope