Please suggest on BexAnalyser

Hi All,
We have workbook with 2 queries inserted, facing a problem with overlapping the results from 1st query to below one if we open the nodes in Hierarchy. We need to find a solution to dynamically push the below query down with respect to above query result area.
Following is the one solution I found from SDN,writing code in  SAPBEXonRefresh subroutine in the workbook VB.
But even after adding a subroutine in user defined module not able to achive the required solution ,whenever we refresh or open a new query  SAPBEXonRefresh subroutine is not executed dynamically.
Thanks & Regards
Sameer Khan

Hi,
Check below links:
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/903c9530-52be-2a10-7d97-a48dc8082905
https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a0f3057f-a2f1-2a10-d091-ffb7fd359ce6
Thanks,
Ajay

Similar Messages

  • Pluginspage is not working in embed script in firefox 36 version. Actually wanna downlaod jre 1.8 . It was working on firefox 22 version. Please suggest

    <pre><nowiki>function createEmbed(divID, context, locale, server,client)
    var d = document.getElementById(divID);
    d.innerHTML = '<EMBED type="application/x-java-applet;version=1.8" CODE="com.cybertrust.webrao.WebRAOApplet.class"'+
    'JAVA_CODEBASE="'+context+'" '+
    'ARCHIVE="WebRAO.jar" '+
    'NAME="WebRAOApplet" '+
    'MAYSCRIPT="true" '+
    'pluginspage="http://javadl.sun.com/webapps/download/GetFile/1.8.0_31-b13/windows-i586/xpiinstall.exe"'+
    'L="'+locale+'" ' +
    'PinTimeout="'+server+'"'+
    'ClientTimeout="'+client+'"'+
    'separate_jvm="true"'+
    'java_version="1.8.0_31" />';
    }</nowiki></pre>
    We are using the above script. Defined the application/x-java-applet;version=1.8 So. as per the oracle documentation, Firefox has to check whether java version 1.8 or above is available and then run the applet thereby opening the run window and finally the applet window has to open. So the expectation is if 1.8 jre is not available it has to trigger the pluginspage attribute thereby redirecting to the jre autodownload url mentioned in pluginspage. This code use to work for firefox 21. Not sure why it will not work with any of the versions above 21. Right now we are trying with firefox 36. The same code works with IE 11 also. Please suggest is there any solution for the same.

    There are some updates happening to [https://www.mozilla.org/en-US/plugincheck/]
    However to further investigate I would suggest troubleshooting the installation of Java:
    *[http://kb.mozillazine.org/Java#Java_Deployment_Toolkit_plugin]
    *[https://support.mozilla.org/en-US/kb/troubleshoot-issues-with-plugins-fix-problems]
    Or also checking with Mozillazine or stackoverflow.com for compatibility and development troubleshooting is a good place to also look.

  • TS1398 I am unable to connect wifi on my phone 4s since last 2 weeks... I am living in shanghai and did not have this issue since 2 weeks... iPad works fine... Please suggest some measures... Tried the on off reset settings etc.

    I am unable to connect wifi on my phone 4s since last 2 weeks... I am living in shanghai and did not have this issue since 2 weeks... iPad works fine... Please suggest some measures... Tried the on off reset settings etc. but no luck ...
    In fact after updating the software to the latest version I am having more of this... Sometimes the wifi button freezes an I can't even slide it to on / off...
    Thanks

    Noooo! Actually I too had d same prob wit my iPhone 4S. When I connect to my wifi network it won't get connected or it wil be grey scaled! I took it to d istore and since I had warranty they replaced my IPhone. It iPad charger has high volt than ur iPhone charger so when u connect wit it, there is a chance where large amount of current passes thru ur iPhone. So for sure it wil damage ur motherboard and its parts! Many said that iOS 6 or 6.0.1 or 6.1 was d reason for tis wifi prob! But apple never made its mistake wit it's software. If and only if u hav hardware prob u wil hav these sort of wifi prob Bluetooth prob! So best way s to replace ur iPhone!

  • Please suggest a correction in the code: Urgent

    I am capturing the Material Document No., Material No., Material Description, Quantity etc. into a main_table in my code so as to write/print labels containing GRN details (movement type '105') using se38. These labels are to be pasted on the material received in stores, the exact requirement is 100% material identification sticker on all items to maintain FIFO. Obviously the no. of these stickers, to be printed, shall solely depend on the Quantity of a particular material received.
    I have written the following piece of code to print the captured information of GRN. The problem is that my code is unable to track the change in material document number. For example if I have 10 nos of quantity for a particular material say 1001 and 5 no.s of quantity for a subsequent material 1002. I should get 10 labels for 1001 and 5 for 1002 but my code is giving me 10 labels for 1002 also.
    Hope you got it.
    Please suggest the necessary correction on the following code.You can execute the following code and get a real time feeling of my problem.
    REPORT  ZMM_GRN_LABEL_REPORT_38.
    TABLES : MKPF, MSEG, MAKT.
    DATA : BEGIN OF I_MKPF OCCURS 0,
           MBLNR LIKE MSEG-MBLNR,
           BLDAT LIKE MKPF-BLDAT,
           MJAHR LIKE MKPF-MJAHR,
           END OF I_MKPF.
    DATA : BEGIN OF I_MSEG OCCURS 0,
           MBLNR LIKE MSEG-MBLNR,
           MATNR LIKE MSEG-MATNR,
           EBELN LIKE MSEG-EBELN,
           LIFNR LIKE MSEG-LIFNR,
           MENGE LIKE MSEG-MENGE,
           END OF I_MSEG.
    DATA : BEGIN OF I_MAKT OCCURS 0,
           MATNR LIKE MAKT-MATNR,
           MAKTX LIKE MAKT-MAKTX,
           END OF I_MAKT.
    DATA : BEGIN OF I_LFA1 OCCURS 0,
           LIFNR LIKE LFA1-LIFNR,
           NAME1 LIKE LFA1-NAME1,
           END OF I_LFA1.
    DATA: BEGIN OF MAIN_TABLE OCCURS 0,
          MBLNR LIKE MSEG-MBLNR,
          MATNR LIKE MSEG-MATNR,
          BLDAT LIKE MKPF-BLDAT,
          MAKTX LIKE MAKT-MAKTX,
          MENGE LIKE MSEG-MENGE,
          MJAHR LIKE MSEG-MJAHR,
          EBELN LIKE MSEG-EBELN,
          LIFNR LIKE MSEG-LIFNR,
          NAME1 LIKE LFA1-NAME1,
          END OF MAIN_TABLE.
    DATA : N LIKE MSEG-MENGE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: S_MBLNR FOR MSEG-MBLNR.
    PARAMETERS : P_GJAHR LIKE MSEG-GJAHR.
    SELECTION-SCREEN END OF BLOCK B1.
    select MBLNR MJAHR BLDAT
    into corresponding fields of
    table I_MKPF
    from Mkpf
    where
    MBLNR in S_MBLNR and
    MJAHR EQ p_GJAHR.
    LOOP AT I_MKPF.
    MAIN_TABLE-MBLNR = I_MKPF-MBLNR.
    MAIN_TABLE-MJAHR = I_MKPF-MJAHR.
    MAIN_TABLE-BLDAT = I_MKPF-BLDAT.
    APPEND MAIN_TABLE.
    CLEAR MAIN_TABLE.
    ENDLOOP.
    IF I_MKPF[] IS NOT INITIAL.
    SELECT MBLNR MATNR EBELN LIFNR MENGE
    INTO CORRESPONDING FIELDS OF
    TABLE I_MSEG FROM
    MSEG
    FOR ALL ENTRIES IN I_MKPF
    WHERE
    MBLNR = I_MKPF-MBLNR.
    ENDIF.
    LOOP AT I_MSEG.
    LOOP AT MAIN_TABLE WHERE MBLNR = I_MSEG-MBLNR.
    MAIN_TABLE-MATNR = I_MSEG-MATNR.
    MAIN_TABLE-EBELN = I_MSEG-EBELN.
    MAIN_TABLE-LIFNR = I_MSEG-LIFNR.
    MAIN_TABLE-MENGE = I_MSEG-MENGE.
    MODIFY MAIN_TABLE INDEX SY-TABIX.
    ENDLOOP.
    ENDLOOP.
    IF I_MSEG[] IS NOT INITIAL.
    SELECT MATNR MAKTX
    INTO CORRESPONDING FIELDS OF
    TABLE I_MAKT FROM MAKT
    WHERE
    MATNR = I_MSEG-MATNR.
    ENDIF.
    LOOP AT I_MAKT.
    LOOP AT MAIN_TABLE WHERE MATNR = I_MAKT-MATNR.
    MAIN_TABLE-MAKTX = I_MAKT-MAKTX.
    MODIFY MAIN_TABLE INDEX SY-TABIX.
    ENDLOOP.
    ENDLOOP.
    IF I_MSEG[] IS NOT INITIAL.
    SELECT LIFNR NAME1
    INTO CORRESPONDING FIELDS OF
    TABLE I_LFA1 FROM LFA1
    FOR ALL ENTRIES IN I_MSEG
    WHERE
    LIFNR = I_MSEG-LIFNR.
    ENDIF.
    LOOP AT I_LFA1.
    LOOP AT MAIN_TABLE WHERE LIFNR = I_LFA1-LIFNR.
    MAIN_TABLE-NAME1 = I_LFA1-NAME1.
    MODIFY MAIN_TABLE INDEX SY-TABIX.
    ENDLOOP.
    ENDLOOP.
    ******************************Problem lies somewhere here
    N = MAIN_TABLE-MENGE.
    DO N TIMES.
    SORT MAIN_TABLE BY MBLNR.
    LOOP AT MAIN_TABLE.
    WRITE :/5 MAIN_TABLE-MBLNR.
    WRITE :/5 MAIN_TABLE-MAKTX, 50 MAIN_TABLE-MATNR.
    ENDLOOP.
    ENDDO.

    Hello,
    Take one new table with three fields ie. it_no with mblnr, matnr and menge.
    collect data to new table form main_table.
    and replace your doubtful code by
    SORT MAIN_TABLE BY MBLNR.
    loop at it_no.
    N = it_no-MENGE.
    DO N TIMES.
    LOOP AT MAIN_TABLE where matnr = it_no-matnr.
    WRITE :/5 MAIN_TABLE-MBLNR.
    WRITE :/5 MAIN_TABLE-MAKTX, 50 MAIN_TABLE-MATNR.
    ENDLOOP.
    ENDDO.
    endloop.
    regards,
    Naimesh

  • Hi,please suggest me some games for Compaq CQ62-105TU Laptop.Can I upgrade my laptop's graphics card

    Hi,please suggest me some games for Compaq CQ62-105TU Laptop.Can I upgrade my laptop's graphics card

    Unfortunately, you cannot upgrade the processor or graphics card on this laptop.
    Here is a page from CPU-World that gives the specs for your processor:
    http://www.cpu-world.com/CPUs/Bobcat/AMD-E%20Series%20E2-1800.html
    You will see down near the bottom of the page that it is not upgradeable. Some laptops come with the processor soldered to the motherboard. Almost all laptop graphics are this way. The only way that you would be able to get a faster processor/better graphics for this laptop would be to purchase a brand new motherboard. You can do an Ebay search for 'HP G6 motherboard' to see what average prices are if you want to go this route.

  • Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the rows? Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    Hello Anybody, I have a question. Can any of you please suggest me how to make an xml file from the database table with all the records?
    Note:- I am having the XSD Schema file and the resulted XML file should be in that XSD format only.

    The Oracle documentation has a good overview of the options available
    Generating XML Data from the Database
    Without knowing your version, I just picked 11.2, so you made need to look for that chapter in the documentation for your version to find applicable information.
    You can also find some information in XML DB FAQ

  • My apple id is not working in imessage or facetime. I tried to rest password still unable to open any. Though i can download stuff from istore.Only facetime and imessage not working. Please suggest.

    I am using Ipad3 and OS is upgraded. I tried to reset password still unable to open imessage and facetime. I am able to download from istore though. Tried everything i knew. Please suggest!

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

  • Hi, We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1. When we try to download a file(.pvw file) in that application safari throws "Download failed" error. Please suggest what needs to be done.

    Hi,
    We have an application  built using HTMl 5 and Javascript running on IPad2, iOS5.1 Safari 5.1.
    When a file url is clicked instead of asking for Save or Open or Cancel options, the file gets opened on IPad by default.
    Is this default behaviour which cannot be changed or can it be configured to ask user preference?
    When we try to download a file(.pvw file -> a model file) in the above application, safari throws "Download failed" error.
    Please suggest what needs to be done.
    Regards,
    Pramod

    Safari on an iPad in general does not allow downloading of files. That's a safety precaution in the iOS SDK to keep unauthorized content off of iOS devices. Safari will open from the web site file types that it can handle, but direct downloading isn't normal behavior, and I don't believe the behavior can be changed, though you can try asking in the developer forum, either here or the one to which you have access as a member of Apple's iOS developer program.
    Regards.

  • HT2480 whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    whenever i connect my iphone to pc while syncing mail in itunes a pop up" the connection is not available.outlook must be online or connected  to complete this action" please suggest me to solve this or bisable.

    Cached exchange mode was already marked so that was not the issue.
    I have done all the usual of creating a new profile, reinstalling Outlook etc but nothing seemed to work. I also tried going back to Outlook 2007 and reinstalling Windows but same problem.
    However, I am not sure if it is connected but I was useing the option in MS Live Sync to synchronise Office settings which I turned off recently and now no longer have the issue. Unfortunately I cannot remember when in the process I did this so cannot be
    sure it was responsible - anyone else found this?

  • Is there any way to create BHO.dll (Browser Helper Object) for Mozilla. I have created done this with IE7. I like to migrate this to Mozilla. Please suggest me

    I have done a project to capture URL details and based on the data I need to do business process. I have implemented this project in Interner explorer using BHO (Browser Helper Object). I need to migrate this project to Mozilla. Please suggest me.

    Firefox doesn't use BHO like IE.
    For Firefox (and Google Chrome) you will have to create extensions to add extra features.
    *https://developer.mozilla.org/en/Extensions
    *https://developer.mozilla.org/en/Building_an_Extension

  • Hi, I recently upgraded my xcode to 5.1, my project is running well in ios 7.0,6.0, But in ios 7.1 i'm getting error like"iOS Simulator failed to install the application". Can anybody please suggest the solution for it.

    My project is not running in ios 7.1 simulator i'm getting error like "iOS Simulator failed to install the application". Please suggest a solution for it.

    We aren't Apple, just users like you. Have you tried a reset? Hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • HT202159 while downloading new Mountain lion OS i am getting "An error while downlaoding" , since i have already purchased the same & am not able to dowload the same, please suggest a solution

    while downloading new Mountain lion OS i am getting "An error while downlaoding" , since i have already purchased the same & am not able to dowload the same, please suggest a solution

    Disable anti virus software and try turning off the Firewall in System Preferences > Security & Privacy > Firewall.

  • HT1222 There is error showing while updating my iPad 2 software to IOS 6.1. Please suggest me what should I do?

    There is error showing while updating my iPad 2 software to IOS 6.1. Please suggest me what should I do?

    You need to tell exactly what is happening. What does the error say?

  • In ecc 6.0, Please suggest me.

    Please suggest me the logic.
    While looping the internal table , Loop at gt_itab INTO wa_itab
    For each 10th record, say for the first if 4th field (say ex : 99999) and 6th field (ex : 6055 ), are same...for those set of all records...
    I should cover top and bottom with reference record
    01;;;it's 4th field value;; it's 6th field value;;;.
    50;;;it's 4th field value;; it's 6th field value;;;.
    my itab is as
    Loop at gt_itab INTO wa_itab
    10;2008;1;99999;;6055;MTESTEDI6;;PP
    20;2008;99999;;6055;MTESTEDI6
    20;2008;99999;;6055;MTESTEDI6
    20;2008;99999;;6055;MTESTEDI6
    30;2008;99999;;6055;3;09292008160000
    10;2008;1;99999;;6055;MTESTEDI7;;PP
    20;2008;99999;;6055;MTESTEDI7
    20;2008;99999;;6055;MTESTEDI7
    20;2008;99999;;6055;MTESTEDI7
    30;2008;99999;;6055;3;09292008160000
    10;2008;1;999998;;6055;MTESTEDI55;;PP
    20;2008;999998;;6055;MTESTEDI55
    20;2008;999998;;6055;MTESTEDI55
    20;2008;999998;;6055;MTESTEDI55
    30;2008;999998;;6055;3;09292008160000
    10;2008;1;9999988;;6038;MTESTEDI56;;PP
    20;2008;9999988;;6038;MTESTEDI56
    20;2008;9999988;;6038;MTESTEDI56
    20;2008;9999988;;6038;MTESTEDI56
    30;2008;9999988;;6038;3;09292008160000
    Say for this itab I have to make as
    01;;;99999;; 6055.
    10;2008;1;99999;;6055;MTESTEDI6;;PP
    20;2008;99999;;6055;MTESTEDI6
    20;2008;99999;;6055;MTESTEDI6
    20;2008;99999;;6055;MTESTEDI6
    30;2008;99999;;6055;3;09292008160000
    10;2008;1;99999;;6055;MTESTEDI7;;PP
    20;2008;99999;;6055;MTESTEDI7
    20;2008;99999;;6055;MTESTEDI7
    20;2008;99999;;6055;MTESTEDI7
    30;2008;99999;;6055;3;09292008160000
    50;;;4th field value(99999);; 6th field value(6055).
    01;;;4th field value;; 6th field value.
    10;2008;1;999998;;6055;MTESTEDI55;;PP
    20;2008;999998;;6055;MTESTEDI55
    20;2008;999998;;6055;MTESTEDI55
    20;2008;999998;;6055;MTESTEDI55
    30;2008;999998;;6055;3;09292008160000
    50;;;4th field value;; 6th field value.
    01;;;4th field value;; 6th field value.
    10;2008;1;9999988;;6038;MTESTEDI56;;PP
    20;2008;9999988;;6038;MTESTEDI56
    20;2008;9999988;;6038;MTESTEDI56
    20;2008;9999988;;6038;MTESTEDI56
    30;2008;9999988;;6038;3;09292008160000
    50;;;4th field value;; 6th field value.
    Please suggest me the logic.  Help me.
    THANKS IN ADV.

    How can I use
    two at new in the below stmt ?
      LOOP AT gt_869_input_rec_final INTO wa_869_input_rec.
        IF  wa_869_input_rec-rec_type  = '10'
        AND wa_869_input_rec-selection = 'PP'.
          CLEAR : lv_canc_date, count.
          REFRESH :  r2_shipto, r3_vbeln.
    *------As we are getting sorted set of records in file by edi_tr_par brd_idfr
    *-----and based on EDI team request, appending '00' record.
          ON CHANGE OF wa_869_input_rec-edi_tr_par OR wa_869_input_rec-brd_idfr.
            wa_870_output_rec-rec_type   = '00'.
            wa_870_output_rec-edi_tr_par = wa_869_input_rec-edi_tr_par.
            wa_870_output_rec-brd_idfr   = wa_869_input_rec-brd_idfr.
            APPEND wa_870_output_rec TO gt_870_output_rec.
            CLEAR : wa_870_output_rec.
          ENDON.

  • Please suggest problem in increasing height repeating frames

    Hi,
    in my report normally up to 100 are printed. i setted the vertical elasticity as expand and horizontal as fixed.
    but while priting, in vertical, it is contracting if date is too short enough and expanding when dat is large enough. But what my requirement i want to specify the height of each field in repeating frame fixed. i.e. 3 centimeters and it should be same for all records printed on page and on each logical page and i want to print maximum 8 records per page becoz my print page size can hold maximum 8 records and each record at 4 lines. And even if the data is short enough it must not be contracted, if data is one line,and the remaining space that is in 3 cemtimers should be left blank and it must to go to second record. That is in fixed heigt of record repeart frame i want to print the data. If data goes more than 3 centimetres then date must be truncated. I did not find any height to set this property in Repeating frame property.
    please suggest solution'
    thanks in advance
    prasanth a.s

    Hi Prasanth,
    Enlarge the Repeating Frame height to say, 3 centimeters in the layout.
    Set the Vertical (& Horizontal as well) Elasticity of the repeating Frame as Fixed.
    In the Property Palette of Repeating Frame, set Maximum Records Per Page to 8 and Set Page Break after property to Yes.
    This will solve ur problems.
    Have a nice day...
    Raja Angamuthu B

Maybe you are looking for

  • Nokia c5-03 is having really bad features. Can any...

    Hi, My nokia mobile c5-03 is not supporting the following features and i bought this mobile on 2nd April 2011 from nokia priority shop in Bangalore, Karnataka: 1) No marking option available for selecting several things for selected ones. 2) No Sendi

  • Photoshop CS3 Batch fails to rename - saves as original name for every file?

    I have created the following action: Open (File from folder on desktop - original is JPG) Image Size (resize image to 1024xXXX) Save (Save as PNG) Close I run the action via Batch: Default Actions PNG 1024xXXX (action created above) Source folder on

  • How to double-click on ipad

    hello, does someone know how to make double-click with ipad? thanks

  • My add on icons have dissappeared

    i have a few add-ons, but they are not showing on the bottom right of my screen like they did a few minutes ago. where are they, how can i put them back there?

  • Export audio for itunes other than aiff?

    I'm exporting some audio, dv based and ultimately want it in itunes (v7) both as an apple lossless and as an aac. I can export from fcp using quicktime conversion to both apple lossless and aac, audio only, .movs. For some reason I cannot get itunes