Guide me in selecting flex

Hello,
I am shaik.i am  php developer.i have 3 years of exp. in php.i am new to flex.i want to know the future of flex.
how will be the jobs availability for this flex.
can anyone please guide me in what way i can use flex in php.
and also provide me some url links as  examples of the flex sites.
waiting for your reply.
thanking you in advance.
Thanks & regards,
Shaik

What I do is get the sources and MD5s in the PKGBUILD, then makepkg -o.  I'll manually compile the sources but not install them, and when I have a few one-liners that make the magic happen, I put it into the build() section.  Then I'll rm -rf the $srcdir and actually try it with package { true; } as the package() function.  If that works, I'll try some install lines (instead of true) and run find against the $pkgdir.  If it all looks good, I'll make sure my dependencies are in check and pack it up.

Similar Messages

  • The selected Flex SDK does not support building mobile projects

    I am unable to create a new Actionscript Mobile project.  The new project dialogue gives the error: "The selected Flex SDK does not support building mobile projects."  I tried seting the default Flec SDK both to the SDK included with Flash Builder 4.7, and also to a version of the 4.6.0 SDK (build 23201) with AIR 3.3 SDK overlayed on it, which already existed on my computer.  Both resulted in the same error.  Any ideas?

    Hi ,
    Actionscript Mobile projects use AIR SDK by default in Flash Builder 4.7 . Flex SDK won't be used for Actionscript projects.
    Could you please try creating an Actionscript project in fresh workspace and let me know if the issue still exists.
    Also attach screenshot and error log if any.
    Thanks,
    Sanjay

  • BUG CS5? Why do guides disappear when selected?

    Weird.
    I have an AI CS5 doc with a few guides in. All guides are marked as visible, and are placed in a separate unlocked, visible layer. Show Guides is ticked.
    As soon as guides are selected (with the little coloured square in the Layers panel), they disappear. When deselected, they appear again. If I mouseover a selected guide (i.e. one that has disappeared because it's selected) it appears, but only as long as the mouse is over it.
    If I create a new document, this behaviour disappears and guides behave normally.
    Any thoughts about what might be happening?
    Thanks
    Richard

    Perhaps Edges are hidden: View > Show Edges

  • I am unable to synch music from selected playlists in my iTunes library onto my new iPod Classic, despite meticulously following the User Guide.

    I just purchased an iPod Classic, and after making sure I had the latest ver. of iTunes on my Intel MacMini, printed out the User Guide and carefully began learning how to operate the iPod. My first step was to ensure I had manual control (vs. auto synch) because I want only selected songs and playlists on the iPod, not my whole iTunes Library.
    On pg. 24 of the Guide is the topic "Synching music from selected playlists onto iPod Classic." Just what I wanted. OK, I selected iPod "in the source list" (aside: Shouldn't it be "in the device list?" I dispair of imprecision). This brought up the iPod Summary page, showing I had selected Open iTunes when connected and Manually manage music and videos. Next I clicked on the Music tab.
    This presented me with Synch Music next to an empty check box. Below it, and entirely grayed out was:
    Entire music library (showing a checked box)
    Selected Playlists, artists, albums and genres (next to an unchecked box).
    There's also a third grayed out item: Include music videos that is checked.
    When I selected Synch Music, I got the message: "Are you sure you want to removed existing mlusic, movies and TV shows from the iPod and synch with this iTunes LIbrary?   I selected Cancel because:
    1. The grayed option Entire Music Library is checked, not mly preferred option of Selected playlists, artists, albums and genres. .
    2. I can't find anywhere in the User Guide how to "Select the Playlists" I want to synch to my iPod. At present all I have in iTunes is my list of playlists in the left hand side bar.
    OK, my first thought was the checked box in the iPod's Summary window: Manually manage music and videos. So I went there and unchecked it, which immediately brought up an alert  to the effect "Are you sure you want to automatically synch your entire iTunes library, etc. etc...? I quickly cancelled. Thus, I seem to be in a Catch-22 situation. 
    So the questions are:
    How do I resolve the Synch Music issue so I am assured only selected playlists will be sent to my iPod?
    How do I create a list of playlists in my iTunes library to be transferred to my iPod?
    How do I manually move a playlist in my iTunes library to my iPod's lists of playlists?
    Any help much appreciated. Thanks to all.
    John in the Pacific Northwest

    For the immediately problem, you can shut down the computer and disconnect the iPod.
    There may be a process (program) running on your computer in the background that continuously monitors mounted volumes for things like maintenance, data corruption, and malware.  The iPod's storage is a mounted volume.  If you know of any such program, such as an "anti-virus" utility, and it has settings that allow you to exclude certain volumes, you can set it to ignore the iPod "disk" when connected.
    Also, if you are using automatic syncing (not the manual method) to load the iPod, and you have Enable disk use turned ON, turn it OFF.  With Enable disk use turned OFF, iTunes only mounts the iPods disk when syncing, then immediately unmounts the disk.  Thus, other processes you have running on your PC (not iTunes) will have less of a chance to make the disk "in use" and cause this problem.  You won't even have to eject the iPod before disconnecting.

  • Flex Tree does not selecting (highlight) the selectedIndices

    have an array of items that should be selected in my tree control. As you can see from my code below,I bind this array to the selectedIndices property of the tree. The selectedItems are not properly selecting in tree(selecting some other items and always root is selected).Flex seems to "ignore" my items (highlights some other indices). Am I missing something?
    Perhaps I'm going about this in wrong way?
    Thanks for your help!
    My XMLList:-
    <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
            <fx:XMLList id="XMLList">
            <node>
                <node name="max">
                    <node name="Emanuele"
                          surname="Tatti" age="23" wage="1200"/>
                    <node name="Francesco"
                          surname="Rapana " age="22" wage="1000"/>
                    <node name="Constantin"
                          surname="Moldovanu" age="23" wage="1200"/>
                    <node name="Marco"
                          surname="Casario" age="29" wage="1500">
                        <node name="Marco"
                              surname="Casario" age="29" wage="1500">
                            <node name="Marco"
                                  surname="Casario" age="29" wage="1500">
                                <node name="Marco"
                                      surname="Casario" age="29" wage="1500">
                                </node>
                            </node>
                        </node>                
                    </node>
                </node>
            </node>
            </fx:XMLList>
    </fx:Declarations>
    My Action Script Function:-
    public function select_tree():Void
    tree.validateNow();
    var allItems:Array = new Array();
    for(var n:Int =2;n<7;n+2)      
            allItems[n]=n; // o/p- 2,4,6
    tree.selectedIndices = allItems1;   //2,4,6 items should select ,but 0,2,4,5 are selected why?
    *****My MXML:-*****
    <mx:Button id="btn" label="Find Unmatch Nodes" width="221" height="30" click="select_tree()"/>
    <mx:Tree id="tree"  right="10" top="54" bottom="10" width="49.5%" dataProvider="{XMLList}"
        fontFamily="Verdana" fontSize="11" showScrollTips="true"
        allowMultipleSelection="true"
        alternatingItemColors="[#F5F5F5]"
        labelField="@label" selectionColor="#ECF335" showRoot="false"/>

    Are the nodes open to “expose” the children?

  • Photoshop 10 crashes when I select quick edit and get no response when guided edit selected

    PS Elements 10 crashes when I select quick edit and I get no response when guided edit is selected.  Auto edit is working.  Help???

    It would help to have more information, but try this: Quit the editor, then restart it while holding down ctrl+alt+shift (command+option+shift on a mac). Keep the keys down till you see a window asking if you want to delete the settings file. You do.

  • Why can't I select and move guides with selection tools?

    I'm using Illustrator CC and I cannot select and move guides with the selection tools. The guides are not locked. I can select the guides in the Layers Panel, but I can only move with the arrow keys. I can also "Release" the guides once they are selected in the Layers Panel, but I still cannot move them with the mouse - only the arrow key.
    Summary of Problem:
    Guides are not locked.
    Some guides can only be moved when they are selected in the Layer Panels and when using the arrow keys
    Non-selectable Guides can be "Released" but only altered in color and line weight and still only moved with the arrow keys.
    Desired Outcome:
    I want to be able to move all guides using the mouse for greater accuracy vs the arrow keys.
    Thank you for your help.

    Channing, anotherhead,
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Select single row in ALV grid

    ABAPer's ,
    Does anyone can guide me to select single row only in ALV grid , without OO.

    Hello,
    I did not get u.
    But check the below code it may help u.
    tables: mara.
    TYPE-POOLS: SLIS.
    data:repid like sy-repid.
    data: itb type mara occurs 0 with header line,
    IT_FIELDCAT TYPE STANDARD TABLE OF SLIS_FIELDCAT_ALV WITH HEADER LINE,
    IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
    ITB1 TYPE MAKT OCCURS 0 WITH HEADER LINE.
    selection-screen begin of block b.
    parameters: p_matnr type matnr.
    selection-screen end of block b.
    select * from mara into table itb where matnr = p_matnr.
    SELECT * FROM MAKT INTO TABLE ITB1 WHERE MATNR = P_MATNR.
    repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK              = ' '
      I_BYPASSING_BUFFER             =
      I_BUFFER_ACTIVE                = ' '
       I_CALLBACK_PROGRAM             = repid
      I_CALLBACK_PF_STATUS_SET       = ' '
       I_CALLBACK_USER_COMMAND        = 'HANDLE_USER_COMMAND'
       I_STRUCTURE_NAME               = 'MARA'
       IS_LAYOUT                      = IT_LAYOUT
       IT_FIELDCAT                    = IT_FIELDCAT[]
      IT_EXCLUDING                   =
      IT_SPECIAL_GROUPS              =
      IT_SORT                        =
      IT_FILTER                      =
      IS_SEL_HIDE                    =
      I_DEFAULT                      = 'X'
      I_SAVE                         = ' '
      IS_VARIANT                     =
      IT_EVENTS                      =
      IT_EVENT_EXIT                  =
      IS_PRINT                       =
      IS_REPREP_ID                   =
      I_SCREEN_START_COLUMN          = 0
      I_SCREEN_START_LINE            = 0
      I_SCREEN_END_COLUMN            = 0
      I_SCREEN_END_LINE              = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER        =
      ES_EXIT_CAUSED_BY_USER         =
      TABLES
        t_outtab                       = itb
    EXCEPTIONS
      PROGRAM_ERROR                  = 1
      OTHERS                         = 2
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    FORM HANDLE_USER_COMMAND USING R_UCOMM LIKE SY-UCOMM RS_SELFIELD TYPE
    SLIS_SELFIELD.
    CASE R_UCOMM.
    WHEN '&IC1'.
    CLEAR IT_FIELDCAT[].
    IF RS_SELFIELD-FIELDNAME = 'MATNR'.
    READ TABLE ITB1 INDEX RS_SELFIELD-TABINDEX.
    WRITE: / ITB1-MAKTX.
    ENDIF.
    ENDCASE.
    ENDFORM. "HANDLE_USER_COMMAND
    Regards

  • Mac Mini won't boot - can't select start-up disk!

    Hi all -
    mid way through an important project, my Mac mini 2.1 hung and I restarted using the power button. When it came back on I just get the grey screen with flashing folder & ?.
    I have tried booting from the install cd & it does this successfully, but when I access disk utility, all the options for repair etc. are greyed out. I can't even reinstall OSX because the startup disk isn't available as an option to write to.
    I've tried running the hardware test by booting and holding d. This came back with no errors.
    I've tried zapping the PRAM and done the SMC thing. No joy.
    Any ideas on how to make the mini see the startup disk?
    Thankyou so much!

    Cheers. Am trying it now, have partitioned a fresh drive and specified it to be bootable thru GUID, then I selected the Leopard dvd as the source and the partition as the destination in the RESTORE function of Disk Utility. Is this correct?
    Will look into Diskwarrior too. Many thanks.

  • Different Selections from same logical procedure (Mac OS 10.6.8)

    Hello!
    I encountered something that really made me think, but it feels wrong.
    Example:
    Create or open a document.
    Create a horizontal guide by dragging it from the ruler.
    Snap to guides must now be enabled.
    Now use the marquee tool to select the upper half of the picture, with the bottom of the selection snapping to the guide.
    Result:
    Some times it happens that the resulting selection is different than the (logically) same selection made from the lower half of the picture to the guide and then inverted.
    Effectively this means sometimes when I use a snapping guide as the limit of a selection from one direction it is not border-to-border with one drawn from the other side. Then a line of one pixel height 'behind' the guide is not selected by either one of these procedures.
    Expected Result:
    When the guide (which should have no width or height at all) forms the border of a selection from one side, it should be the inverse of a selection touching the guide from the other side.
    Sorry this is hard to explain, do you understand what I mean?
    Best regards
    Sebastian
    System Information
    Adobe Photoshop Version: 13.0 (13.0 20120315.r.428 2012/03/15:21:00:00) x64
    Operating System: Mac OS 10.6.8
    System architecture: Intel CPU Family:6, Model:30, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2660 MHz
    Built-in memory: 16384 MB
    Free memory: 6665 MB
    Memory available to Photoshop: 15438 MB
    Memory used by Photoshop: 78 %
    Image tile size: 1024K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 ATI-1.6.36
    OpenCL Version:
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 4850 OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Renderer ID: 16914951
    Video Card Memory: 494 MB
    Video Rect Texture Size: 8192
    Serial number: 92279708757474433360
    Application folder: Macintosh HD:Applications:Adobe CS6:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Hotel, 510,2G, 251,0G free
      Macintosh HD, 722,0G, 664,3G free
    Required Plug-ins folder: Macintosh HD:Applications:Adobe CS6:Adobe Photoshop CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: Macintosh HD:Applications:Adobe CS6:Adobe Photoshop CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.19243   66.492997
       AdobeAGM.framework   AdobeAGM   4.26.17.19243   66.492997
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636   66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.19243   66.492997
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.492997
       AdobeCoolType.framework   AdobeCoolType   5.10.31.19243   66.492997
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120201  
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602   66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206  
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.93   66.496052
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4  
       AdobePIP.framework   AdobePIP   6.0.0.1654  
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56  
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1  
       amtlib.framework   amtlib   6.0.0.75  
       boost_date_time.framework   boost_date_time   6.0.0.0  
       boost_signals.framework   boost_signals   6.0.0.0  
       boost_system.framework   boost_system   6.0.0.0  
       boost_threads.framework   boost_threads   6.0.0.0  
       Cg.framework   NVIDIA Cg     
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0  
       dvacore.framework   dvacore   6.0.0.0  
       dvamarshal.framework   dvamarshal   6.0.0.0  
       dvamediatypes.framework   dvamediatypes   6.0.0.0  
       dvaplayer.framework   dvaplayer   6.0.0.0  
       dvatransport.framework   dvatransport   6.0.0.0  
       dvaunittesting.framework   dvaunittesting   6.0.0.0  
       dynamiclink.framework   dynamiclink   6.0.0.0  
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1652  
       mediacoreif.framework   mediacoreif   6.0.0.0  
       PlugPlug.framework   PlugPlug   3.0.0.383  
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24   "6.0.0.24"
       wrservices.framework        
    Required plug-ins:
       3D Studio 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “Adaptive Wide Angle.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Average 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Camera Raw 7.1 (354), Copyright © 2012 Adobe Systems Incorporated - from the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Cineon 13.0 20120315.r.428 2012/03/15:21:00:00  ©2002-2012 Adobe Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0 20120315.r.428 2012/03/15:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “dicom.plugin”
       Difference Clouds 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Eazel Acquire 13.0 20120315.r.428 2012/03/15:21:00:00  ©1997-2012 Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 13.0 20120315.r.428 2012/03/15:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Entropy 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Flash 3D 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       JPEG 2000 13.0 20120315.r.428 2012/03/15:21:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from the file “Liquify.plugin”
       Matlab Operation 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Minimum 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0 20120315.r.428 2012/03/15:21:00:00  ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       NTSC Colors 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pixar 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Radiance 13.0 20120315.r.428 2012/03/15:21:00:00  ©2003-2012 Adobe Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated - from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated - from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Skewness 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Solarize 13.0 20120315.r.428 2012/03/15:21:00:00  ©1993-2012 Adobe Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Standard Deviation 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Summation 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       U3D 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “VanishingPoint.plugin”
       Variance 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0 20120315.r.428 2012/03/15:21:00:00  ©2006-2012 Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Standard Multiplugin.plugin”
    Optional and third party plug-ins:
       Alias PIX 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “Alias.plugin”
       Disable OpenGL Drawing 13.0 20120315.r.428 2012/03/15:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “DisableDragBoundingBox.plugin”
       ElectricImage 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Optional Multiplugin.plugin”
       HSB/HSL 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the file “Optional Multiplugin.plugin”
       Overscroll Always 13.0 20120315.r.428 2012/03/15:21:00:00  © 2004-2012 Adobe Systems Incorporated - from the file “Overscroll Always.plugin”
       SGI RGB 13.0 20120315.r.428 2012/03/15:21:00:00  ©2001-2012 Adobe Systems Incorporated - from the file “SGIRGB.plugin”
       SoftImage 13.0 20120315.r.428 2012/03/15:21:00:00  ©2000-2012 Adobe Systems Incorporated - from the file “SoftImage.plugin”
       Twain Acquire 13.0 20120315.r.428 2012/03/15:21:00:00  ©1992-2012 Adobe Systems Incorporated - from the file “TWAIN.plugin”
       Wavefront RLA 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe Systems Incorporated - from the file “RLA.plugin”
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    800 by 800 pixel file @ 300 DPI:
    Guide @ random position:
    800 by 800 pixel file @ 300 DPI:
    Guide @ 40,341 mm
    One selection drawn from the left, one from the right.
    The border of the selection should be on the same left-right-position, but differs about one pixel (these are all zoomed in).

  • Illustrator - Can't move guides when 2 windows open on same document

    This is a bug report - Adobe, file this thread appropriately.
    Tested with Adobe AI CC 2014:
    Open a document, create a guide.
    Open a second window on that same document. (1 document, 2 views of the same document)
    make the second view smaller, optionally, Hide Edges on that view.
    Return to the first window. Ctrl+Alt+; (unlock guides)
    Choose the selection tool and click the guide: nothing happens (THIS IS A BUG)
    Drag a marquee around the guide: guide is selected (OK)
    Nudge the guide: the guide moves (OK)
    Attempt to move the guide by clicking and dragging: not possible (BUG)
    Close the second window
    Repeat steps 5 - 9: Everything works as expected.
    Tested on Windows 7.
    Please fix in an update!
    Thank you,
    Tom

    Tom,
    I remember that it was almost impossible to find, so I have archived the URL.
    Edit: I just tried to click Search and then type bug report on adobe.com, and it turned up this,
    Adobe - Search: bug%20report
    so it is possible if you know how to do it already.

  • [JS CS3] How to select Selection Tool

    Hello,
    At the end of a script I wish to return to the Selection Tool (black arrow). Now the Text tool is active because the last thing the script did was to create a text frame. I do not see any property I can use to invoke the selection tool.
    Thanks,
    Tom

    The following script gives the distance between two parallel guides and places that distance on the clipboard. For whatever reason I always end up with the Text Tool as the active tool.
    var arrGuides = app.selection;
    var docUnits = findDocUnits();
    selectOnlyGuides();
    switch(arrGuides.length){
            case 0:
            alert("Please select two parallel guides. \r\rYou did not select any.");
            break;
            case 1:
            alert("Please select two parallel guides. \r\rYou selected only one.");
            case 2:
            twoGuidesSelected();
            break;
            default:
            alert("Please select only two parallel guides. \r\rYou selected three or more.");
            break;
            }//end switch
    arrGuides[0].select();   
    arrGuides[1].select(SelectionOptions.ADD_TO);
    //******FUNCTIONS************       
    function findDocUnits(){
        if(app.activeDocument.viewPreferences.horizontalMeasurementUnits !=app.activeDocument.viewPreferences.verticalMeasurementUnits){
            alert("The vertical and horizontal units must both be either inches or picas. Please check the Preferences and set them the same.");
            exit();
            }//end  if
        else{
        var currentUnits = "";
        switch(app.activeDocument.viewPreferences.horizontalMeasurementUnits){
            case MeasurementUnits.INCHES:
            case MeasurementUnits.INCHES_DECIMAL:
            currentUnits = "inches";
            break;
            case MeasurementUnits.PICAS:
            currentUnits = "picas";
            break;
            default:
            alert("Your document should be set in only inches or picas. Please check the Preferences.");
            break;
            }//end switch
        }//end else
    return currentUnits;
    }//end function findDocUnits
    function selectOnlyGuides(){
    try{
        for(var i = 0; i< arrGuides.length; i++){
            if(arrGuides[i].constructor.name != "Guide"){
                var alert1="Please select two parallel guides and no other elements.";
                alert(alert1);
                exit();
            }//end try
                }//end if constructor.name
        }//end for
    catch(e){
        alert(alert1);
        }//end catch
    }//end function selectOnlyGuides
    function twoGuidesSelected(){
        //testing to see if perpendicular guides have been selected by user.
        try{
         if(arrGuides.length==2&&(arrGuides[0].orientation==HorizontalOrVertical.vertical&&arrGuides[1].orientation==HorizontalOrVertical.horizontal)||(arrGuides[1].orientation==HorizontalOrVertical.vertical&&arrGuides[0].orientation==HorizontalOrVertical.horizontal)){
            alert("Please select two parallel guides. \r\rYou selected two perpendicular ones.");
            }//end  if; test for perpendicular guides
        //testing if only horizontal or vertical guides have been selected. If yes, tell difference.
         if(arrGuides.length==2&&(arrGuides[0].orientation==HorizontalOrVertical.vertical&&arrGuides[1].orientation==HorizontalOrVertical.vertical)||(arrGuides[0].orientation==HorizontalOrVertical.horizontal&&arrGuides[1].orientation==HorizontalOrVertical.horizontal)){
            var deltaDistance = Math.abs((arrGuides[0].location)-(arrGuides[1].location)).toFixed(4);
            alert("The distance between the two guides is: "+deltaDistance+" "+docUnits+".\r\rThis figure is now on your clipboard if you want to paste it.");
            var numToCopy = deltaDistance;
            copyNum(numToCopy);
        }//end if; test for parallel guides.
    }//end try
    catch (e){//do nothing
        }//end catch
    return arrGuides;
    }//end function twoGuidesSelected
    function copyNum(numToCopy){
    var framePropRecord = {contents:numToCopy.toString()}
    var myTextFrame = app.activeDocument.textFrames.add(framePropRecord);
    myTextFrame.parentStory.texts[0].select();
    app.copy();
    myTextFrame.select();
    myTextFrame.remove();
        }//end function numToCopy

  • Where is the Flex SDK 3.6 change log?

    Now we have almost 3 weeks after the release of Flex SDK 3.6 and I still can't find up-to-date release notes or a change log. The release notes and many other online resources still mention Flex SDK 3.5. Also I can't find a milestone in the bug database for filtering the affected issues.
    Does anybody know what's new in 3.6?

    I've looked for the changelog as well but could not find it either.
    You should check at Flex Bug Management System  https://bugs.adobe.com/flex/
    no registration is required to browse.
    In Project, select Flex SDK
    In Issue  select Bug (or any)
    In Milestone select Flex SDK 3.6(Release)
    And that's it , click on View and you'll see what's been changed.

  • Problem selecting a column

    According to the user guide:
    "1. Select any table cell so that the reference tabs are showing.
    2. To select a column, click its reference tab (above the column)."
    When I do that the whole table is selected. Is this a bug or am I doing something wrong?

    the image doesn't help me any. i can't select a column and centre it, without all cells in the table being centred.
    I can do it by manually selecting all the cells in the column, but I have 500 + cells to scroll down through and it takes too long.
    I just want to select a column or row and apply a format to it, and I can't do it.
    OK, just found out what my problem was. I had merged several cells to create a row near the top. this was preventing selecting anything below. i took out the merged cells and was able to select a column by clicking on the lower, darker shaded portion of the header.
    Message was edited by: justgetoutandride

  • Select statement for summing values in column?

    How to write a select statement for sap standard table which contains data  as given below
    col1        col2
    A     10
    A     20
    A     30
    B     50
    B     60
    C     70
    Need the output of select in  internal table as given below
    A     60
    B     110
    C     70
    Regards,
    Rachel

    Thanks for all the valuable input.
    Below I have used sum in select statement(check case 2"),but i am not getting required o/p.
    Kindly guide me.
    case1 :
    select aebeln aebelp bpackno  bmenge
    into corresponding fields of table itab
    from ( eslh as a inner join esll as b
    on bpackno = apackno )
    where a~ebeln = 6000000100
    and a~ebelp = 00010
    and a~packno = '0000001025'
    order  by aebeln aebelp b~packno .
    O/p for the above .
    ebeln                       ebelp         packno                             menge
    6000000100     00010     0000001025              6.000
    6000000100     00010     0000001025               5.000
    6000000100     00010     0000001025              2.000
    6000000100     00010     0000001025              1.000
    6000000100     00010     0000001025              2.000
    case2:
    select aebeln aebelp bpackno  sum( bmenge )
    into corresponding fields of table itab
    from ( eslh as a inner join esll as b
    on bpackno = apackno )
    where a~ebeln = 6000000100
    and a~ebelp = 00010
    and a~packno = '0000001025'
    group by aebeln aebelp b~packno
    order  by aebeln aebelp b~packno .
    6000000100     00010     0000001025     0.000
    Edited by: Rachel on Nov 25, 2008 11:45 AM
    Edited by: Rachel on Nov 25, 2008 11:46 AM

Maybe you are looking for