EXS24 Editor bug?

Hello! can anybody help me with this? - I have an empty instance of an EXS24 and I go to the editor window and choose "Extract MIDI Region and Make New Instrument" under the ReCycle Convert option, under the Instrument Menu and NOTHING HAPPENS; according to a tutorial I'm doing this option should open a window in which you select a REX file and then load it into the EXS24, but again nothing happens!! is this a bug??? am I missing something here?
please help!

To quote Obi-Wan
This is not the bug you are looking for..........
Now search for "Clear as mud"
Having a Wired treminal inside an IPE driving conditional code should break the snot out of that code and cause the compiler to puke all over!  The lack of check for that insanity is causing the crash!  Don't do it!  Just think of how you are abusing the poor IPE.  What if you had a breakpoint on the Inplace Boundary and changed the boolean?  That would necessatate a copy inside an inplace structure....... NO!!!!
Or, more to the point as best I understand: (Add duct tape adound head as needed)
An IPE must exist in one "Clump"  Terminal Reads exisist in their own "Clump" (although you can read many terminals in one clump)  So you require a clump to read the boolean terminal inside another clump.  Clumps cannot reside in clumps since clumps are clumps that stand apart from each other by definition.  The run arrow should be broken but is not- hence LabVIEW crashes. Makes sence to me  except the clumping algorythm didn't catch the insanity and the run arrow wasn't broken.  so the next edit caused all hell to break loose.
(If I missed domething here I am going to learn something today)
Jeff

Similar Messages

  • Score Editor bug: syncopating a note disturbs line layout

    In the example below, the instrumental part with max 2 bars per line has been created with the Layout Tool, and then the selection saved as a Score Set ( which i hope locks all the page details in place).
    [img] http://i364.photobucket.com/albums/oo82/dogliege/Picture3.png [/img]
    I then noticed that the red circled note is not displayed correctly - it should be a dotted eighth note and duly click on it with my Syncopate note command.
    This then produces the following effect: it crunches up the bars and disturbs the line layout which was already set, cramming 3 bars onto the line above as in the example below.
    [img]http://i364.photobucket.com/albums/oo82/dogliege/Picture4.png[/img]
    Any solutions appreciated/workflow suggestions.. or is this just "..another L8 Score Editor bug.. wasting more of 2009"
    PS Any suggestions as how to get the images to display in the post - as opposed to appear a link? cheers
    Message was edited by: musicspirit

    i should be enjoying my holiday but i couldn't help myself...
    there are a couple of fixes for this.
    first, try cutting the regions somewhere to force a redraw.
    second, if no form of cutting or reformatting works, try copy and pasting the midi into a fresh autoload on the intel.
    particularly if the file was created pre 7.2. there can be compatibility issues between ppc and intel.

  • Message editor bug: Ctrl-Z and Ctrl-Y not working

    Hi!
    I am writing a reply, where I am inserting a lot from Word-documents and web-pages.
    When I pressed Ctrl-Z, a large block of text, including an inserted quote, disappeared, and when I pressed Ctrl-Y it did NOT reappear, so there must be a bug or two in the message editor.
    I am not sure what else to tell about it, but it's kind of shocking.
    I have noticed before, that when you use Ctrl-Z and Ctrl-Y the editor-window does not scroll up and down to show you WHERE you are undoing/redoing something. That is also quite confusing!
    And BTW: When you mark something, there is no cursor, to tell you if you are at the end of one line or at the beginning of the next. That is also quite annoying.
    Best regards,
    Henrik R.

    When you insert your word document are you using Paste without formatting (Ctrl+Shift+V).
    All bets are off if your pasting the horribly contaminated data from a Microsoft office document without using a text only filter. It is an unfortunate fact of life that an email containing text pasted from Microsoft word can cause a virus alert due to it's internal references to OCX controls.
    It also contains complex data structures that are only meaningful to Microsoft office. However they are more than enough to scramble other editors as they often do not form valid HTML. Just another occurrence of Microsoft "innovating"

  • Rich Text Editor bug

    Hello,
    My flex website at
    http://www.theplaygrounds.co.uk/The_Playground.swf
    throws the below error when I click on Contact or B/I/U on the Rich
    Text Editor.
    ReferenceError: Error #1069: Property string not found on
    mx.controls.RichTextEditor and there is no default value.
    at
    mx.validators::Validator/mx.validators:Validator::getValueFromSource()
    at mx.validators::Validator/validate()
    at mx.validators::Validator/::triggerHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.controls::RichTextEditor/__textArea_valueCommit()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    at mx.controls::TextArea/set text()
    at
    mx.controls::RichTextEditor/mx.controls:RichTextEditor::commitProperties()
    at mx.core::UIComponent/validateProperties()
    at mx.managers::LayoutManager/::validateProperties()
    at mx.managers::LayoutManager/::doPhasedInstantiation()
    at Function/
    http://adobe.com/AS3/2006/builtin::apply()
    at mx.core::UIComponent/::callLaterDispatcher2()
    at mx.core::UIComponent/::callLaterDispatcher()
    What is actually the bug here?
    Also, on the contact page, I need to be able to scroll down
    for the submit button. How could I implement this? I've tried
    everything.
    Thanks

    Hi,
    I have this code for validation:
    <mx:StringValidator
    id="nameValidator"
    source="{userName}"
    property="string"
    minLength="2"
    />
    <mx:StringValidator
    id="nameValidator1"
    source="{userComment}"
    property="string"
    minLength="2"
    />
    <mx:StringValidator
    id="nameValidator2"
    source="{userEmail}"
    property="string"
    minLength="2"
    />
    This acts on the contact form's forms, as these are the only
    textboxes in the web app.♠
    The contact form code:
    </mx:Canvas>
    <mx:Canvas label="Contact" width="100%" height="100%"
    verticalScrollPolicy="off" backgroundAlpha="0.7">
    <mx:Panel
    title="Feedback"
    left="10" top="10" right="10" bottom="10"
    layout="absolute"
    verticalScrollPolicy="on">
    <mx:Script>
    <![CDATA[
    import flash.events.MouseEvent;
    import mx.controls.Alert;
    private const NL:String = "\r";
    private function submitButtonClickHandler
    (event:MouseEvent):void
    var userDetails:String = "You submitted the following
    details:" + NL + NL;
    userDetails += "Name: " + userName.text + NL;
    userDetails += "Email: " + userEmail.text + NL;
    userDetails += "Hide email? " + (hideEmail.selected ? "Yes"
    : "No") + NL + NL;
    userDetails += "Comment:" + NL + NL + userComment.text;
    Alert.show (userDetails);
    private function emailButtonClickHandler
    (event:MouseEvent):void
    var msg:String = "You can use the navigateToURL() method to
    open a URL"
    msg += " using a call similar to the following:\r\r";
    msg += "navigateToURL (new URLRequest
    ('mailto:[email protected]'));";
    Alert.show (msg);
    ]]>
    </mx:Script>
    <mx:Panel
    title="Leave a comment"
    layout="absolute"
    width="523" height="573" x="10" y="10"
    backgroundColor="#E9ECE7" verticalScrollPolicy="on">
    <mx:Label text="Name:" x="10" y="12"/>
    <mx:TextInput id="userName" y="10" right="10"
    left="90"/>
    <mx:Label text="Email:" x="10" y="43"/>
    <mx:TextInput id="userEmail" y="41" right="10"
    left="90"/>
    <mx:Label text="Comment:" x="10" y="99"/>
    <mx:CheckBox
    id="hideEmail"
    y="76" left="90"
    label="Hide my email address"
    selected="true"
    />
    <mx:RichTextEditor x="90" y="126" title="Leave a comment"
    id="userComment" text="Leave A Comment" enabled="true"
    verticalScrollPolicy="auto">
    </mx:RichTextEditor>
    <mx:ControlBar x="120" y="258"
    horizontalAlign="center">
    </mx:ControlBar>
    <mx:Button
    id="submitButton" label="Submit"
    click="submitButtonClickHandler(event);"
    x="355" y="79" fontSize="10" fontWeight="bold"
    mouseDownEffect="{shrink}" mouseUpEffect="{revert}"
    fillAlphas="[0.0, 0.0, 0.0, 0.0]">
    </mx:Button>
    </mx:Panel>
    <mx:Script>
    <![CDATA[
    import flash.events.MouseEvent;
    import mx.controls.Alert;
    private function submitButtonClickHandler1
    (event:MouseEvent):void
    var userDetails:String = "You submitted the following
    details:" + NL + NL;
    userDetails += "Name: " + userName.text + NL;
    userDetails += "Email: " + userEmail.text + NL;
    userDetails += "Hide email? " + (hideEmail.selected ? "Yes"
    : "No") + NL + NL;
    userDetails += "Comment:" + NL + NL + userComment.text;
    Alert.show (userDetails);
    ]]>
    </mx:Script>
    Apologies if this is a basic bug, as I am new to the Flex
    platform.
    Thanks for your help♠♠

  • Internal Map ID Editor - Bug

    Do not know if this bug has already been reported as it was
    also present in X5 so here it goes:
    Activate one or more check-boxes from the dialog available
    after clicking "option" from the Map ID editor and enter a value in
    one or more fields and then automatically assign IDs.
    Then open another project and from the same Map ID editor,
    click on options. The value(s) you entered in the other project are
    there with the check-boxes activated. Try deleting the values and
    disactivating the check-boxes and click on OK. Then automatically
    generate th emap IDs and you will see the the fact of deleting the
    values did not take effect.
    Onmy way to work around this is to actually close and reopen
    teh MAp ID editor after haveing removed the values from the option
    dialog.
    Any ideas if this will be fixed for a future release? Its a
    real pain! :-)

    Hi - not sure if you got an answer to this already in another
    forum, but the quickest way to find what you need on map IDs is to
    call up the RoboHelp for Word Help file and look up "Map IDs" in
    the Index. The topics there will give you the steps to follow.
    Don't worry - RH will make it seem pretty straightforward. Good
    luck!

  • External Image Editor bug?

    Trial version 10.1.3 I think...
    Preferences, touch up, chagne external editor to Paint.NET.
    Try to edit image. Paint.net says it cant load the image.
    So I wrote a quick program to see what parameters were being passed. Insetad of passing a pathname to an image, Acrobat is passing the name to the selected exe.... so Paint.NET is getting:
    c:\program files\paintdotnet.exe c:\program files\paintdotnet.exe
    instead of expected:
    c:\program files\paintdotnet.exe c:\some temp path\someimage.jpg
    Has anyone successfully used the external edit function with anyting other than photoshop?

    Ok, I figured it out.
    I have to click on the various image extensions column and
    associate them
    with Fireworks.
    Duh...
    "Ricardo" <[email protected]> wrote in message
    news:f92qhf$4an$[email protected]..
    > Mac OS X Tiger 10.4.10
    > Dreamweaver CS3
    >
    > I have an annoying bug, where when I change the primary
    External Editor to
    > FireworksCS3 as my primary image editor under
    Dreamweaver preferences, the
    > Properties panel still displays and opens images with
    PhotoshopCS3. Tried
    > deleting Photoshop in the the list of apps but no luck.
    > Is there a fix to this problem?
    >
    > Any suggestions will be greatly appreciated.
    > Thanks,
    > Ricardo
    >
    >

  • JDev's editor bug

    The JDev editor gets instanble after setting the following string '<%>'.
    As soon as it it placed you will not be able to see the bottom of the document. So far i only tested it with the JSP's editor.
    If you start by placing '<%' the editor won't let you place '>'. But if after you press that key('>') and press the mouse anywhere in the editor(force the input of the char), it will be printed and the editor will be all cracked out.
    Only tryed placing the '<%>' at the end of the document, din't test if it has the same behavier(not sure if it's written like this :P ) when placed anywhere in the document.
    By the way,
    I'm using the version 9.0.3.1035
    To undo the error press ctrl+a to select all the text of jthe document, afterwards open other editor(besides jdev) and remove the tag(<%>) you placed. After removing do the samething but on the opposite direction.
    Daniel Campelo

    We're tracking this via bug ID 2789824 - if you have a support contract, this is visible on http://metalink.oracle.com.
    Thanks,
    Brian
    JDev Team

  • Icon Editor Bug/Feature?

    In the linked video, I am showing a puzzling behavior of the icon editor (LV 2012 (12.0f3, Windows XP 32 bit):
    I have two lines of text defined in the Icon Text tab. The second and the third lines, the other two are empty.
    I am trying to draw a frame around them.
    If I draw a large frame (in green in the video), things behave as expected (that is everything remains put).
    If I draw a narrow frame (my initial intent, in red in the second part of the video), the text jumps up. Not expected (maybe intented, NI will tell me).
    Notice that id doesn't matter that I am using line 2 and 3. The behavior also occurs if I move my test to line 1 and 2 instead.
    Edit: Actually, while checking that the video was playing correctly from the link, I noticed that the first case is not as I intended it to be, as the jitteriness of Jing (which I used to capture this video) prevented me from drawing a full frame box. The result is that the first line of the text actually also jumps! If I draw a full frame, this does not happen.

    The jump occurs in 2009 and 2011 as well.  It also seems to be related to whether the box you draw hits the bottom row of pixels or not.  It doesn't seem to matter much whether the box is wide or narrow in the left/right direction.
    It also seems to be related to whether you have a background template defined.  It tries to squeeze the text data into the boundary of the background template, and if a background template is not defined, then it becomes that much more confused as to where it squeezes the text.  It uses other non-transparent pixels (such as the box you draw) to determine the vertical positioning of where to squeeze the text.
    I don't think it is actually a bug.  I think it is an artifact of other code that calculates where to put the text when that code uses inputs that haven't been defined within your icon.  As you add those other inputs (turning other pixels non-transparent), it is a recalculation of where to position the text.

  • Icon Editor bug - random rotations

    While editing icons with the new icon editor in LV 2009, I keep finding that my icon (or selection, or layer) rotates when I type the letter "r" into a layer name.  Are others seeing this?  What tool do I need to have selected to avoid this?  I've installed the icon editor update and this bug is still there.
    Also, is there some way to define the default VI Icon layer to be something other than a white square with a black border?
    Solved!
    Go to Solution.

    I have noticed this, too.  In fact, it's pretty easy to reproduce.
    Open the icon editor and show the layers page.  Now select a layer.  At this point pressing "r" should rotate the layer, which makes sense.
    Now, click in the layer name, which un-highlights the layer, and any time you type an r it will rotate.
    There are some other issues with rotate: if a selection or layer goes outside the icon canvas, it will be trimmed permanently (not so great if you wanted to flip it 180 degrees).
     As for changing the default icon background, I'd suggest making some templates for general use. You can save templates from within the Icon Editor. The first thing I do when editing an icon is delete the default layer and select a relevant template I've made.  Or you can just use the filled rectangle too.  If there is a way to change the default icon, i'd be interested in finding out.
    -Barrett
    Message Edited by blawson on 11-12-2009 03:27 PM
    -Barrett
    CLD

  • JSF editor Bug ?

    Hi everybody i'm trying the new jdeveloper 10.1.3 with jsf support , and after use it sometime, i realize that the jsf editor is not synchronizing very well the components on the backing code with the jsp document , when the backing code class isn't compiling (and it's saved in this state). This is a terrible source of error when you don't know it ...
    the question is , this is a normal behaviour or horrible bug ?

    Thanks, but that's not what i mean, you modify the components in the property inspector, but you don't write the methods code on the property inspector.The problem is when that code isn't compiling, if you keep using the jsp design view, the backing bean stops being updated ... if you dont realize of this bug you got desync the view with the backing ... :S

  • Graph Editor bug

    Hello there, I'm having some problems with the graph editor on After Effects CC 2014. It shows like in the images below, almost as if the software couldn't process the graph, and it slowly starts to get more curved. Also I can't edit or even barely see the anchors, and it shows the curves for all the animated parameters, even though the option "Show selected properties" is enabled. It happened twice so far, and is related to specific comps, I checked on other comps in the same project and they were working just fine. My only guess so far is that it happened in comps where I am using that new script/preset called Ouroboros, but I'm not sure it's related to that, since the bug appeared on other layers without that effect. Any one has any clue or had this problem before?

    Yes, expression evaluation can cause these behaviors and the script uses them extensively. Nothing wrong in that regard. The rest is unclear because you made your screenshots useless by clipping out the important info like the property names. Also full system info,exact graph editor options and all that will be required.
    Mylenium

  • Minor editor bug

    Hi,
    I noticed couple problems with JDev editor:
    1) editor only shows "Brace Mismatch" when cursor is positioned next to it. So when code you think that there is no errors but when you compile errors are reported.
    2) some times syntax error are not shown instantly but only when file is closed and opened again.
    I hope this would help JDev team.
    Thanks,
    Uros.

    filed bug# 6121949
    thanks.

  • Story Editor bug

    Hi.
    I'm currently experience a bug in story editor that is making it very hard to edit text effectively.
    The Story Editor works fine for a short while (maybe five minutes, sometimes a little longer), but then does odd things when selecting text. If I try to highlight a line of text by using Shift+DownArrow, the cursor jumps to the beginning of the story. If I try to move the cursor right with the RightArrow, the cursor doesn't move. Up, Left and Down appear to work okay, and moves the cursor in the appropriate direction. Any combination of shift or command or option with an arrow key does the same thing – moves the cursor to the start of the story.
    This behaviour sticks across closing / reopening the Story Editor, and, as I almost exclusively use the keyboard to control InDesign when editing books, I have to quit InDesign and relaunch to get things back to normal: a big pain and a time waster.
    Interestingly, perhaps, this behaviour only affects a single document; if I have a number of book files open, only one of them will be affected. To clarify, it's not just one InDesign file that shows this behaviour, but only one open file. It happens with different files at different times, but only a single file at a time, regardless of how many are open simultaneously.
    A few of my colleagues, who also use InDesign CC on their Macs for editing, also have the same issue. Is anyone else experiencing the same issue, or have any idea of what could be causing it?

    Can you please send a snapshot of story with the mentioned issue? You can send it to DL-AdobeStory-support<at>adobe<dot>com.
    Also are you facing this issue for a particular project or for all the projects?
    Thanks

  • New Editor bug

    The new editor has a bug. When you add 'required' (a legal HTML5 attribute) to an input element it deletes it. You have to add required="required" to make it stick. This is XHTML not HTML5.
    i.e.
    <input type="text" name="myTextbox" required>
    gets rewritten to
    <input type="text" name="myTextbox" >
    on save.

    Yeah, sorry. Bad coding on my part, but I think it's something that will catch people out as BC supplies its form inputs with XHTML markup,
    i.e. <input type=text" /> rather than <input type="text">
    That's what caused it to break in the first place, not a bug

  • Custom icon editor BUG

    If you use a custom Icon editor (as shown here and here), and you want to create a smaller Icon this will be meaningless.
    Because the lv_icon interface only allows you to generate the 2-colour and 256 colour icon. The 16 colour icon will be untouched so the total size of the icon will still be 32x32 pixels.
    I consider this a serious bug in the lv_icon customization scheme.
    Ton
    Message Edited by TonP on 01-02-2008 08:59 PM
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

    I thought I had a CAR...
    But unfortunatly I can't locate it, so I assume their isn't any.
    Could you supply us with one?
    Thanks,
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

Maybe you are looking for