Repeat function for a player

Hi
I know I should find this in the JMFUtil source code, but I've effectively gotten lost. I'm sending out WAV files as RTP streams to Cisco IP Phones (which works just fine). I have added a ControllerListener to my processor, which catches the EndOfMediaEvent. Upon getting this event, I'd like to start the WAV file from the beginning again (as it is done in JMFUtil), but I can't quite figure out how.
Here's what I'm trying: I try to use Processor.SetMediaTime() to rewind my processor, but this seems to have no effect whatsoever:
processor.setMediaTime(new Time(0.0));
I'd appreciate any pointers as to what I'm doing wrong.
Thanks
Stephan

god I feel stupid. After having wasted an hour on this subject, 2 minutes after posting I found the solution.
For anybody interested, just add a processor.start() after processor.setMediaTime and you're all set.

Similar Messages

  • Repeat Function for Video?

    Just got my ATV. Very cool. With an 8mb connection can watch the trailers in rediculously high quality playing on a 1080i monitor with no waiting. I'm really surprised. This is going to be big.
    I was wondering if I am missing something or if there is no repeat function for video. Like, if you wanted to just have music videos playing in the background like you would music? Or, do you have to physically choose each show?

    Anyone figured out if this is possible? Would be nice for kiosk, roadshow, window display type use if you could:
    1) Set a piece of video content to loop or repeat.
    2) Create a playlist of videos that would play one after the other without human interaction.
    3) Randomly play videos from a playlist of videos without human interaction. (Similar to an audio shuffle function)
    So far, trying a playlist in iTunes with video in it doesn't seem to work. The only place you can get at it in the Apple TV menu is through Music and then it errors saying there's no music in that playlist.
    This would be great for digital signage applications too. You could set up the content you wanted in a particular playlist via iTunes and have the Apple TV sync/stream that particular content without having someone use the remote.
    Doesn't look like there is any of this functionality built in at this point.
    MacBook Pro 2.16 (2 GB RAM, 7200 RPM drive)   Mac OS X (10.4.9)   MacBook 1.83 (1 GB RAM) and Dual G5 (2.5 GHz, 2 GB RAM) also

  • Non-functional installs for Shockwave Player in Firefox

    The online install for flash does not work for WIN XP-PRO SP 3, Firefox 31.0, in installing the Shockwave Player. It installs Flash Player, but not Shockwave Player.The manual install from the downloaded file :
       Shockwave_Installer_Full.exe
       version 12.1.3.153
    Is also not fully functional for this.
    The web page "https://www.adobe.com/software/flash/about/" says that I have Flash Player version 14,0,0,179 installed
    However the page for testing the "Adobe Shockwave Player" (https://www.adobe.com/shockwave/welcome/) always says that I need to download a plugin.
    Clicking the install link on the this test page for SHOCKWAVE PLAYER does not yield a functioning install either.
    Eventually, after a lot of wandering our the Adobe web site, I went to the troubleshooting page and then on to the alternative installs page at :
    http://www.adobe.com/shockwave/download/alternates/
    - note that NONE of the items listed on the alternative installer page, say that they work in FIREFOX!! None of them.
    I had to go into the System Requirements link (http://www.adobe.com/products/shockwaveplayer/productinfo/systemreqs/) for a table that is about IE and Netscape installs, just to find out that "11" might ALSO work in Firefox. This is a large oversight. Most people will not click the system requirements for a browser they do not use, in order to get the browser they DO use to run SHOCKWAVE.
    Adobe really needs to fix their onllne install to work better. I have been complaining about these issues (and others, with never-ending installs that don;t work) for over a year. They also need to fix the web page ( http://www.adobe.com/shockwave/download/alternates/ ) to state that it works in FIREFOX, not just IE.
    - again -  Most people will not click the system requirements for a browser they do not use, in order to get the browser they DO use to run SHOCKWAVE.

    WillowFiresong wrote:
       Shockwave_Installer_Full.exe
       version 12.1.3.153
    Is also not fully functional for this.
    What exactly does that mean?  What happens when you run that installer?
    I know that the Shockwave Player download page just mentions IE and Netscape; that is probably because most non-IE browsers are really based on the original Netscape architecture, and the plugins are still the same (NPAPI).
    The page also says "Shockwave Player 11", although Shockwave has been at version 12 for quite a while.  I have tried to get Adobe to update that page, but it seems to be an impossible task!

  • QT player export function for iPod doesn't work!

    hello
    i just bought QuickTime Pro.
    unfortunately, the export function for iPod (.m4v) doesn't work...
    it stops after a short while and dont't go any further.
    thanx for your help!
    greetings, iMats
    iMac 800MHz PowerPC G4   Mac OS X (10.4.3)  

    While I haven't used it, QT 7 and the iPod preset (H264 encoding) seem to be quite slow compared to other compressors. Many people have mentioned the seeming freeze, while other state that if you let it run long enough it will eventually finish the project. If you don't have the patience to wait, you might want to try exporting to mpeg-4 and see if that works a bit faster.

  • How can I repeat a for loop, once it's terms has been fulfilled???

    Well.. I've posted 2 different exceptions about this game today, but I managed to fix them all by myself, but now I'm facing another problem, which is NOT an error, but just a regular question.. HOW CAN I REPEAT A FOR LOOP ONCE IT HAS FULFILLED IT'S TERMS OF RUNNING?!
    I've been trying many different things, AND, the 'continue' statement too, and I honestly think that what it takes IS a continue statement, BUT I don't know how to use it so that it does what I want it too.. -.-'
    Anyway.. Enought chit-chat. I have a nice functional game running that maximum allows 3 apples in the air in the same time.. But now my question is: How can I make it create 3 more appels once the 3 first onces has either been catched or fallen out the screen..?
    Here's my COMPLETE sourcecode, so if you know just a little bit of Java you should be able to figure it out, and hopefully you'll be able to tell me what to do now, to make it repeat my for loop:
    Main.java:
    import java.applet.*;
    import java.awt.*;
    @SuppressWarnings("serial")
    public class Main extends Applet implements Runnable
         private Image buffering_image;
         private Graphics buffering_graphics;
         private int max_apples = 3;
         private int score = 0;
         private GameObject player;
         private GameObject[] apple = new GameObject[max_apples];
         private boolean move_left = false;
         private boolean move_right = false;
        public void init()
            load_content();
            setBackground(Color.BLACK);
         public void run()
              while(true)
                   if(move_left)
                        player.player_x -= player.movement_speed;
                   else if(move_right)
                        player.player_x += player.movement_speed;
                   for(int i = 0; i < max_apples; i++)
                       apple.apple_y += apple[i].falling_speed;
                   repaint();
                   prevent();
                   collision();
              try
              Thread.sleep(20);
              catch(InterruptedException ie)
              System.out.println(ie);
         private void prevent()
              if(player.player_x <= 0)
              player.player_x = 0;     
              else if(player.player_x >= 925)
              player.player_x = 925;     
         private void load_content()
         MediaTracker media = new MediaTracker(this);
         player = new GameObject(getImage(getCodeBase(), "Sprites/player.gif"));
         media.addImage(player.sprite, 0);
         for(int i = 0; i < max_apples; i++)
         apple[i] = new GameObject(getImage(getCodeBase(), "Sprites/apple.jpg"));
         try
         media.waitForAll();     
         catch(Exception e)
              System.out.println(e);
         public boolean collision()
              for(int i = 0; i < max_apples; i++)
              Rectangle apple_rect = new Rectangle(apple[i].apple_x, apple[i].apple_y,
    apple[i].sprite.getWidth(this),
    apple[i].sprite.getHeight(this));
              Rectangle player_rect = new Rectangle(player.player_x, player.player_y,
    player.sprite.getWidth(this),
    player.sprite.getHeight(this));
              if(apple_rect.intersects(player_rect))
                   if(apple[i].alive)
                   score++;
                   apple[i].alive = false;
                   if(!apple[i].alive)
                   apple[i].alive = false;     
         return true;
    public void update(Graphics g)
    if(buffering_image == null)
    buffering_image = createImage(getSize().width, getSize().height);
    buffering_graphics = buffering_image.getGraphics();
    buffering_graphics.setColor(getBackground());
    buffering_graphics.fillRect(0, 0, getSize().width, getSize().height);
    buffering_graphics.setColor(getForeground());
    paint(buffering_graphics);
    g.drawImage(buffering_image, 0, 0, this);
    public boolean keyDown(Event e, int i)
         i = e.key;
    if(i == 1006)
    move_left = true;
    else if(i == 1007)
         move_right = true;
              return true;     
    public boolean keyUp(Event e, int i)
         i = e.key;
    if(i == 1006)
    move_left = false;
    else if(i == 1007)
         move_right = false;
    return true;
    public void paint(Graphics g)
    g.drawImage(player.sprite, player.player_x, player.player_y, this);
    for(int i = 0; i < max_apples; i++)
         if(apple[i].alive)
              g.drawImage(apple[i].sprite, apple[i].apple_x, apple[i].apple_y, this);
    g.setColor(Color.RED);
    g.drawString("Score: " + score, 425, 100);
    public void start()
    Thread thread = new Thread(this);
    thread.start();
    @SuppressWarnings("deprecation")
         public void stop()
         Thread thread = new Thread(this);
    thread.stop();
    GameObject.java:import java.awt.*;
    import java.util.*;
    public class GameObject
    public Image sprite;
    public Random random = new Random();
    public int player_x;
    public int player_y;
    public int movement_speed = 15;
    public int falling_speed;
    public int apple_x;
    public int apple_y;
    public boolean alive;
    public GameObject(Image loaded_image)
         player_x = 425;
         player_y = 725;
         sprite = loaded_image;
         falling_speed = random.nextInt(10) + 1;
         apple_x = random.nextInt(920) + 1;
         apple_y = random.nextInt(100) + 1;
         alive = true;
    And now all I need is you to answer my question! =)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    package forums;
    import java.util.Random;
    import javax.swing.Timer;
    import javax.imageio.ImageIO;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class VimsiesRetardedAppleGamePanel extends JPanel implements KeyListener
      private static final long serialVersionUID = 1L;
      private static final int WIDTH = 800;
      private static final int HEIGHT = 600;
      private static final int MAX_APPLES = 3;
      private static final Random RANDOM = new Random();
      private int score = 0;
      private Player player;
      private Apple[] apples = new Apple[MAX_APPLES];
      private boolean moveLeft = false;
      private boolean moveRight = false;
      abstract class Sprite
        public final Image image;
        public int x;
        public int y;
        public boolean isAlive = true;
        public Sprite(String imageFilename, int x, int y) {
          try {
            this.image = ImageIO.read(new File(imageFilename));
          } catch (IOException e) {
            e.printStackTrace();
            throw new RuntimeException("Bailing out: Can't load images!");
          this.x = x;
          this.y = y;
          this.isAlive = true;
        public Rectangle getRectangle() {
          return new Rectangle(x, y, image.getWidth(null), image.getHeight(null));
      class Player extends Sprite
        public static final int SPEED = 15;
        public Player() {
          super("C:/Java/home/src/images/player.jpg", WIDTH/2, 0);
          y = HEIGHT-image.getHeight(null)-30;
      class Apple extends Sprite
        public int fallingSpeed;
        public Apple() {
          super("C:/Java/home/src/images/apple.jpg", 0, 0);
          reset();
        public void reset() {
          this.x = RANDOM.nextInt(WIDTH-image.getWidth(null));
          this.y = RANDOM.nextInt(300);
          this.fallingSpeed = RANDOM.nextInt(8) + 3;
          this.isAlive = true;
      private final Timer timer = new Timer(200,
        new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            repaint();
      public VimsiesRetardedAppleGamePanel() {
        this.player = new Player();
        for(int i=0; i<MAX_APPLES; i++) {
          apples[i] = new Apple();
        setBackground(Color.BLACK);
        setFocusable(true); // required to generate key listener events.
        addKeyListener(this);
        timer.setInitialDelay(1000);
        timer.start();
      public void keyPressed(KeyEvent e)  {
        if (e.getKeyCode() == e.VK_LEFT) {
          moveLeft = true;
          moveRight = false;
        } else if (e.getKeyCode() == e.VK_RIGHT) {
          moveRight = true;
          moveLeft = false;
      public void keyReleased(KeyEvent e) {
        moveRight = false;
        moveLeft = false;
      public void keyTyped(KeyEvent e) {
        // do nothing
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        //System.err.println("DEBUG: moveLeft="+moveLeft+", moveRight="+moveRight);
        if ( moveLeft ) {
          player.x -= player.SPEED;
          if (player.x < 0) {
            player.x = 0;
        } else if ( moveRight ) {
          player.x += player.SPEED;
          if (player.x > getWidth()) {
            player.x = getWidth();
        //System.err.println("DEBUG: player.x="+player.x);
        Rectangle playerRect = player.getRectangle();
        for ( Apple apple : apples ) {
          apple.y += apple.fallingSpeed;
          Rectangle appleRect = apple.getRectangle();
          if ( appleRect.intersects(playerRect) ) {
            if ( apple.isAlive ) {
              score++;
              apple.isAlive = false;
        g.drawImage(player.image, player.x, player.y, this);
        for( Apple apple : apples ) {
          if ( apple.isAlive ) {
            g.drawImage(apple.image, apple.x, apple.y, this);
        g.setColor(Color.RED);
        g.drawString("Score: " + score, WIDTH/2-30, 10);
      private static void createAndShowGUI() {
        JFrame frame = new JFrame("Vimsies Retarded Apple Game");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new VimsiesRetardedAppleGamePanel());
        frame.pack();
        frame.setSize(WIDTH, HEIGHT);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
      public static void main(String[] args) {
        SwingUtilities.invokeLater(
          new Runnable() {
            public void run() {
              createAndShowGUI();
    }Hey Vimsie, try resetting a dead apple and see what happens.

  • After upgrade Calendar no longer has repeat function

    I have great trouble with Calender and Contact list.   Just upgraded to Maverik.   Seems every upgrade is downer for me.
    Calender gets many duplicates, No longer has Repeat function which makes the calender almost useless for me.
    Cannot use Cloud as I get 3 gb use overnight with no idea for what .  on limited ATT 5 gb hot spot.
    Only have Google Mail.   Does Google cause that?
    Contact list gets up to 5 duplicate entries.  
    Impossible to delete all the duplications unless I spend days, Then they just come back.  
    Long time Apple user getting discouraged with Apple, So many settings and complexity no without Jobs--I miss him.

    You don't see this when creating a new event?
    Contacts – Resolve Duplicates
    Try deleting Google Mail and see if that helps.

  • Repeat run for depreciation

    we posted depreciation from april 08 to March 31 09 in AFAB tcode. it has posted 12 entries for 12 month. in that first two entries are not pick functional area E004. so we wanted to bring function area for those entries. what is the proceedure?
    second thing if we are trying to run depriciation for april 08 again in repeat mode but it is throwing error like " Only period 012 can be posted in the repeat run" please give me solution

    It will not allow repeat run for period 8 as the planned depn run is done for 12th period.
    U continue with posting the depreciation in Period 12. It will post the entries

  • Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?

    Why the step-and-repeat function (command+d) isn't working in Illustrator CS5?
    I am trying this. Take an object, move it some inches on the right while holding the option key, so I duplicate it.
    Usually, I pressed on command+d to duplicate this action on and on (duplicate the object and moving it some inches away), but now it is not working.
    any idea?

    kwakoo,
    It may be time for the list:
    The following is a general list of things you may try when the issue is not in a specific file, and when it is not caused by issues with opening a file from external media. You may have tried/done some of them already; 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save current artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to at least 5 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible), for CS3 - CC you may find the folder here:
    https://helpx.adobe.com/illustrator/kb/preference-file-location-illustrator.html
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall (ticking the box to delete the preferences), run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Music repeats on shuffle when I don't want it to (yes, I checked that repeat function is off)

    So, I've been having a problem with music repeating when I select all of an album or artist to put on shuffle. I like to go to sleep with music playing, so I'll select something that I know should only take one or two hours to finish, but when I wake up in the morning it's still going and will keep shuffling until I manually shut it off. The repeat function is off, and I've checked it repeatedly since this has happened many times. I'll start the shuffle and make sure that repeat is off. Any ideas what's going on and how to fix it? It's just annoying if I'm at home and the phone is docked and charging, but it's really a problem if I'm somewhere that it's not charging and the music just keeps playing for eight hours or more.  It only does this on shuffle, not when I just set it to play an album in order.

    Close all open apps by double-tapping the home button, then swiping up and off the screen with the app window (not the smaller icon).
    Reset your device: hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • I have an iphone 4 and I have just upgraded to iOS 5. I have lost my progress bar and song repeat function, how can I get them back?

    I have an iphone 4 and I have just upgraded to iOS 5. Unlike some people, I have not really had any problems but I am really annoyed with the new music feature. I have lost my progress bar abd song repeat function. Does anyone know how I can get them back?

    Glad to hear it all works for you.
    For future reference, if your iPhone misbehaves, always try a Reset. It's painless and often solves the problem.
       Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears (ignore the Slide to Power Off option that shows up first).
    Enjoy.

  • Avoid repeating a 'for' loop 3 times

    Any ideas how can I make my code more efficient by not
    repeating the for loop 3 times within a script? Any tutorial links
    or first hand experience – I’d be grateful for any
    pointers:
    1) First I use it to set up a drag n’ drop activity:
    for (var i:Number = 0; i<words.length; i++) {
    //set a var for the instances on stage:
    var eachWord:String = "drag"+[i+1]+"_mc";
    this[eachWord].word_txt.text = words
    [0];
    this[eachWord].onPress = function() {
    startDrag(this, false, leftLimit, topLimit, rightLimit,
    bottomLimit);
    this[eachWord].onRelease =
    this[eachWord].onReleaseOutside=function () {
    this.stopDrag();
    2) Then I use it in the part that makes it accessible by
    keyboard:
    function myOnKeyDown() {
    for (var i:Number = 0; i<words.length; i++) {
    var thisDrag:String = "drag"+[i+1]+"_mc";
    if (Key.isDown …
    ETC along with a listener object
    3) I also have to use it in another function that the user
    can call to toggle something on/off within each drag object.
    Thanks in advance if anyone can help.

    thanks for the reply! I actually figured out a different
    (although probably less efficient) way to do it. I put David's
    script just before the replay button and set it up like this:
    stop();
    gotoAndPlay(1);
    if (!loopCount) {
    var loopCount:Number = 0;
    loopCount++;
    if (loopCount >= 3) {
    this.gotoAndPlay(359);
    this was placed at frame 358, with the button placed at 359,
    so after it looped 3 times it continued on to 359, showed the
    button and stopped the movie there. again, not the most elegant but
    it did the job

  • I'm having trouble with the repeat function on iTunes 11.

    I'm having trouble with the repeat function on iTunes 11.  The buttons are there but will not allow me to repeat an album when selected under artist from remote app on iPhone.  I have downloaded the update for the remote app but the repeat function now repeats all albums under that artist name.  Selecting the album directly under albums works but is not as easly to access.  Any thoughts?

    Sorry, downgrading is not supported.

  • What to do now that Adobe ended support for Flash Player 10.3?

    Adobe ended support for Flash Player 10.3 on July 9. Downloads are no longer available anywhere that I can find. Adobe says 11.7 is now the "extended release" version. Since 10.3 has been the only solution when the latest Flash Player version won't work with Firefox, what do we do now? I have tested every Flash Player release after 10.3, and each starts crashing repeatedly after 24 hours. Each time, retreat to 10.3 was the only solution. The other suggestions in Firefox help don't work. I uninstalled 10.3 a few days ago to test 11.8 - the latest. It doesn't work with Firefox. Now I could only install 11.7. It hasn't failed yet, but it probably will tomorrow.
    If Flash Player 11.8 and 11.7 don't work, and 10.3 is unavailable, what can we do?

    You can check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    *http://helpx.adobe.com/flash-player/kb/flash-player-113-crash-mozilla.html
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html
    *http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html

  • Repeat Function Key (F4 in Excel)

    Is there a repeat function shortcut in Numbers?
    For instance, if I insert a row and then want to move down a couple of rows and insert another, is there a shortcut key? Or do you have to use the mouse and table menu?
    In Excel the shortcut is F4. It repeats the last function. It is incredibly useful if you are doing a lot of spreadsheet manipulation.
    It seems that Numbers is not designed for heavy spreadsheet use, unless I am missing something. I have been trying to adopt for my accounting work for six months. Everything just seems to take longer than in Excel. I am being patient since I have been an Excel guy for 20 years.
    Thanks for your help!

    Michael2599 wrote:
    Is there a repeat function shortcut in Numbers?
    For instance, if I insert a row and then want to move down a couple of rows and insert another, is there a shortcut key? Or do you have to use the mouse and table menu?
    Hi Michael,
    Although I can see where 'repeat action' might be a useful addition in some cases, 'Insert row' is not one of them. Insert row may already be accomplished with a simple key combination—option-down arrow (to insert below the selected row) or option-up arrow (to insert above the selected row). Not much would be gained by substituting a 'repeat last action' keyboard command.
    For your second example, Delete Row, Jerry's suggestion is an example of creating a personal application specific keyboard shortcut. Such a shortcut can be created for any top level menu item for which a shortcut does not already exist, using the method outlined in Jerry's post. Restriction: you can't use a keypress combination that has already been defined.
    Regards,
    Barry

  • To Bentley Wolfe, Adobe, re: Locked [ADOBE FYI] : Getting Support for Flash Player 10 and Issue Tracking post

    Hi Bentley,
    I wanted to tell you that an important link you posted does
    not work and says "Sorry, this page is not available".
    It is in your post entitled "Locked [ADOBE FYI] : Getting
    Support for Flash Player 10 and Issue Tracking post", and is at
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfmforumid=44&catid=184&threadid= 1400586&enterthread=y.
    The link that is non-functional is "If you have issues
    installing Flash Player 10, first troubleshoot your issues using
    http://www.adobe.com/support/flashplayer.
    Read the technotes, do some testing.".
    I just wanted you to know, since you have gone to all of the
    effort of posting it. I apologize for having to start a new thread,
    but I was unable to post to your thread, since it is locked and
    read-only.
    This is the issue I am dealing with myself, and desperately
    need help with. :)
    Thank you so very much,
    Karen

    Hi Bentley,
    I just noticed something. The link that I pasted, to your
    post, does not work either. I noticed why, however, and it seems to
    be why the link in your original page does not work, and why the
    link in my post that goes to your post does not work.
    It seems to be that if a link has a period after it (i.e., if
    it is at the end of a sentence), the period is incorrectly included
    in the "real" link. Somehow, whatever mechanism that processes the
    post has a mini bug in it.
    If you go to the link that is results in "Sorry, this page is
    not available", and look up into the browser address bar, you will
    see the period there each time.
    I just thought that I would point this out, too, so that the
    web techs in charge of the workings of the forums could look into
    it.
    Here is the original link, without a period after it, to your
    original page.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=44&catid=184&threadid =1400586&enterthread=y
    Thank you again,
    Karen

Maybe you are looking for

  • ERP - EHP5 upgrade - error in phase Preprocessing - MAIN_SHDRUN/DDIC_UPG

    Dear SAP, I have started my upgrade from ERP EHP4 to EHP5. During phase PreProcessing - the phase MAIN_SHDRUN/DDIC_UPG fails for the following reason : In TP.SAV, I have this error : ERRORS: Highest tp internal error was: 0232 TRACE-INFO: 32:  [    

  • Effect of sound card quality on ripping m

    I am trying to capture audio played over my sound card and rip right to mp3 with a program called Tunebite. I am wondering what effect, if any, my sound card has on the quality of the resulting mp3 file? Somebody told me this is all done in software

  • Field in FMRP_RFFMEP1AX adds date to field

    Ever since we upgraded to ECC6, we've got an odd change occuring in report  FMRP_RFFMEP1AX The material document field(found after drilling down a bit in the report) is now prepending the Material Document field with the date.  In other words, instea

  • 10.1.3 Migration Issue with data-sources.xml

    Hi: Running into lots of migration issues for an application built in 10.1.3 EA, migrating to 10.1.3. production, mostly in the BC project. Here's one: the database connections built in EA were not carried over to prod, so they needed to get re-built

  • What kind of file is "Quicktime Movie" file?

    Hi, I posted this in the "Connecting the Fifth Generation iPod to Windows" section but I got no replys. The Question was: I was looking at my collection and I see some movies/videos with the extention "Quicktime movie file" what type of file is this?