Position of comma symbol

Hi all,
I'm looking for position of comma symbol in varchar2 string.
How do I perform it?

marco wrote:
Nope, it has to do with extraction of street name from mixed address column.In that case REGEXP_INSTR or REGEXP_REPLACE might be even more helpful then a simple INSTR.
The regexp functions are extremly powerful. Usually they help you to avoid complex combinations of substr + instr.

Similar Messages

  • Position of charging symbol since 7.0.4 update

    Has the position of the charging symbol on the mini ipad changed from inside the green box to outside the box?

    Not sure when it changed, but on my devices using iOS 7.0.4, the charge symbol is outside.

  • Comma symbol keeps typing NON-STOP

    This is odd. The "," symbol is typing non-stop. The comma key is not depressed. It works fine and is not sticking in anyway. Nothing is stuck underneath it either. If I open any application, it will create pages and pages of ",,,,,,,,,,,,," without me touching anything. If I open something that can not type right away (ie. Mail), it makes default noise when you press a wrong key. The noise comes as fast as the commas would type, as though someone is hitting the comma key as fast as a humanly possible. Keyboard was replace just last year.
    Macbook Pro, 17",
    Snow Leopard
    (I believe 10.6.6 - can't turn on my computer to check).
    I tried a restart. I tried cleaning my keyboard. Any other suggestions? My Apple Care has run out on this laptop.
    TIA. I greatly appreciate your help.
    Stephanie

    Hi Stephanie,
    First try a PRAM reset and SMC reset.
    In some cases, the battery can interfere with a cable between it and the inside of the MBP, causing keyboard and/or trackpad issues. Shut down the MBP, disconnect the power adapter, remove the battery, take a piece of something semi-soft (like a paper napkin folded over a couple times), place it over the cable you see in the battery compartment, and tape it down. Replace the battery and see how things go. If this works, you'll eventually want to replace the keyboard/trackpad cable (about $25 if you can do the work yourself). Note that if you go to a repair shop, they usually want to replace the entire top case assembly, which is much more costly.
    If the issue persists, shut down, disconnect the power adapter, remove the battery, connect the power adapter, boot the MBP and see if the issue persists without the battery in place (but remember to save a lot, because if the power adapter gets pulled out the MBP will immediately shut down and any unsaved work will be lost).
    Also look at the battery to see if it has any signs of deformity/bulging, in which case do not use it again (it may be pushing on the keyboard/trackpad cable and causing the issue); it must be replaced.
    Message was edited by: tjk

  • How to Position of a dynamically created child symbol.

    Hello Everyone,
    I created symbols instances on the stage by
    for(alpha = 0; alpha < 5; alpha++)
        sym.createChildSymbol("rect", "Stage");
    Now I wanted to set the position of each symbol  - The probelm is I don't know the names of the symbols instances that has been created. so I tried the following
    childSymbols = sym.getChildSymbols();
    for(k = 0; k < 5; k++)
        childSymbols[k].css({"position":"relative","left":k*50});
    it did not position the child symbols where i need it to be..
    HOWEVER, when I tried to apply css to an element inside the symbol it worked.
    for(k = 0; k < 5; k++)
        childSymbols[k].$("Rectangle2").css({"position":"relative","left":k*50});
    Please can anyone help..

    y = 0;
    x = 30;
    $.getJSON('slides.json', function(data){
                     for(alpha = 0; alpha < 5; alpha++){
                         var s = sym.createChildSymbol("rect", "Stage");
                         s.getSymbolElement().css({
                                          "top": x+"px",
                                          "position":"absolute",
                                          "right": y*315+20+"px"
                        x+=100;
                      // y+=100;
                              }//for

  • What is the snippet for a symbol's XY position?

    I am animating a drag drop game and when all 4 pieces are in the right locations, I need another action to happen.
    But what is the code for the location of a symbol?
    I know it's not getPosition (as that relates to the timeline), and if you put in .css({"position": "absolute", "left": "Xpx", "top": "Ypx"}) then it positions the different symbols top begin with... but still doesn't start the consequent action.
    Anyone know?
    Here is the code I am using currently:
    if(
        (sym.$("Slide").css({"position": "absolute", "left": "45px", "top": "117px"})),
        (sym.$("Rightleg").css({"position":"absolute", "left": "260px", "top": "21px"})),
        (sym.$("Leftleg").css({"position":"absolute", "left": "105px", "top": "30px"})),
        (sym.$("Ladder").css({"position": "absolute", "left": "360px", "top": "16px"}))
           alert("correct");

    There are several ways to find the position of an object.
    with top() and left()
        var symTop = sym.$('Rectangle').css('top');
        var symLeft = sym.$('Rectangle').css('left');
    with offset()
        var x = sym.$("elementName").offset();
        alert("Top: " + x.top + " Left: " + x.left);
        Note: you will need jquery
    with position()
        var position = sym.$("Rectangle").position();
        console.log( "x or left: " + position.left + ", y or top: " + position.top );
              or
        var x = sym.$("Rectangle").position().left;
        var y = sym.$("Rectangle").position().top;

  • Separating number in inputext with comma

    hi all
    I need to separate numbers with comma without using Enter .
    I have an input text and used an clientListner on it : code is bellow
      <f:view>
        <af:document id="d1">  
         <af:resource type="javascript" source="/js/accounting.js"/>
         <af:resource type="javascript" source="/js/functions.js"/>
         <!--<af:resource type="javascript" source="/js/accounting.min.js"/>-->
          <af:form id="f1">
    <af:panelGroupLayout id="pgl1">
    <af:inputText label="Label 1" id="it1">
    <af:clientListener method="formatNum" type="keyUp"/>
    </af:inputText>
            </af:panelGroupLayout>
          </af:form>
        </af:document>
      </f:view>
    I run this JavaScript on HTML page that is OK and my input text show separated number during entering ,
    but I run my above jspx page ,it does not show until press the Enter key ...
    please guide me .... I have an emergency condition please answer me soon
    and then use this function for handling...
    function.js :
    function formatNum(evt) {
        var inputfield = evt.getSource();
        var num = accounting.unformat(inputfield.getValue());
        var formatNum = accounting.formatNumber(num);
        inputfield.setValue(formatNum);
        return true;
    accounting.js
    * accounting.js v0.3.2
    * Copyright 2011, Joss Crowcroft
    * Freely distributable under the MIT license.
    * Portions of accounting.js are inspired or borrowed from underscore.js
    * Full details and documentation:
    * http://josscrowcroft.github.com/accounting.js/
    (function(root, undefined) {
    /* --- Setup --- */
    // Create the local library object, to be exported or referenced globally later
    var lib = {};
    // Current version
    lib.version = '0.3.2';
    /* --- Exposed settings --- */
    // The library's settings configuration object. Contains default parameters for
    // currency and number formatting
    lib.settings = {
    currency: {
    symbol : "$", // default currency symbol is '$'
    format : "%s%v", // controls output: %s = symbol, %v = value (can be object, see docs)
    decimal : ".", // decimal point separator
    thousand : ",", // thousands separator
    precision : 2, // decimal places
    grouping : 3 // digit grouping (not implemented yet)
    number: {
    precision : 0, // default precision on numbers is 0
    grouping : 3, // digit grouping (not implemented yet)
    thousand : ",",
    decimal : "."
    /* --- Internal Helper Methods --- */
    // Store reference to possibly-available ECMAScript 5 methods for later
    var nativeMap = Array.prototype.map,
    nativeIsArray = Array.isArray,
    toString = Object.prototype.toString;
    * Tests whether supplied parameter is a string
    * from underscore.js
    function isString(obj) {
    return !!(obj === '' || (obj && obj.charCodeAt && obj.substr));
    * Tests whether supplied parameter is a string
    * from underscore.js, delegates to ECMA5's native Array.isArray
    function isArray(obj) {
    return nativeIsArray ? nativeIsArray(obj) : toString.call(obj) === '[object Array]';
    * Tests whether supplied parameter is a true object
    function isObject(obj) {
    return obj && toString.call(obj) === '[object Object]';
    * Extends an object with a defaults object, similar to underscore's _.defaults
    * Used for abstracting parameter handling from API methods
    function defaults(object, defs) {
    var key;
    object = object || {};
    defs = defs || {};
    // Iterate over object non-prototype properties:
    for (key in defs) {
    if (defs.hasOwnProperty(key)) {
    // Replace values with defaults only if undefined (allow empty/zero values):
    if (object[key] == null) object[key] = defs[key];
    return object;
    * Implementation of `Array.map()` for iteration loops
    * Returns a new Array as a result of calling `iterator` on each array value.
    * Defers to native Array.map if available
    function map(obj, iterator, context) {
    var results = [], i, j;
    if (!obj) return results;
    // Use native .map method if it exists:
    if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
    // Fallback for native .map:
    for (i = 0, j = obj.length; i < j; i++ ) {
    results[i] = iterator.call(context, obj[i], i, obj);
    return results;
    * Check and normalise the value of precision (must be positive integer)
    function checkPrecision(val, base) {
    val = Math.round(Math.abs(val));
    return isNaN(val)? base : val;
    * Parses a format string or object and returns format obj for use in rendering
    * `format` is either a string with the default (positive) format, or object
    * containing `pos` (required), `neg` and `zero` values (or a function returning
    * either a string or object)
    * Either string or format.pos must contain "%v" (value) to be valid
    function checkCurrencyFormat(format) {
    var defaults = lib.settings.currency.format;
    // Allow function as format parameter (should return string or object):
    if ( typeof format === "function" ) format = format();
    // Format can be a string, in which case `value` ("%v") must be present:
    if ( isString( format ) && format.match("%v") ) {
    // Create and return positive, negative and zero formats:
    return {
    pos : format,
    neg : format.replace("-", "").replace("%v", "-%v"),
    zero : format
    // If no format, or object is missing valid positive value, use defaults:
    } else if ( !format || !format.pos || !format.pos.match("%v") ) {
    // If defaults is a string, casts it to an object for faster checking next time:
    return ( !isString( defaults ) ) ? defaults : lib.settings.currency.format = {
    pos : defaults,
    neg : defaults.replace("%v", "-%v"),
    zero : defaults
    // Otherwise, assume format was fine:
    return format;
    /* --- API Methods --- */
    * Takes a string/array of strings, removes all formatting/cruft and returns the raw float value
    * alias: accounting.`parse(string)`
    * Decimal must be included in the regular expression to match floats (defaults to
    * accounting.settings.number.decimal), so if the number uses a non-standard decimal
    * separator, provide it as the second argument.
    * Also matches bracketed negatives (eg. "$ (1.99)" => -1.99)
    * Doesn't throw any errors (`NaN`s become 0) but this may change in future
    var unformat = lib.unformat = lib.parse = function(value, decimal) {
    // Recursively unformat arrays:
    if (isArray(value)) {
    return map(value, function(val) {
    return unformat(val, decimal);
    // Fails silently (need decent errors):
    value = value || 0;
    // Return the value as-is if it's already a number:
    if (typeof value === "number") return value;
    // Default decimal point comes from settings, but could be set to eg. "," in opts:
    decimal = decimal || lib.settings.number.decimal;
    // Build regex to strip out everything except digits, decimal point and minus sign:
    var regex = new RegExp("[^0-9-" + decimal + "]", ["g"]),
    unformatted = parseFloat(
    ("" + value)
    .replace(/\((.*)\)/, "-$1") // replace bracketed values with negatives
    .replace(regex, '')         // strip out any cruft
    .replace(decimal, '.')      // make sure decimal point is standard
    // This will fail silently which may cause trouble, let's wait and see:
    return !isNaN(unformatted) ? unformatted : 0;
    * Implementation of toFixed() that treats floats more like decimals
    * Fixes binary rounding issues (eg. (0.615).toFixed(2) === "0.61") that present
    * problems for accounting- and finance-related software.
    var toFixed = lib.toFixed = function(value, precision) {
    precision = checkPrecision(precision, lib.settings.number.precision);
    var power = Math.pow(10, precision);
    // Multiply up by precision, round accurately, then divide and use native toFixed():
    return (Math.round(lib.unformat(value) * power) / power).toFixed(precision);
    * Format a number, with comma-separated thousands and custom precision/decimal places
    * Localise by overriding the precision and thousand / decimal separators
    * 2nd parameter `precision` can be an object matching `settings.number`
    var formatNumber = lib.formatNumber = function(number, precision, thousand, decimal) {
      // Resursively format arrays:
    if (isArray(number)) {
    return map(number, function(val) {
    return formatNumber(val, precision, thousand, decimal);
    // Clean up number:
    number = unformat(number);
    // Build options object from second param (if object) or all params, extending defaults:
    var opts = defaults(
    (isObject(precision) ? precision : {
    precision : precision,
    thousand : thousand,
    decimal : decimal
    lib.settings.number
    // Clean up precision
    usePrecision = checkPrecision(opts.precision),
    // Do some calc:
    negative = number < 0 ? "-" : "",
    base = parseInt(toFixed(Math.abs(number || 0), usePrecision), 10) + "",
    mod = base.length > 3 ? base.length % 3 : 0;
    // Format the number:
    return negative + (mod ? base.substr(0, mod) + opts.thousand : "") + base.substr(mod).replace(/(\d{3})(?=\d)/g, "$1" + opts.thousand) + (usePrecision ? opts.decimal + toFixed(Math.abs(number), usePrecision).split('.')[1] : "");
    * Format a number into currency
    * Usage: accounting.formatMoney(number, symbol, precision, thousandsSep, decimalSep, format)
    * defaults: (0, "$", 2, ",", ".", "%s%v")
    * Localise by overriding the symbol, precision, thousand / decimal separators and format
    * Second param can be an object matching `settings.currency` which is the easiest way.
    * To do: tidy up the parameters
    var formatMoney = lib.formatMoney = function(number, symbol, precision, thousand, decimal, format) {
    // Resursively format arrays:
    if (isArray(number)) {
    return map(number, function(val){
    return formatMoney(val, symbol, precision, thousand, decimal, format);
    // Clean up number:
    number = unformat(number);
    // Build options object from second param (if object) or all params, extending defaults:
    var opts = defaults(
    (isObject(symbol) ? symbol : {
    symbol : symbol,
    precision : precision,
    thousand : thousand,
    decimal : decimal,
    format : format
    lib.settings.currency
    // Check format (returns object with pos, neg and zero):
    formats = checkCurrencyFormat(opts.format),
    // Choose which format to use for this value:
    useFormat = number > 0 ? formats.pos : number < 0 ? formats.neg : formats.zero;
    // Return with currency symbol added:
    return useFormat.replace('%s', opts.symbol).replace('%v', formatNumber(Math.abs(number), checkPrecision(opts.precision), opts.thousand, opts.decimal));
    * Format a list of numbers into an accounting column, padding with whitespace
    * to line up currency symbols, thousand separators and decimals places
    * List should be an array of numbers
    * Second parameter can be an object containing keys that match the params
    * Returns array of accouting-formatted number strings of same length
    * NB: `white-space:pre` CSS rule is required on the list container to prevent
    * browsers from collapsing the whitespace in the output strings.
    lib.formatColumn = function(list, symbol, precision, thousand, decimal, format) {
    if (!list) return [];
    // Build options object from second param (if object) or all params, extending defaults:
    var opts = defaults(
    (isObject(symbol) ? symbol : {
    symbol : symbol,
    precision : precision,
    thousand : thousand,
    decimal : decimal,
    format : format
    lib.settings.currency
    // Check format (returns object with pos, neg and zero), only need pos for now:
    formats = checkCurrencyFormat(opts.format),
    // Whether to pad at start of string or after currency symbol:
    padAfterSymbol = formats.pos.indexOf("%s") < formats.pos.indexOf("%v") ? true : false,
    // Store value for the length of the longest string in the column:
    maxLength = 0,
    // Format the list according to options, store the length of the longest string:
    formatted = map(list, function(val, i) {
    if (isArray(val)) {
    // Recursively format columns if list is a multi-dimensional array:
    return lib.formatColumn(val, opts);
    } else {
    // Clean up the value
    val = unformat(val);
    // Choose which format to use for this value (pos, neg or zero):
    var useFormat = val > 0 ? formats.pos : val < 0 ? formats.neg : formats.zero,
    // Format this value, push into formatted list and save the length:
    fVal = useFormat.replace('%s', opts.symbol).replace('%v', formatNumber(Math.abs(val), checkPrecision(opts.precision), opts.thousand, opts.decimal));
    if (fVal.length > maxLength) maxLength = fVal.length;
    return fVal;
    // Pad each number in the list and send back the column of numbers:
    return map(formatted, function(val, i) {
    // Only if this is a string (not a nested array, which would have already been padded):
    if (isString(val) && val.length < maxLength) {
    // Depending on symbol position, pad after symbol or at index 0:
    return padAfterSymbol ? val.replace(opts.symbol, opts.symbol+(new Array(maxLength - val.length + 1).join(" "))) : (new Array(maxLength - val.length + 1).join(" ")) + val;
    return val;
    /* --- Module Definition --- */
    // Export accounting for CommonJS. If being loaded as an AMD module, define it as such.
    // Otherwise, just add `accounting` to the global object
    if (typeof exports !== 'undefined') {
    if (typeof module !== 'undefined' && module.exports) {
    exports = module.exports = lib;
    exports.accounting = lib;
    } else if (typeof define === 'function' && define.amd) {
    // Return the library as an AMD module:
    define([], function() {
    return lib;
    } else {
    // Use accounting.noConflict to restore `accounting` back to its original value.
    // Returns a reference to the library's `accounting` object;
    // e.g. `var numbers = accounting.noConflict();`
    lib.noConflict = (function(oldAccounting) {
    return function() {
    // Reset the value of the root's `accounting` variable:
    root.accounting = oldAccounting;
    // Delete the noConflict method:
    lib.noConflict = undefined;
    // Return reference to the library to re-assign it:
    return lib;
    })(root.accounting);
    // Declare `fx` on the root (global/window) object:
    root['accounting'] = lib;
    // Root will be `window` in browser or `global` on the server:
    }(this));

    hi all
    I have an input text that I want to separate it's value with comma
    this is my input text :
    <af:inputText value="#{bindings.LacreditAmt.inputValue}"
    label="#{bindings.LacreditAmt.hints.label}"
    required="#{bindings.LacreditAmt.hints.mandatory}"
    columns="#{bindings.LacreditAmt.hints.displayWidth}"
    shortDesc="#{bindings.LacreditAmt.hints.tooltip}"
    id="it8"
    maximumLength="#{bindings.LacreditAmt.hints.precision}"
    converter="converter.BIGDECIMALMONEYCONVERTER"
    clientComponent="true">
    <f:validator binding="#{bindings.LacreditAmt.validator}"/>
    <!--<af:convertNumber groupingUsed="false"
    pattern="#{bindings.LacreditAmt.format}"/>-->
    <af:clientListener method="handleNumberFormatConversion" type="keyUp"/>
    </af:inputText>
    and use this  java Script for comma separated value :
    problem is : when I used firebug for testing this java Script ,everything is OK and 'result' variable shown
    the correct value (comma separated value) but in fact the correct value did not show
    in input text  !!!!!
    please guide me soon.
    I appreciated in advance
    function handleNumberFormatConversion(evt){
            var inputField = evt.getCurrentTarget();
            var keyPressed = evt.getKeyCode();
            var oldValue = inputField.getSubmittedValue();
            var validKeys = new Array(48,49,50,51,52,53,54,55, 56,57,96,97,98,99,100, 101,102,103,104,105,AdfKeyStroke.ARROWRIGHT_KEY, AdfKeyStroke.ARROWLEFT_KEY, AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.DELETE_KEY, AdfKeyStroke.END_KEY, AdfKeyStroke.ESC_KEY, AdfKeyStroke.TAB_KEY);
            var numberKeys = new Array(48,49,50,51,52,53,54,55, 56,57,96,97,98,99,100, 101,102,103,104,105, AdfKeyStroke.BACKSPACE_KEY, AdfKeyStroke.DELETE_KEY);
            var isValidKey = false;
            for (var i=0; i < validKeys.length; ++i){
                if (validKeys[i] == keyPressed) {
                    isValidKey = true;
                    break;
            if(isValidKey){
                    var isNumberKey = false;
                for (var n=0; n < numberKeys.length; ++n){
                    if(numberKeys[n] == keyPressed){
                        isNumberKey = true;
                        break;
                if(isNumberKey){
                    var formatLength = 25;
                    if(formatLength == oldValue.length){
                        inputField.setValue(oldValue);
                        evt.cancel();
                    else {
                        var firstNeg = false;
                        var lastNeg = false;
                        if (oldValue.charAt(0) == '(')
                            firstNeg = true;
                        if(oldValue.contains(')')){
                          lastNeg = true;                              
                        oldValue = oldValue.replace('(', "");
                        oldValue = oldValue.replace(')', "");
                        var result = "";
                        while (oldValue.contains(",")) {
                            oldValue = oldValue.replace(",", "");
                        for (i = oldValue.length - 3;i > 0;i -= 3) {
                            result = ",".concat(oldValue.substring(i, i + 3), result);
                        result = oldValue.substring(0, (oldValue.length % 3 == 0) ? 3 : oldValue.length % 3).concat(result);
                        if (firstNeg)
                            result = '(' + result;
                        if (lastNeg) {
                            result = result + ')';
                        inputField.setValue(result);
                        evt.cancel();
                        return true;                   
            else {
                inputField.setValue(oldValue);
                evt.cancel();

  • Cursor position on screen data in module pool programming(urgent)

    Hi all,
    I developed a module pool  program which will save the data after  scanning the barcode data.
    In my program screen 100 is there which contains field  ‘2dbar’. scanned data is comming to 2dbar field.
    we r doing scan 4 times.once for vendor number,once for material no. like this.
    After 1st scan, vendor number will come to field ‘2dbar’.
    Then I developed logic to put comma after each scanned data come to this field ‘2dbar’.
    MODULE put_comma INPUT.
    CASE OK_CODE.
    when ''.
    move 2dbar to 2dbar1.
    clear 2dbar.
    concatenate 2dbar1 ',' into 2dbar2.
    *replace 2dbar with 2dbar2 into 2dbar.
    move 2dbar2 to 2dbar.
    *write 2dbar2 to 2dbar.
    condense 2dbar no-gaps.
    *move '' to 2dbar.
    *set cursor field 2dbar offset 5.
    *write
    ENDCASE.
    ENDMODULE.                 " put_comma  INPUT
    By above logic, comma  comes to the starting position of 2dbar after each scan. i.e cursor position is coming to the starting position of screen field ‘2dbar’.
    Now  I need to move the cursor position after the comma position on 2dbar after each scan.
    after 1st scan, 2dbar contains
    vmotorola
    then my logic puts a comma when u put enter on screen 100.
    now 2dbar contains
    vmotorola,
    i should get the cursor position after the comma.but i am getting cursor position before 'v'.so how to move this cursor position  beyond comma after each scan.
    I added set cursor  command but it is not working.plz
    What is the logic, I need to put in PAI  to move the cursor on selection screen.
    Already the logic I have mentioned.  with that logic, I can put comma.now I need to add cursor movement logic  to move the cursoron  on screen field ‘2dbar’.
    Plz reply me as it is urgent.
    Thanks in advance.
    Regards
    pabitra

    CASE OK_CODE.
    when ''.
    move 2dbar to 2dbar1.
    clear 2dbar.
    concatenate 2dbar1 ',' into 2dbar2.
    move 2dbar2 to 2dbar.
    condense 2dbar no-gaps.
    len = strlen ( 2dbar ).
    len = len - 1.
    set cursor field 2dbar offset len.
    ENDCASE.
    ENDMODULE. " put_comma INPUT

  • AI CS6 (16.0.4) Symbols lose transformations upon reopening file - But only visually

    Mac / AI 16.0.4
    I've created a series of images utilizing symbols.
    Basically the images are of a box. Each side of the box has different content.
    I create the side content flat with an encompassing rectangle.
    Drag all this to the Symbol Panel to create a symbol (no 9-slice no align to grid set).
    I then take a symbol instance and use Object > Envelope Distort > Apply with Mesh - 1 row, 1 column
    and proceed to transform the symbol into position on the packaging.
    This works.
    I can easily double-click the symbol and edit the side of the package with no problem. Exit symbol editing mode and the symbol instance(s) update. Perfect.
    Until.....
    I close the file. Return to it 12-18 hours later and open it to see that visually my symbols are no longer positioned correctly. I click, the symbol/emvelope is still in the correct position, but the preview on screen shows no transformation. This incorrect visual appearnce translates to print and save for web as well. So it's more than simply an inaccurate preview. The symbol has actually broken out of its container incorrectly.
    To explain further.
    When I save the file it looks like this:
    The grey box indicates the symbol/envelope bounding area.
    When I reopen the file the next day it looks like this:
    The symbol/envelope is still in the correct position but the symbol contents are completely incorrect. There seems no way to reset the symbol other than to delete what's there and redo the transformations.
    There is nothing overly complicated about the artwork within the symbol. It's all text or line art, no effects or transformations within the symbol itself.
    Any idea what's going on? Is this just a major bug?

    Sure:
    http://www30.zippyshare.com/v/44715015/file.html
    Note that I can close and open the file repeatedly and things are fine. It's only after several hours of the file sitting that it suddenly appears incorrect.
    For example, I worked on these 8 files between 11am and 1pm yesterday opening and closing them many times without issue. At noon today I went to reopen one and noticed this issue and checked the rest of the files to find them all incorrect. I then checked my nightly backups... Backups are incorrect as well.
    All files are saved as AI CS6 (native).
    The Mac OS Finder preview still shows them as correct, even though they aren't.

  • When I change the size of a symbol in itself, it is never updated outside the symbol.

    Hello,
    I created a symbol there some time ago with graphics and elements inside. This symbol has well-defined dimensions according to the elements it contains, and is used several times in my project.
    For some reason, later I need to change the elements in this symbol. So I have to resize the size of the symbol within itself.
    This works fine inside, but outside, my symbol still keeps the original size, and, whatever happens.
    So it can create problems if I need to change the position of my symbol or change the alignment relative to the elements of the same level.
    For information it's been a while since I worked with Animate and I always had the problem, whatever the version ...
    Is there a way to fix this?
    Or maybe the problem is known and will be part of the next update?
    Thanks for reply

    Hi LP700CR7,
    This is a default behavior, I am afraid, its not possible to stop this behavior at this stage within Muse.

  • When I change the position of the bookmarks button it always jumps to the same position (in the bookmarks bar). How can I make it stay where I want it to?

    When I try to change to position of the symbol for the bookmarks it doesn't matter where I put it, always when I click on "Finish" the button jumps back in the middle of the bookmarks bar, right of the bookmarks and left of two addons (FoxyTunes and Forecastfox).

    Sorry, that specific Bookmarks button ''(with the drop-marker down arrow or '''bookmarks''' word)'' is tied to the Bookmarks Toolbar when it is shown, and only appears when the Menu bar is hidden and the Firefox button is showing. It is not a "regular" toolbar button.
    There is the original Bookmarks button, in the Customize Palette, which toggles the Bookmarks Sidebar view. It will stay where you put it on the Toolbars.

  • Get right or bottom co-ordinate of a symbol

    Is there any way to get the right & bottom position of a symbol (without adding left to width or top to height)?
    thx

    Actually, there is a subtle difference between the two methods:
    If you want to get the position of an element in relation to the Stage coordinates, use offset().
    If you want to get the position of a child element relative to the offset parent (such as the position of a child element within the parent element's coordinate space, or the position of a child element in symbol coordinate space), use position().
    .offset() | jQuery API Documentation
    .position() | jQuery API Documentation
    hth,
    Joe

  • Fixing Program symbols in SAP Scripts

    Dear All
    I am new to SAP Scripts, Can any one tell me how to set or fix the position of program symbols in an SAP Script at particular coloumn. For example, i have to print 6 program symbols, prog symb "Documnet Num" has to be printer on 20 coloumn of the paper, how can we do this?
    Thank you

    Hi,
    Create new paragraph and in secion 'tabs', define columns and their positions. In your window you can use that new paragraph in the following way:
    XX &var1&,,&var2&,,&var3&,,
    XX stands for paragraph name
    ,, stands for a tab defined in paragraph XX

  • Symbol disappear from stage after being created from an image

    Ok, first, I'm a beginner with Edge here, So I might be missing some obvious solution.
    I want to create a button. I simply change an image to symbol (as I want to animate the buttons).
    Once I do that and test it in preview, the symbol is gone. It never comes back. It's not put to
    'hide'. It's in the timeline...
    What am I missing?

    Hi Zaxist,
    Thanks for wanting to help! I was going put up the project but first I wanted to trouble shooting one last time.
    and... i got it to work!
    I'll put the problem here in case someone runs into this issue as a beginner.
    Steps to trouble shoot:
    There was no code put into the button, Just a simple button.
    I closed the project and made a new project just with an image and created the symbol. It worked. It was still there.
    Then I went back to the project. Turn off every layer except the symbol that disappeared. When everything was turned off, I ran the preview again and the symbol was back! Then I turned each layer back on, one by one... doing previews each step. It kept showing until the last part. then it disappeared again. I then looked at the symbol closely to compare what was different from the other layers.
    It was that every other layer used % instead of px at the position. The symbol used px as position and basicly jumped outside the stage.
    Silly mistake but I am started to understand Edge Animate. It seems that if you use %, it's best to keep consistant with it and not mix % and px in position/sizes for the layers.

  • Movie position, help me

    i finished a flash movie.
    i just realized that i would like to position all the symbols
    in it, so the movie itself, 200 px above the entire HTML page.
    is there a way to do this simply, instead of selecting all
    the symbols already tweened one by one?

    i wish i had a nickel everytimne this gests asked - everyday
    it is asked and answered in some
    fashion and for whatever reason it is the hardest feature in
    flash for people to find.
    Search for "Edit Multiple Frames" - here's the url I have
    posted here hundreds of times:
    http://www.biteycastle.com/lessons/emf.htm
    good luck
    ~~~~~~~~~~~~~~~~
    --> Adobe Certified Expert
    --> www.mudbubble.com
    --> www.keyframer.com
    ~~~~~~~~~~~~~~~~
    mjportal2 wrote:
    > i finished a flash movie.
    > i just realized that i would like to position all the
    symbols in it, so the
    > movie itself, 200 px above the entire HTML page.
    > is there a way to do this simply, instead of selecting
    all the symbols already
    > tweened one by one?
    >
    >

  • Moving a symbol w/out recording the path animation.

    Hello.
    I have a very simple question.
    I am simply trying to move symbols around on my Stage, and each time I move one, the "path" is recorded and the object flows on that path when I scrub or play back.
    All I would simply like to do is reposition images and symbols with out the movement and animation.
    Any advice?

    if you see that path it means you have a motion tween applied to the symbol.
    right-click on the symbol and select remove tween.
    if you don't want flash to figure out the motion for you do this:
    place symbol on stage in frame 1
    select any other frame in that layer, 2, 5, whatever... and press f6 to add a new keyframe.
    change the position of the symbol
    repeat as necessary

Maybe you are looking for

  • Error in pricing when doing sourcing in EBP 4.0

    Hello, We're experiencing random errors when doing sourcing in EBP 4.0. The shopping carts don't seem to have any similarities that could launch the error. There has been few cases when the same error has occured when user is creating a shopping cart

  • ALV Report Print Problem.

    Hi, When I Print any ALV Report then In the First Row BackColor is white, but in Second it is Gray,and this alternative for all remaining rows, How Can I SET it to White For ALL Rows. Thx, Hitesh Jain.

  • Pls Help!-'Failed to open the file'

    what do you do when an error 'failed to open the file' shows up when you try to open something...? i'm pretty sure that i am using the same version of flash as the one i used before to create this file.. but just on a different mac. please help!!!! (

  • Alias for Sender SOAP Adapter URL

    When I create a web service for an o/b interface using the wizard, I need to give the URL of the pattern http://<host:<port>/XISOAPAdapter/MessageServlet?channel=<party>:<service>:<channel> Looking at the URL, I think there is servlet that is process

  • Fault reporting with OSB

    Hi All, I have a SOA composite service which receives feed from external party using one-way with fault messaging pattern. It works as expected, sends fault back to client on its own. However, I now abstract the service with OSB for SLA alert purpose