Hyper draw graphic bug?

Can anyone confirm this? When I draw in hyper edit data or move track automation to a region, the display in the arrange page is one quarter note later than the data that shows up in the event list. Needless to say this makes editing data difficult.

I had this happen occasionally, also in a different way using the Marquee tool and the scissors differing fom the position of the mouse click. Seems like corrupted projects. What helped me sometimes is moving the Song position start from 0 1 1 1 to 1 1 1 1 although this should not at all affect the position of the tools being in sync with the timeline of the project. But this therapy not always works so this is an annoying issue happening from time to time.

Similar Messages

  • Unable to use Hyper Draw on some projects

    I might be doing something wrong, but all of a sudden in one of the current projects I'm working on I can't use Hyper Draw in the Piano roll view. I can't see any current automation or draw any new modulation, sustain, volume etc. I have had to revert to using track automation, which works OK.
    If I start up a new project I can use Hyper Draw in the Piano roll and it appears to work on other completed projects. Have I changed a setting or parameter in the project that it won't work in, or is it a known bug?

    Bump. Anyone?

  • [Win8.1] Video fullscreen graphic bug

    Hello,
    i've a big Problem.
    I've found a new Sony Vaio multi-flip 15 under the christmas tree ;-).
    Now i've installed all Updates incl. Windows 8.1.
    All is wonderful, but when i watch some Youtube-Videos in fullscreen mode i got this graphic-bug (see below).
    With Firefox i've just this bug in fullscreen mode. With IE also in small mode.
    Windows 8.1
    Firefox 26.0
    Adobe Flash Player 11
    The Problem is solved if i disable the hardware acceleration, but then i get a big version of the player-UI and bad graphic.
    With the Windows 8-App "Hyper for Youtube" i got the same problem without any Browser.
    Thanks in advance

    You've already found one fo the two possible solutions... disabling HW accelleration.
    The other is to update your video drivers. http://forums.adobe.com/thread/945765  (Update through the adapter manufacturer - NOT Windows)

  • Hyper Draw graph is invisible

    Hi,
    A new bug has come (possible with any Apple update). Sometimes the Hyper draw is invisible. An example is if you select a track, an object, open Piano roll, open Hyper draw for Velocity - you can't see the graph. Or if you change from one object to another - the graph will not update with that objects graph but instead becomes... invisible.
    Any help is appreciated It used to work.
    Best regards,
    Robert

    Do not close the matrix editor window. Each time you open the matrix editor it will resize the layout. You should read the chapter about "Screensets". This way your settings will be saved and you can easily switch between editors.
    Eddie

  • Hyper draw velocity question

    When I'm editing velocities using hyper draw, sometimes it moves all values up or down, and sometimes it moves all values closer or further from the middle (changing the dynamic range instead of changing all volumes in one direction). It seemed like it chose between the two based on where I grabbed the values, but I could never figure it out and I don't see it in the manual.
    And this seems to have been a L7 thing, with L8 now I can't seem to do the one that changes dynamic range at all.
    Can anyone lend a hand on this, it's been bugging me forever. Thanks.

    Searching the L8 online manual for 'velocity tool' reveals this:
    +All selected notes can be altered simultaneously; the differences in their respective velocity values will be retained. If the velocity value of any of the selected notes reaches an extreme value (0 or 127), none of the other selected notes can be adjusted further.+
    +You can override this behavior by holding Option while dragging. This allows you to continue altering the velocity values until the selected (clicked) note reaches an extreme value. It goes without saying that this will alter the velocity relationship of this note to the other notes.+

  • Draw graphics in ABAP

    Hi,
    i'm looking for a way to draw graphics in my SAP-GUI. I need really drawing, not only charts.
    I searched the forum for this topic, and found the solution via a HTML-Control with SVG.
    Basicly this is exactly what im looking for, but isn't there any other way?? In best case a solution, that don't need a plug-in..

    Hi Bernd
    For pictures you can use the class "cl_gui_picture". You can find more in the demo program Nablan mentioned.
    It may also be OK to use an HTML viewer if possible. It can be instantiated from the class "cl_gui_html_viewer"
    To store your picture files you can use the Web Repository.
    To draw graphics, you can use "GRAPH_MATRIX_*" function modules. You can inspect those.
    A better way that I would prefer to draw graphics, is using GFW (Graphical FrameWork). Inspect demo programs "GFW_DEMO_*" for those.
    Hope this clue helps...
    *--Serdar

  • Drawing graphics in RT

    Ok, gonna try to explain my problem:
    I'm into a program who draws graphics using points as they come in.
    By now I repaint() every second the graphs every second but my paint() method redraws all the points received instead of just adding the last one received.
    Any help for getting my already received points in the graph and just add the last one? ( I wanna repaint only if my scale changes )

    I suppose you have a datastructure (like an array or ArrayList) for storing the points, and in the paint method you are redrawing them all.
    So you have to change your strategy. Instead of keeping your points in an array, just draw them in a BufferedImage, and in the paint draw the BufferedImage on the Panel. The code inside paint(Graphics g) will look something like : g.drawImage(bufferedImage, 0, 0, this);
    That way you have a fast and flicker free repaint method.
    Notice that this method will loose all information about point coordinates because it will simply draw them on the BufferedImage. So if you want to be storing the point coordinates for further use (maybe the ability to edit or delete them) you'll have to keep them in a separate datastructure also.
    Hope this helps,
    Ioannis

  • Help in drawing graphics.

    Hi friends,
    I'm newbie in drawing graphics with Java, and I need some help in a specific part of my program.
    What I want to do is to draw a waveform of a sound file. That waveform is built based on the amplitude of each sound sample. So I have a big vector full of those amplitudes. Now what I need to do is plot each point on the screen. The x coordinate of the point will be its time position in the time axis. The y coordinate of the point will be the amplitude value. Ok... Now I have a lot of doubts...
    1 - can someone give me a simple example on how to plot points in a java app? I know I have to extend a JPainel class, but I don't know much about those paint, and repaint methods. It's all weird to me. I already searched through the tutorial and the web, but I couldn't see a simple, good example. Can someone hand me this?
    2 - Once I know how to draw those graphics, I need to find a way to put a button, or anything like that, in my app, so the user can press that button to see to next part of the waveform, since the wave is BIG, and doesn't fit entirely on the screen. Is this button idea ok? Can I use some sort of SCROLL on it, would it be better?
    Well... I'm trying to learn it all. ANY help will be appreciated, ANY good link, little hint, first step, anything.
    Thanks for all, in advance.
    Leonardo
    (Brazil)

    This will lead you, in this sample you have a panel and a button,
    every click will fill a vector with random 700 points and draw them on the panel,
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class Wave extends Frame implements ActionListener
         WPanel   pan    = new WPanel();
         Vector   points = new Vector();
         Button   go     = new Button("Go");
         Panel    cont   = new Panel();
    public Wave()
         super();
         setBounds(6,6,700,400);     
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
                   dispose();     
                   System.exit(0);
         add("Center",pan);
         go.addActionListener(this);
         cont.add(go);
         add("South",cont);
         setVisible(true);
    public void actionPerformed(ActionEvent a)
         points.removeAllElements();
         for (int j=0; j < 700; j++)
              int y = (int)(Math.random()*350);
              points.add(new Point(j,y+1));
         pan.draw(points);
    public class WPanel extends Panel
         Vector   points;
    public WPanel()
         setBackground(Color.pink);
    public void draw(Vector points)
         this.points = points;
         repaint();
    public void paint(Graphics g)
         super.paint(g);
         if (points == null) return;
         for (int j=1; j < points.size(); j++)
              Point p1 = (Point)points.get(j-1);
              Point p2 = (Point)points.get(j);
              g.drawLine(p1.x,p1.y,p2.x,p2.y);
    public static void main (String[] args)
         new Wave();  
    Noah

  • Hyper draw doesn't appear unless you set Hyperdraw/Articulation ID

    From the last 2 or 3 version Logic has an annoying behaviour on score window: Hyper draw doesn't appear unless you set Hyperdraw/Articulation ID/Any or None...
    This procedure has 3 minus points:
    1. The editing is slowed down
    2. Every time you close and reopen the score window YOU HAVE TO REDO IT!!!!
    3. What is it for?.....
    It was better before...

    For Radeon 7000, you need to:
    pacman -S xf86-video-ati
    You need to load those modules in /etc/rc.conf:
    MODULES=(agpgart via-agp)
    And in xorg.conf:
    Driver      "radeon"

  • Graphical bugs after 10.6.4 update

    Graphical bugs after 10.6.4 update
    - If Adobe Bridge CS5 is opened and a flash video is played with Safari 5 the whole desktop Vsync will get disabled.
    - iTunes 9.2 CoverFlow showing corrupt images for blank cover art.
    - Google Earth showing corrupt image as viewport after opening a website from within the application.
    Examples of the Google Earth corrupt viewport (it's funny I can still see my bootcamp desktop even trough I have been into OS X for an hour):
    http://img203.imageshack.us/g/img0.png/

    Your MBP has a different graphics card, Sig - nVidia 9600M, rather than the nVidia 8600M that fjtorsol has.
    Fjtorsol, there are issues with the nVidia drivers in 10.6.4 being pretty buggy, but I'm not clear on exactly which Macs are affected.
    I would suggest running a Repair Permissions then reinstalling 10.6.4 from the combo update http://support.apple.com/kb/DL1048 to make sure that your system is correctly updated.
    If that doesn't work, your best bet is to revert to 10.6.3 until the graphics drivers are fixed.

  • Graphic bug in system preferences

    hi. when i open the sys preferences, i always have a graphic bug, with for example the printer icon squared and very big. any solutions? thanks

    Try trashing ~/Library/Preferences/com.apple.systempreferences.plist. (Quit System Preferences first.) If that doesn't work, try trashing ~/Library/Caches/com.apple.preferencepanes.cache.

  • Graphic bug with HTML5 video

    Hi,
    I am experiencing an ugly graphic bug in Safari 5.0.2. Looks like this: http://tinyurl.com/24cl9t8
    Occurs on this website: http://cargocollective.com/woodyholl when you open a project (girl on the beach for example)
    Background video is embedded via <video>, all layers above are relatively simple HTMLCSSjs. The project pages contain embedded videos (vimeo etc.) and javascript slideshows.
    Did this happen to anyone else? Is there a fix for it?
    Thanks in advance,
    Flo

    the bug occurs even with just a js-slideshow inside a project, no Flash involved
    Ah, I misunderstood.
    Of course, it might be a bug affecting some machines/OS builds - see http://bugreport.apple.com for that.
    If you want to track down a possible cause on your mac - another install/different boot disk should eliminate any software cause. Or there might be settings for the specific graphics card?.
    Certainly some graphics issues seem only to show with safari and/or flash, despite being a hardware problem at heart. The Mac Pro section here would be the place to explore that, with specific card details & after running the hardware test from dvd.

  • I have Graphical bugs/problems in Lion

    I restored menubar icons after a small mod to them.
    Log back in and all off the sudden every field where I click is pink en loading icons are NOT how they should be!
    I can't restore with Time Machine because when I activate it, the graphical bugs are also there.
    Hopefully somebody will help me with this ;-)

    Sounds like your "small mod" damaged the system.  Try rebooting into recovery mode (hold down command-R at startup) and restore your entire system from the last Time Machine backup before you made that mod.  Alternately, if you don't want to restore everything, you could just reinstall the system from recovery mode, which will overwrite the current system with a new one, but leave all your apps and data alone.

  • Draw graphics on Image and Save it

    hi!,
    Can anyone help me how to draw graphics(Line, rectangle.ect) on an Image and save it. I need to do the following steps.
    1. Get the Image from the local file system
    2. Based on the parameters i receive for graphics(Ex: rectangle).
    -I have to draw a rectangle on the Image.
    3. Save the Image again to the file system
    I would appreciate if any one has any ideas or sample code I can start with.
    Thanks!!!

    Here's an example using the javax.imageio package.
    import java.awt.Color;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    public class DrawOnImage {
        public static void main(String[] args) {
            try {
                BufferedImage buffer = ImageIO.read(new File(args[0]));
                Graphics2D g2d = buffer.createGraphics();
                Rectangle rect = new Rectangle(10, 10, 100, 100);
                g2d.setPaint(Color.RED);
                g2d.draw(rect);
                ImageIO.write(buffer, "JPG", new File(args[1]));
            } catch (IOException e) {
                e.printStackTrace();
    }

  • Delete hyper draws (volume and Pan)

    How can hyper draws (volume aund pan) be deleted from audio files in Logic Pro?

    Lots of CC's in this topic...

Maybe you are looking for

  • Graphics Drivers in Windows 7 on Macbook Pro

    Hi, On my shiny new 15 in. MBP, I installed Windows 7 RC x32 using Boot Camp. Once Windows 7 was installed, I put in the Mac OS X CD to get additional drivers after which sound started working and screen resolution became dramatically better (keyboar

  • NetBoot & NetInstall across subnets

    I've recently begun deployment of our NetBoot servers within our organization. Everything is working as expected, but I'd like to be able to NetInstall across subnets without having to add a helper address to the routers. Basically we're in a large o

  • Word to pdf

    Hi, Can i have some help here? I have been creating froms with word and save them as pdf. But when i open them in reader or Acrobat 9 pro, i am not able to use checkboxes and so on. Checkboxes loses their function. I know i can do them all from the b

  • Vendor: search help by VAT registration number

    Hi, is there a way to have a search help by VAT registration number taking in account the main VAT registration number (LFA1-STCEG) AND alternate rgistration numbers (LFAS-STCEG) (if possible in a single search) ?

  • Downloading Invoice From DMS content Server.

    Hi All, I am New to DMS . We have a business requirement to download sales invoice from DMS server and send the same to printer or save the same to external local drive of user in pdf format.How can we link invoice no with the relevant tables in sap