Elements 11 - Unknown Symbol on Image

What does the five sided figure [shape] at the bottom right hand corner of an image mean?

Can you post a screenshot? You will need to come to the forum to do that. Here's the URL for this thread, then click the camera icon above the message reply area to attach the screenshot:
Elements 11 - Unknown Symbol on Image

Similar Messages

  • Unknown Symbol SKIP_IND

    I'm getting an error Unknown symbol. See Below:
    Number of errors: 1        
    /: IF &SKIP_IND& = 'X'.    
        Unknown symbol SKIP_IND 
    /: ENDIF.                  
    CL ,,&WA_ITCHAR-ATNAM&,,&WA_ITCHAR-ATWRT&
    Other variables defined work fine. This variable isn't recognized and doesn't pass a value. Code is below:
    (Definition in FZ06PTOP)
    DATA: skip_ind(1) TYPE c.    " Indicates SAP Script to print blank line
    (From form in FZ06PF02_AUSGABE_POS)
          LOOP AT ichar
            INTO wa_itchar.
            IF SY-TABIX = 1.
              skip_ind = 'X'.
            ELSE.
              CLEAR skip_ind.
            ENDIF.
            CALL FUNCTION 'WRITE_FORM'
                  EXPORTING ELEMENT = 'MATL_CHAR_LN'
                  EXCEPTIONS OTHERS = 01.
          ENDLOOP.
    (From ZMEDRUCK within element 'MATL_CHAR_LN')
    /E MATL_CHAR_LN                           
    /: IF &SKIP_IND& = 'X'.                   
    /: ENDIF.                                 
    CL ,,&WA_ITCHAR-ATNAM&,,&WA_ITCHAR-ATWRT& 
    Does anyone know what needs to be done?
    Thanks,
    Gary M. Fee

    HI Gary,
    that was a good question... i am also not sure abt the correct answer but i believe the write_form carry only structures than variables.
    if u dont want to add a skip_ind field in internal table ichar then u can use subroutine in script.
    <b>/: perform test in program zprogram
    /: USING &WA_ICHAR-ATNAM&
    /: changing &skip_indi&
    /: endperform
    in program..
    DATA COUNT TYPE I.
    form test TABLES tab_in STRUCTURE itcsy
    tab_out STRUCTURE itcsy.
    DATA : skip_ind type boolean.
    READ TABLE tab_in WITH KEY 'WA_ICHAR-ATNAM'.
    IF sy-subrc = 0.
    COUNT = COUNT + 1.
    IF COUNT = 1.
    SKIP_IND = 'X'.
    READ TABLE tab_out WITH KEY 'SKIP_INDI'.
    IF sy-subrc = 0.
    tab_out-value = SKIP_IND.
    ENDIF.
    MODIFY tab_out INDEX sy-tabix.
    ELSE.
    CLEAR SKIP_IND.
    ENDIF.
    ENDFORM.</b>
    Pls close the thread if problem is solved, and reward to all helpful answers.
    Regards
    SAB

  • Elements vs. symbols - am I doing this wrong?

    Hi,
    My stage has a good handful of elements, plays fine in the beginning, then slows down as time passes.
    My stage only has the main timeline. It contains 23 groups, each with two images inside. All of these (groups and images) are elements, not symbols.
    My problem is that, when playing this on my iPhone5, the animations are fluent in the beginning, but towards the end (at 24 sec.) the playback becomes slow and rather choppy...
    At any given time, no more than 6 elements are visible (the images simply slide into view and out again).
    When I debug the edge javascript code, it seems that all tweens from start to current position are updated each frame - this indicates that playback will in fact become slower, the further it plays... this can't be right, can it?
    Am I missing something here?
    How do I optimize my animation?

    Ok, so I'll answer this myself.
    Digging into the code seems to reveal what I suspected: When a tween's time-window comes into scope, the tween is updated every update - this continues even when the tween goes out of scope, causing the animation to run slower because of updates to an increasing number of tweens...
    What I still haven't figured out, is why Edge Animate inserts a host of 'injected' tweens when it rebuilds the timeline... I bet it would make sense if I understood the complete structure, but this stunt triples my tween count which is devastating to my animation.

  • Illustrator script to create symbols from images in folder

    Time to give back to the community...
    Here is a script I recently devised to bulk create symbols from images in a folder. Tested with Illustrator CC 2014.
    // Import Folder's Files as Symbols - Illustrator CC script
    // Description: Creates symbols from images in the designated folder into current document
    // Author     : Oscar Rines (oscarrines (at) gmail.com)
    // Version    : 1.0.0 on 2014-09-21
    // Reused code from "Import Folder's Files as Layers - Illustrator CS3 script"
    // by Nathaniel V. KELSO ([email protected])
    #target illustrator
    function getFolder() {
      return Folder.selectDialog('Please select the folder to be imported:', Folder('~'));
    function symbolExists(seekInDoc, seekSymbol) {
        for (var j=0; j < seekInDoc.symbols.length; j++) {
            if (seekInDoc.symbols[j].name == seekSymbol) {
                return true;
        return false;
    function importFolderContents(selectedFolder) {
        var activeDoc = app.activeDocument;     //Active object reference
      // if a folder was selected continue with action, otherwise quit
      if (selectedFolder) {
            var newsymbol;              //Symbol object reference
            var placedart;              //PlacedItem object reference
            var fname;                  //File name
            var sname;                  //Symbol name
            var symbolcount = 0;        //Number of symbols added
            var templayer = activeDoc.layers.add(); //Create a new temporary layer
            templayer.name = "Temporary layer"
            var imageList = selectedFolder.getFiles(); //retrieve files in the folder
            // Create a palette-type window (a modeless or floating dialog),
            var win = new Window("palette", "SnpCreateProgressBar", {x:100, y:100, width:750, height:310});
            win.pnl = win.add("panel", [10, 10, 740, 255], "Progress"); //add a panel to contain the components
            win.pnl.currentTaskLabel = win.pnl.add("statictext", [10, 18, 620, 33], "Examining: -"); //label indicating current file being examined
            win.pnl.progBarLabel = win.pnl.add("statictext", [620, 18, 720, 33], "0/0"); //progress bar label
            win.pnl.progBarLabel.justify = 'right';
            win.pnl.progBar = win.pnl.add("progressbar", [10, 35, 720, 60], 0, imageList.length-1); //progress bar
            win.pnl.symbolCount = win.pnl.add("statictext", [10, 70, 710, 85], "Symbols added: 0"); //label indicating number of symbols created
            win.pnl.symbolLabel = win.pnl.add("statictext", [10, 85, 710, 100], "Last added symbol: -"); //label indicating name of the symbol created
            win.pnl.errorListLabel = win.pnl.add("statictext", [10, 110, 720, 125], "Error log:"); //progress bar label
            win.pnl.errorList = win.pnl.add ("edittext", [10, 125, 720, 225], "", {multiline: true, scrolling: true}); //errorlist
            //win.pnl.errorList.graphics.font = ScriptUI.newFont ("Arial", "REGULAR", 7);
            //win.pnl.errorList.graphics.foregroundColor = win.pnl.errorList.graphics.newPen(ScriptUIGraphics.PenType.SOLID_COLOR, [1, 0, 0, 1], 1);
            win.doneButton = win.add("button", [640, 265, 740, 295], "OK"); //button to dispose the panel
            win.doneButton.onClick = function () //define behavior for the "Done" button
                win.close();
            win.center();
            win.show();
            //Iterate images
            for (var i = 0; i < imageList.length; i++) {
                win.pnl.currentTaskLabel.text = 'Examining: ' + imageList[i].name; //update current file indicator
                win.pnl.progBarLabel.text = i+1 + '/' + imageList.length; //update file count
                win.pnl.progBar.value = i+1; //update progress bar
                if (imageList[i] instanceof File) {         
                    fname = imageList[i].name.toLowerCase(); //convert file name to lowercase to check for supported formats
                    if( (fname.indexOf('.eps') == -1) &&
                        (fname.indexOf('.png') == -1)) {
                        win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a supported type.\r'; //log error
                        continue; // skip unsupported formats
                    else {
                        sname = imageList[i].name.substring(0, imageList[i].name.lastIndexOf(".") ); //discard file extension
                        // Check for duplicate symbol name;
                        if (symbolExists(activeDoc, sname)) {
                            win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Duplicate symbol for name: ' + sname + '\r'; //log error
                        else {
                            placedart = activeDoc.placedItems.add(); //get a reference to a new placedItem object
                            placedart.file = imageList[i]; //link the object to the image on disk
                            placedart.name =  sname; //give the placed item a name
                            placedart.embed();   //make this a RasterItem
                            placedart = activeDoc.rasterItems.getByName(sname); //get a reference to the newly created raster item
                            newsymbol = activeDoc.symbols.add(placedart); //add the raster item to the symbols                 
                            newsymbol.name = sname; //name the symbol
                            symbolcount++; //update the count of symbols created
                            placedart.remove(); //remove the raster item from the canvas
                            win.pnl.symbolCount.text = 'Symbols added: ' + symbolcount; //update created number of symbols indicator
                            win.pnl.symbolLabel.text = 'Last added symbol: ' + sname; //update created symbol indicator
                else {
                    win.pnl.errorList.text += 'Skipping ' + imageList[i].name + '. Not a regular file.\r'; //log error
                win.update(); //required so pop-up window content updates are shown
            win.pnl.currentTaskLabel.text = ''; //clear current file indicator
            // Final verdict
            if (symbolcount >0) {
                win.pnl.symbolLabel.text = 'Symbol library changed. Do not forget to save your work';
            else {
                win.pnl.symbolLabel.text = 'No new symbols added to the library';
            win.update(); //update window contents
            templayer.remove(); //remove the temporary layer
        else {
            alert("Action cancelled by user");
    if ( app.documents.length > 0 ) {
        importFolderContents( getFolder() );
    else{
        Window.alert("You must open at least one document.");

    Thank you, nice job & I am looking forward to trying it out!

  • Best practices for handling elements and symbols (including preloading)

    I am trying to learn Edge Animate and I have not seen enough animations to know how this is typically handled and I searched the forum and have not found an answer either.
    If you have many different elements and symbols for a project, what is the best practice for having them appear, disappear, etc. on the timeline? I ask this question not only from a performance based perspective, but also keeping in mind the idea of preloading. This is a 2 part question:
    Part 1: Using elements and symbols later in the timeline:
    Since artwork is always imported directly to the stage in an "always on" status, should we place a visibility OFF on every item until we need it?
    or should they be opacity 0 until I need them?
    or should they be set to visibility hidden until I need them?
    Which of these is the best option if you don't want the element / symbol visible until later in the timeline? Does it matter?
    Part 2: Impact on page loading
    Does the above question have any impact upon page loading speed
    or is this something handled in preloading?
    or do you need to make a special preloader?
    Thanks for the help.

    Hi, escargo-
    Good questions!
    Part 1: Using elements and symbols later in the timeline:
    Since artwork is always imported directly to the stage in an "always on" status, should we place a visibility OFF on every item until we need it?
    or should they be opacity 0 until I need them?
    or should they be set to visibility hidden until I need them?
    Which of these is the best option if you don't want the element / symbol visible until later in the timeline? Does it matter?
    I would recommend that you set your visibility to "off" instead of simply changing the opacity.  The reason I suggest this is that when your visibility is set to off, your object's hit points also disappear.  If you have any type of interactivity, having the object still visible but with 0 opacity will interfere with anything you have underneath it in the display order.
    Part 2: Impact on page loading
    Does the above question have any impact upon page loading speed
    or is this something handled in preloading?
    or do you need to make a special preloader?
    Thanks for the help.
    No, none of this has any impact on page load.  As you already noticed, all of the assets of your project will load before it displays.  If you want only part of your composition to load, you may want to do what we call a multi-composition project.  There's a sample of that in the Edge Animate API in the Advanced section, and plenty of posts in the forums (and one in the team's blog) explaining how to do that.
    http://www.adobe.com/devnet-docs/edgeanimate/api/current/index.html
    https://blogs.adobe.com/edge/
    Hope that helps!
    -Elaine

  • Exporting animated symbol to image sequence

    Hi guys!
    I'm unable to export an animated symbol to image sequence properly because the symbol does not animate.
    I created the tweens in multiple layers, then cut-pasted all layers to a new symbol. I did this so I could then just do some tween motions on the symbol.
    The tweening is perfect, but when I export the image sequence, the images do not animate the way it does on the Flash player. All I get is an image sequence with the tweened symbol, but the symbol itself does not animate.
    I'd really appreciate if you guys could give me a tip on how to get the symbol to animate when exporting the image sequence.
    Alternatively, is there a way to motion-tween multiple layers simoultaneously? (Layers which are themselves tweened)
    Thank you guys!
    Any additional info, I'll be checking regularly so I can provide as much description as possible to get this to work.

    Ok, I figured it out!
    I changed the symbol type to "Graphic," and I was able to see the animation in the timeline. Easy!
    Now I just exported the movie to png sequence, and bam! Magic!
    If anyone has this problem, don't hesitate to ask me and I'll ellaborate on what I did.
    Thanks!

  • An Unknown Symbol !! Does Anyone See This Icon On The Status Bar ?

    Hello Everyone;
    I Have a SonyEricsson T650i with IRANCELL Network , After Months Yesterday night an unknown symbol turns on , on the status bar. you can see it in the picture...
    I Try To Turn Off And On The Phone many times but No Changes.
    I Never seen this symbol before and I Tried to google it for all sonyericsson symbols and i can't find anything.
    I have downloaded the T650i's User Guid and there's nothing special about this too.
    If you know something about this please help me , its very important to me.
    please attach a link for more information.
    thanks
    PaSHa
    Attachments:
    22022011020.jpg ‏134 KB

    The icon you see is indicating that a handsfree is connected to the phone. If you have not connected a handsfree and still get this icon I suggest that you update the phone software using the Update Service program. If you have not installed Update Service on your PC, you can download it from here.
    www.sonyericsson.com/updateservice
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Unknown Symbols

    Hi,
    While processing some files, we do encounter some unknown symbols which due to this XI doesn't process the files.
    It was a hard task for us to check each individual line item to look for any unusual symbols.
    I spent one hour to check a file of 10000 records by splitting and executing it in XI.
    Is there any easy way of finding these unknown symbols or some interpreters to do this.
    We have a .csv files which had these symbols.
    Regards
    Krish

    Hi Krish,
    As already prateek mentioned until unless you know in which encoding they fall into you can make a decision. So based upon a few characters see in wihch encoding they are falling and use it accordingly.
    Regards,
    ---Satish

  • Doubt in script(Unknown symbol)

    Hi,
    I am gettin error in scripts(Unknown symbol l_vtweg).
    In print program I have used this variable.
    select single vtweg from dic table into l_vtweg
            where cond.
    then y I am geting this error? any idea plz?
    Regards
    Divakar

    Runtime errors occur if the declared data type is unknown; if the length of the declared data type does not match the type of the assigned field and if the alignments are incompatible.
    Regards
    Vivek
    reward points if this helps

  • HP Deskjet 3052A printing English in unknown symbols

    I was using my HP Windows 7 Home Premium Laptop to search a web site for a schedule of events. I tried to print the schedule and when the printing was complete, the schedule that I viewed in English was printed in some unknown symbols.  I printed it a second time after disconnecting and reconnecting the printer. I printed the English version again, this time it was in a different set of unknown symbols. HELP!  
    I have not tried to print anything in several weeks. My printer was working fine before.

    Hello ECM310,
    Welcome to the HP Forums!
    I understand when you try to print a schedule of events, it prints out with symbols. I will do my best to assist you! How is this printer connected? Wireless or USB?
    Could you try printing from Notepad on your computer to verify if you're experiencing this different symbols?
    I would recommend following this HP document on Continuous Pages of Strange or Garbled Characters Print in Windows. (This is only for a USB connection.)
    Please post your results, as I will be looking forward to hearing from you.
    I worked on behalf of HP.

  • [SOLVED] Unknown symbol usb_serial_*

    Hi,
    I'm trying use a module that serializes wishbone protocol over usb... The point is that I have added this module in Ubuntu distros without problems, but my Arch box is complaining:
    [16028.668549] usb 4-3: new high-speed USB device number 10 using ehci-pci
    [16028.795091] cdc_acm 4-3:1.0: This device cannot do calls on its own. It is not a modem.
    [16028.795135] cdc_acm 4-3:1.0: ttyACM0: USB ACM device
    [16069.350014] wishbone_serial: Unknown symbol usb_serial_generic_open (err 0)
    [16069.350026] wishbone_serial: Unknown symbol usb_serial_generic_close (err 0)
    [16069.350046] wishbone_serial: Unknown symbol usb_serial_deregister_drivers (err 0)
    [16069.350055] wishbone_serial: Unknown symbol usb_serial_register_drivers (err 0)
    well, all this calls are indeed in the kernel src linux/drivers/usb, but I don't see that the archlinux this usb-serial driver has...
    Could you tell me if I'm right?
    and current installation:
    Linux MrWork 3.9.8-1-ARCH #1 SMP PREEMPT Thu Jun 27 21:37:31 CEST 2013 x86_64 GNU/Linux
    Last edited by bradomyn (2013-07-08 09:04:37)

    The
    depmod -a
      did the trick.
    man depmod wrote:
    Depmod creates a "Makefile"-like dependency file, based on the symbols it finds in the set of modules mentioned on the command line or from the directories specified in the configuration file. This dependency file is later used by modprobe to automatically load the correct module or stack of modules.
    /sbin/depmod -a
    somewhere in the rc-files in /etc/rc.d, so that the correct module dependencies will be available immediately after booting the system. Note that the option -a is now optional.

  • Does Element 11 support Sony A7r? why can't I use my element 11 to process images produced by Sony A7r?

    does Element 11 support Sony A7r? why can't I use my element 11 to process images produced by Sony A7r?

    If you convert your files to the Adobe Raw format (DNG)thyry will open in PSE11.
    Windows download (.exe file) click here DNG Converter 8.3
    Mac download (.dmg file) click here DNG Converter 8.3
    You can convert a whole folder of raw images in one click. See this quick video tutorial:
    You Tube click here for DNG Converter tutorial

  • SAPSCRIPT :error "unknown symbol adrc-name1"

    Hi everyone,
    In my driver program, i have fetched data in adrc.
    In the sapscript, i have written "&WA_ADRC-NAME1& " in the editor.
    While checking the texts, i get the error "Unknown symbol WA_ADRC-NAME1.
    Please suggest,
    Thanks in Advance.
    Regds,
    Arpita

    Thats just because this fielld is not defined in the script with the DEFINE statement. You are using the work area directly to display the field.
    This will come for all the fields not declared in the script.
    This will not put any impact on your script.
    Regards,
    Amit
    Reward all helpful replies.

  • Photosmart printer - pink screen with unknown symbols

    After what may have been a power surge,  my Photosmart 470 photo printer screen has turned pink with two unknown symbols.  Unplugging sometimes returns to a normal screen but no functions, and then returns to the pink screen.

    Hi northco,
    Welcome to the HP Forums!
    I noticed that your HP Photosmart 470 photo printer screen has turned pink with two unknown symbols. Sometimes it will take you to the normal screen, but it will still not function. I am happy to help!
    Please try the solutions within this guide. The HP Printer Won't Turn On or Respond When the Power Button is Pressed.
    Hope these solutions help, and thank you for posting!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • ThinkPad T500, HDAPS: tp_smapi: Unknown symbol thinkpad_*

    I followed the guide at http://wiki.archlinux.org/index.php/HDAPS, but didn't get further than the tp_smapi section:
    # modprobe tp_smapi
    FATAL: Error inserting tp_smapi (/lib/modules/2.6.28-ARCH/extra/tp_smapi.ko): Unknown symbol in module, or unknown parameter (see dmesg)
    # dmesg | tail -n5
    thinkpad_ec: cannot claim IO ports 0x1600-0x161f... consider using force_io=1.
    tp_smapi: Unknown symbol thinkpad_ec_unlock
    tp_smapi: Unknown symbol thinkpad_ec_invalidate
    tp_smapi: Unknown symbol thinkpad_ec_read_row
    tp_smapi: Unknown symbol thinkpad_ec_lock
    # ll /sys/devices/platform/smapi
    ls: cannot access /sys/devices/platform/smapi: No such file or directory
    # ll /dev/js
    ls: cannot access /dev/js: No such file or directory
    What's wrong?

    The module thinkpad_ec has to be loaded before you can use tp_smapi,
    but it refuses to load on your system becaue it can't claim certain IO ports.
    You can force thinkpad_ec to claim the ports with modprobe thinkpad_ec force_io=1,
    and to make it permanent you can add options thinkpad_ec force_io=1 to /etc/modprobe.d/options.
    Edit: I have to tell thinkpad_ec to force claiming the ports on my system as well (Lenovo ThinkPad X200)
    and so far I haven't had any problems with it, but there's no guarantee it'll work on your system. Just try.
    Last edited by csstaub (2009-03-21 13:46:47)

Maybe you are looking for

  • I can not delete empty signature area in document in Adobe reader

    Hi, I have deleted my signature in document and can not delete not signated area of signature in Adobe reader. Can you please advice? Thanks in advance.

  • Is it required to cost the materials with Price control "V" ?

    Dear All, Would like to know if we have to consider the items with Price control "V" during the cost run in CK40N..? Since the system automatically updates the price of the item for price control "V", do we also require to update through cost run? Pl

  • *** credit card processing unavailable and poor poor itms help

    I cant believe that the itunes music store's credit card processing is unavailable, anyone know whats up with this? since 7.3 I havent been able to get it going and it asked me to change my info so I did putting in a new card and no errors on the for

  • Delivery/billing update special ledger

    I crate a sales order, in outbound delivery, the accounting document and special ledger document is generated, but distribution chanel in the special ledger document is empty( can view from GD13), activity is RMWL but in billing phase, the accounting

  • Visual Composer deployment error?

    Hi Gurus, When am trying to deploy bespoke VC models am getting the Error in compiling Flex application (1).error I have set the  VC.VerboseErrorMessages field to True ..... what will be the root cause of this problem. Kindly let me know ASAP Higher