How to change the videochat layout in FP 10?

Hello!
I´m developing an app that display the video screens in random positions on the stage. I already made some changes on the FP9 source code to achieve that and worked pretty well. but to be able to use p2p and speex, I need to move on to FP10, where I only have the FP10 swc.
Is there a way to change the layout for FP10?
more than glad for any (positive ) answer
Bruno

Hi ,
Sorry for the delay, as the thanksgiving holidays are on these days. I got a chance to look at your problem and there are two issues
a) You need to specify some width and height to WebcamSubscriber . This was not required earlier, but due to some of our recent changes , it is needed but the subsequent example was not updated for the check on our part.
b) The UserDescriptor warning doesnot do any harm and all you need to do is some type casting.
I am attaching the updated WebCamera code here. The code is just for some reference. You might hit some exception in VideoComponent but in case you are using player 9 source I can give you the fix for that source file also. These changes will be updated in the next SDK version releasing very soon. Thanks for pointing out the fix needed for the example.
Instead of using repeaters , you can design your own layout, this code just points how to use multiple subscribers.
Hope this helps.
Thanks
Hironmay Basu
WebCamera.mxml
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
                    xmlns:rtc="AfcsNameSpace">
     <mx:Script>
          <![CDATA[
               import com.adobe.rtc.sharedManagers.descriptors.UserDescriptor;
               import com.adobe.rtc.messaging.UserRoles;
               import com.adobe.rtc.events.ConnectSessionEvent;
               import mx.controls.Button;
               import com.adobe.coreUI.controls.CameraUserBar;
               import mx.core.UITextField;
               import mx.controls.LinkButton;
               import com.adobe.rtc.events.SharedPropertyEvent;
               import com.adobe.rtc.sharedModel.SharedProperty;
               import com.adobe.rtc.collaboration.WebcamSubscriber;
               import mx.containers.VBox;
               import com.adobe.rtc.events.UserEvent;
               import com.adobe.rtc.sharedManagers.StreamManager ;
               import com.adobe.rtc.sharedManagers.descriptors.StreamDescriptor ;
                    private var currentSubscriber:WebcamSubscriber ;
                    private var sharedProperty:SharedProperty ;
This example shows how the camera component can be used with a publisher and a
number of subscribers. The publisher has a big view while subscribers have a small view.
A shared property is used to pass the stream to the publisher's user interface.
Every user is provided with play and pause handlers.
                    private function onCreationComplete():void
                         cSession.roomManager.autoPromote = true ;
                         cSession.roomManager.guestsHaveToKnock = false ;
                         sharedProperty = new SharedProperty();
                         sharedProperty.isSessionDependent = true ;
                         sharedProperty.sharedID = "webcamShare2" ;
                         sharedProperty.connectSession = cSession ;
                         sharedProperty.subscribe();
                         sharedProperty.addEventListener(SharedPropertyEvent.CHANGE,onChan ge);
                         cSession.userManager.addEventListener(UserEvent.USER_REMOVE,onUse rRemove)
@private
                    protected function onUserRemove(p_event:UserEvent):void
                         if ( sharedProperty.value && p_event.userDescriptor.userID == sharedProperty.value[0]) {
                              sharedProperty.value = [] ;
When the main big stream changes, all users can view it via the sharedProperty.
                    private function onChange(p_evt:SharedPropertyEvent):void
                         if ( currentSubscriber != null ) {
                              clickedContainer.removeChild(currentSubscriber);
                              currentSubscriber.close();
                              currentSubscriber = null ;
                         if ( sharedProperty.value == null || sharedProperty.value.length == 0 ) {
                              return ;
                         currentSubscriber = new WebcamSubscriber();
                         currentSubscriber.connectSession = cSession ;
                         currentSubscriber.subscribe();
                         currentSubscriber.webcamPublisher = webCamPub ;
                         currentSubscriber.publisherIDs = sharedProperty.value ;
                         currentSubscriber.addEventListener(UserEvent.USER_BOOTED,onCleare d);
                         currentSubscriber.addEventListener(UserEvent.STREAM_CHANGE,onCame raPause);
                         clickedContainer.addChild(currentSubscriber);
                         invalidateDisplayList();
If the big image is stopped, clear it.
                    private function onCleared(p_evt:UserEvent):void
                         if ( cSession.userManager.myUserRole == UserRoles.OWNER ) {
                              sharedProperty.value = [] ;
Clicking on the small image below makes it large.
                    private function onClick(p_evt:MouseEvent):void
                         if ( (p_evt.currentTarget is WebcamSubscriber) &&  !(p_evt.target.parent is CameraUserBar)) {
                              sharedProperty.value = (p_evt.currentTarget as WebcamSubscriber).publisherIDs;
                    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
                         super.updateDisplayList(unscaledWidth,unscaledHeight);
                         if ( currentSubscriber ) {
                              currentSubscriber.percentWidth = 100 ;
                              currentSubscriber.percentHeight = 100 ;
Handler for a user stopping the camera.
                    private function onBooted(p_evt:UserEvent):void
                         if ( (p_evt.currentTarget is  WebcamSubscriber) && (p_evt.userDescriptor.userID == cSession.userManager.myUserID || cSession.userManager.myUserRole == UserRoles.OWNER)) {
                              webCamPub.stop();
                              if ( (p_evt.currentTarget.parent as VBox).getChildAt(1) is Button ){
                                   ((p_evt.currentTarget.parent as VBox).getChildAt(1) as Button).label = "Start" ;
                              if ( sharedProperty.value && (sharedProperty.value as Array)[0] == p_evt.userDescriptor.userID ) {
                                   sharedProperty.value = [] ;
Handler for a user pausing the camera.
                    protected function onCameraPause(p_evt:UserEvent):void
                         var userStreams:Array = cSession.streamManager.getStreamsForPublisher(p_evt.userDescriptor.userID,StreamManager.C AMERA_STREAM);
                         if (userStreams.length == 0) {
                              trace("onCameraPause: no userStreams");
                              return;
                         for (var i:int = 0; i< userStreams.length ; i++ ) {
                              if (userStreams[i].type == StreamManager.CAMERA_STREAM ) {
                                   break;
                         var streamDescriptor:StreamDescriptor = userStreams[i];
                         if ( streamDescriptor.streamPublisherID == cSession.userManager.myUserID ) {
                              cSession.streamManager.pauseStream(StreamManager.CAMERA_STRE AM,!streamDescriptor.pause,streamDescriptor.streamPublisherID);
Handler for the stop and start buttons.
                    private function onBtnClick(p_evt:MouseEvent):void
                         if ( p_evt.currentTarget.label == "Start" ) {
                              webCamPub.publish();
                              p_evt.currentTarget.label = "Stop" ;
                         }else if (p_evt.currentTarget.label == "Stop" ){
                              webCamPub.stop();
                              p_evt.currentTarget.label = "Start" ;
          ]]>
     </mx:Script>
     <!--
          You would likely use external authentication here for a deployed application;
          you would certainly not hard code Adobe IDs here.
     -->
     <rtc:AdobeHSAuthenticator
          id="auth"
          userName="AdobeIDusername"
          password="AdobeIDpassword"  />
     <rtc:ConnectSessionContainer id="cSession" authenticator="" width="100%"
           height="100%" roomURL="YourPersonalRoomUrl" >
           <mx:Panel title="Webcam Example" width="100%" height="100%"
                       paddingTop="10" paddingLeft="10" paddingRight="10" paddingBottom="10" creationComplete="onCreationComplete()">
                 <rtc:WebcamPublisher id="webCamPub" width="10" height="5"/>
                 <mx:VBox width="100%" height="100%" id="clickedContainer"/>
             <mx:HBox horizontalGap="10" verticalGap="15" paddingLeft="10" paddingTop="10" paddingBottom="10" paddingRight="10" width="100%" height="25%">
                 <mx:Repeater id="rp" dataProvider="{cSession.userManager.userCollection}" width="100%" height="100%" >
                          <mx:VBox width="100%" height="15%" horizontalAlign="center" horizontalGap="5">
                                <rtc:WebcamSubscriber webcamPublisher="" width="100%" height="100%" publisherIDs="{[(rp.currentItem as UserDescriptor).userID]}" click="onClick(event)" userBooted="onBooted(event)" streamChange="onCameraPause(event)"/>
                                <mx:Button  label="Start"  click="onBtnClick(event)"  visible="{(rp.currentItem as UserDescriptor).userID==cSession.userManager.myUserID}" />
                          </mx:VBox>
                 </mx:Repeater>   
             </mx:HBox>
    </mx:Panel>
     </rtc:ConnectSessionContainer>
</mx:Application

Similar Messages

  • How to change the default Layout Of the Error Page (to hide Home link)?

    How to change the default Layout Of the Error Page (to hide Home link)?
    If a user want to view some page that he/she don't have access to view it, a error page with this message will be displayed.
    "You do not have permission to perform this operation. (WWC-44131)"
    The error page, have in the Upper right page, Home link and Help link.
    My question is, How to Hide HOME link and HELP link in the Page?
    I try to find the template of the page, but failed to do that.
    Can anybody help?..it urgent.
    Thanks.

    Modifying the error page is not supported in the current release of Portal (9.0.2). You will be able to do this in the upcoming 9.0.2.6 release, planned for the end of May.
    Regards,
    Jerry
    PortalPM

  • How to change the standard layout sets in ALV List

    Hi Gurus,
    How to change the standard layout sets in ALV list.
    Is there any standard program ? or specific way to acheive this?
    Kindly drop some clues?Every valuable clues rewarded more points........
    Thanks in Advance,
    Dharani

    Hello Dharani
    All required function modules can be found in function group SLVC (assuming that you are using OO-based ALV or, at least, fm REUSE_ALV_GRID_DISPLAY_LVC):
    LVC_VARIANT_DEFAULT_GET (Read default display variant (description only, w/o field catalog))
    LVC_VARIANT_EXISTENCE_CHECK
    LVC_VARIANT_F4 (Display variant selection dialog box)
    LVC_VARIANT_SELECT (Read a display variant)
    For a sample report using LVC_VARIANT_DEFAULT_GET have a look at BCALV_GRID_10.
    Regards,
      Uwe

  • How to change the page layout to fit 2 portlets in a row?

    Hi,
    I am very new to Plumtree portal, please be gentle.
    We are in the trial and design phase for our company's portal and we are tring Plumtree now.
    We selected the page layout as one narrow panel and one wide panel. In the wide panel, I have a wide portlet to fit the whole row on the top, then we want to divide to 2 columns under the first portlet as the middle section of the page, so that we can place 1 chart on left side and 1 chart on right side of the wide panel.
    HOW TO DO IT?
    also, now I developed 2 testing portlets in vb.net. Top one is the wide one. The 2nd one is a chart, when I deployed it in the page, the chart overlaps the top portlet! HOW TO FIX IT?

    By default you can only lay out the portlets in the assigned columns and cannot span, but you could try cheating (I don't know what the impacts of this might be, though, so be careful)
    Change the layout to a 2-column that also has a content canvas (darker gray box). For your portlet you want to have span both columns, set it up as a content canvas (you may have to re-register it). I think that might work, but... honestly, I don't know enough about content canvas settings to konw what might happen down the road. I'm hoping "a portlet is a portlet is a portlet"
    Like this...
    [         content canvas         ] <-- put your portlet here
    [ narrow ] [         wide         ]
    It also sounds like you're using gridlayout on your .NET portlet - you'll want to change that to use flow. Grid will use absolute positioning (bad here). I'd suggest reading the .NET web consumer install / developer PDF for additional info on how to get ASP.NET portlets to work.

  • HT1492 Does anyone knows how to change the keyboard layout in single user mode, please ?

    Hello,
    The question is in the title.
    Thank you.

    The only way you might do it is use one of the Unix editors to edit the plist file it gets the settings from once it boots in the GUI mode.  'vi' is present in all Macs, and you might have pico, nano, emacs, or ed depending on what was installed. The keyboard layout while in single user mode itself I think is generic to where the Mac was bought and what keyboard was ordered with it, when it came from the store.  Since you posted in the 10.3 or earlier forum, chances are if this has changed, few people would know for certain.  If you have a newer Mac, say 2006 or later, you should really post in the correct forum:
    http://discussions.apple.com/docs/DOC-2463

  • How to change the layout of a category view

    I don't know how to change the layout of a category. I want to put 3 image's behind each other followed by some text, like a table with 4 columns. Instead of puting then in 4 rows

    larsprevo
    The category 'view' of items/folders uses the default style of the content area it is defined in (shared categories use the default shared style). Edit the default style to change the font/color of the items/folders returned within the category 'view'. Unfortunately, you don't have the ability to control the layout(like folder regions) - they always display in rows.
    Added an enhancement request for a feature that would allow you to control the display of items/folders in a category/perspective: 1828423

  • How to change the layout of the desktop before you login as a User into iPS.

    I am trying to change the layout of the anonymous user desktop. I know how to change the layout after i login as a User. All the thin channels except one get lined up in the first column of a thin-thick-thin layout.
    How to change that?
    Any help is greatly appreciated.
    Hugo Victor

    Go to available channel list and the select show advanced options, you should see the row and column attributes for the channel. Set it to your choice ..

  • How can i change the print layout in i cal, how can i change the print layout in i cal

    Im a franklin planner user and would like to convert to ical.  How can I change the print layout in ical so I can print task on the left side and calendar events on the right side.

    Hi Mike3232,
    I'm afraid that it's not possible to adjust the print layout in iCal. Maybe you should think about changing to another program (BusyCal, etc.) that has the option to print the layout you want?
    Good luck!
    Michaël Duwyn

  • How to Change the Development Class from $TMP to YABAP in Layout

    Hi all,
    How to Change the Development Class from $TMP to YABAP in Layout( SE71).
    Thanks & Regards,
    N.L.Narayana

    Hi,
    it is possible with SE03. you just click on Change <b>Object Directory Entries</b> under the tree menu <b>Object directory</b>, and then enter in the last column of table control
    Check the check box and enter FORM and formname,
      R3TR FORM SAPscript form 
    then execute it.
    then you will be able to change it to PACKAGE from $TMP
    regards
    vijay

  • How to change the reconciliation account in customer master record?

    hi friends,
    i created customer master with wrong reconsiliation account in XD01. i failed when i am trying to change that reconsiliation account in XD02. it was suppressed. how to change the reconcilition account in customer master data?

    Hi,
    Go to this path: Spro>Financial Accounting>Account Receivable & Account Payable>Customer Accounts>Master Data>Preparations for Creating Customer Master Data>Define Account Groups with Screen Layout (Customers)
    Double Click on Your Group, Then Click on Company code Data under Field Status, Then Double click on Account Management, That screen you will find the Reconcilation Account, Select Requred Entry.
    now it will coming Customer master.
    It's useful assigne points as a way to say Thanks
    Regards
    gvr

  • Can't figure out how to change the bottom margins

    This is my 3rd day with a mac and I can't figure out how to change the margins in Pages '09 so that it doesn't include a .5 margin on the bottom.
    I'm using a HP OfficeJet J6450. In the page setup, I changed the "untitled" user defined margins to .1 for top and sides and 0 for the bottom and it still includes a .5 margin on the bottom. Changing the untitled seems to help side margins.
    I've used the inspector to see if there is a setting there that defines the bottom margin as .5 and that doesn't seem to do it.
    If I print borderless, the text boxes that I have a .3 border around don't print on the edges even though they show up on my workspace. It also throws off the top and bottom.
    This is a big assumption, but I assumed that if the workspace and rules show white space and now grayed out, it would print that way. It's not.
    Any ideas? Thanks! Ana
    P.S. I've downloaded & installed updates for everything - OS, iWorks, Printer

    Peggy,
    Maybe this is true of Macs? On my windows systems - I can specify more options on both my printers and can print beyond .5 inches at the bottom. One specific option on my J6450 that I can select is "minimize borders" and it will print about .1 or .2 from the edge. On my mac, I do not have that feature to select. If I print borderless, even though my layout shows it should not go off the paper, once printed it does.
    Thanks.

  • How to change the color of specific row in ALV tree

    Hi,
    I m using method set_table_for_first_display of a class CL_GUI_ALV_TREE.
    The req is to change the color of specific row. Now can anybody tell me how to change the color of ALV tree. As in ALV tree and in this method 'set_table_for_first_display', there is no parameter IS_Layout.
    Pls suggest...

    hi
    hope this code will help you.
    Reward if help.
    REPORT zsharad_test1.
    TABLES: ekko.
    TYPE-POOLS: slis. "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
    ebeln TYPE ekpo-ebeln,
    ebelp TYPE ekpo-ebelp,
    statu TYPE ekpo-statu,
    aedat TYPE ekpo-aedat,
    matnr TYPE ekpo-matnr,
    menge TYPE ekpo-menge,
    meins TYPE ekpo-meins,
    netpr TYPE ekpo-netpr,
    peinh TYPE ekpo-peinh,
    line_color(4) TYPE c, "Used to store row color attributes
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
    wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
    gd_tab_group TYPE slis_t_sp_group_alv,
    gd_layout TYPE slis_layout_alv,
    gd_repid LIKE sy-repid.
    *Start-of-selection.
    START-OF-SELECTION.
    PERFORM data_retrieval.
    PERFORM build_fieldcatalog.
    PERFORM build_layout.
    PERFORM display_alv_report.
    *& Form BUILD_FIELDCATALOG
    Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
    There are a number of ways to create a fieldcat.
    For the purpose of this example i will build the fieldcatalog manualy
    by populating the internal table fields individually and then
    appending the rows. This method can be the most time consuming but can
    also allow you more control of the final product.
    Beware though, you need to ensure that all fields required are
    populated. When using some of functionality available via ALV, such as
    total. You may need to provide more information than if you were
    simply displaying the result
    I.e. Field type may be required in-order for
    the 'TOTAL' function to work.
    fieldcatalog-fieldname = 'EBELN'.
    fieldcatalog-seltext_m = 'Purchase Order'.
    fieldcatalog-col_pos = 0.
    fieldcatalog-outputlen = 10.
    fieldcatalog-emphasize = 'X'.
    fieldcatalog-key = 'X'.
    fieldcatalog-do_sum = 'X'.
    fieldcatalog-no_zero = 'X'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'EBELP'.
    fieldcatalog-seltext_m = 'PO Item'.
    fieldcatalog-col_pos = 1.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'STATU'.
    fieldcatalog-seltext_m = 'Status'.
    fieldcatalog-col_pos = 2.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'AEDAT'.
    fieldcatalog-seltext_m = 'Item change date'.
    fieldcatalog-col_pos = 3.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MATNR'.
    fieldcatalog-seltext_m = 'Material Number'.
    fieldcatalog-col_pos = 4.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MENGE'.
    fieldcatalog-seltext_m = 'PO quantity'.
    fieldcatalog-col_pos = 5.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'MEINS'.
    fieldcatalog-seltext_m = 'Order Unit'.
    fieldcatalog-col_pos = 6.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'NETPR'.
    fieldcatalog-seltext_m = 'Net Price'.
    fieldcatalog-col_pos = 7.
    fieldcatalog-outputlen = 15.
    fieldcatalog-datatype = 'CURR'.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    fieldcatalog-fieldname = 'PEINH'.
    fieldcatalog-seltext_m = 'Price Unit'.
    fieldcatalog-col_pos = 8.
    APPEND fieldcatalog TO fieldcatalog.
    CLEAR fieldcatalog.
    ENDFORM. " BUILD_FIELDCATALOG
    *& Form BUILD_LAYOUT
    Build layout for ALV grid report
    FORM build_layout.
    gd_layout-no_input = 'X'.
    gd_layout-colwidth_optimize = 'X'.
    gd_layout-totals_text = 'Totals'(201).
    Set layout field for row attributes(i.e. color)
    gd_layout-info_fieldname = 'LINE_COLOR'.
    gd_layout-totals_only = 'X'.
    gd_layout-f2code = 'DISP'. "Sets fcode for when double
    "click(press f2)
    gd_layout-zebra = 'X'.
    gd_layout-group_change_edit = 'X'.
    gd_layout-header_text = 'helllllo'.
    ENDFORM. " BUILD_LAYOUT
    *& Form DISPLAY_ALV_REPORT
    Display report using ALV grid
    FORM display_alv_report.
    gd_repid = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    i_callback_program = gd_repid
    i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM
    i_callback_user_command = 'USER_COMMAND'
    i_grid_title = outtext
    is_layout = gd_layout
    it_fieldcat = fieldcatalog[]
    it_special_groups = gd_tabgroup
    IT_EVENTS = GT_XEVENTS
    i_save = 'X'
    is_variant = z_template
    TABLES
    t_outtab = it_ekko
    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.
    ENDFORM. " DISPLAY_ALV_REPORT
    *& Form DATA_RETRIEVAL
    Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
    DATA: ld_color(1) TYPE c.
    SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
    UP TO 10 ROWS
    FROM ekpo
    INTO TABLE it_ekko.
    *Populate field with color attributes
    LOOP AT it_ekko INTO wa_ekko.
    Populate color variable with colour properties
    Char 1 = C (This is a color property)
    Char 2 = 3 (Color codes: 1 - 7)
    Char 3 = Intensified on/off ( 1 or 0 )
    Char 4 = Inverse display on/off ( 1 or 0 )
    i.e. wa_ekko-line_color = 'C410'
    ld_color = ld_color + 1.
    Only 7 colours so need to reset color value
    IF ld_color = 8.
    ld_color = 1.
    ENDIF.
    CONCATENATE 'C' ld_color '10' INTO wa_ekko-line_color.
    wa_ekko-line_color = 'C410'.
    MODIFY it_ekko FROM wa_ekko.
    ENDLOOP.
    ENDFORM. " DATA_RETRIEVAL

  • How to change the components in a visible JPanel?

    How to change the components in a visible JPanel?
    Is there any way to change the components in a JPanel while it is already visible in a JFrame? I tried the na�ve approach of removing the components and adding new ones, but the effect is not the expected.
    For now I'm opening new frames with newly created panels.

    After adding/removing components to/from a panel try:
    panel.revalidate();
    panel.repaint() // sometimes this is also needed, I'm
    not sure whyI'm not certain, but I think that panel.revalidate() implicitly calls repaint() only if something actually changed in the layout. If nothing changed, it sees no reason to repaint; hence, if something changed in appearance but not in layout, you have to repaint it yourself.
    Or something like that. I'm no expert. ;)

  • How to change the picture frame size in Lightroom 5 Book

    I would like to control the actual picture frame size when making a Book in Lightroom 5. Or else know the sizes of the different picture frames provided by choosing the different page layouts. That way I can either change the picture frame dimensions to accomodate each photo or change the image size to fit in the offered picture frame. I find that using the software as is winds up cropping the images in unwanted ways. Modifying the picture frame would be my preferred alternative. Appreciate any ideas

    Hi again Tony,
                I have been using Adobe Photoshop 7, Photoshop Elements, Perfect Photo Suite, Photo Studio, etc., changing Image size, placing a picture on a page and then, do a simple last minute size adjustment by using the arrows to stretch or shrink it in place. Things would be a lot simpler if I could do the same thing with the cells in Lightroom 5. Cell pad adjustments do not fill the bill.
    I think we’ve pretty much concluded this exchange. Thanks again for your effort.
        david
    ay [email protected]
    Sent: Wednesday, March 12, 2014 11:27 PM
    To: dgbrow
    Subject: How to change the picture frame size in Lightroom 5 Book
    Re: How to change the picture frame size in Lightroom 5 Book
    created by Tony Jay <http://forums.adobe.com/people/Tony+Jay>  in Photoshop Lightroom - View the full discussion <http://forums.adobe.com/message/6205206#6205206

  • How to change the width of PDF report

    When i download an interactive report to a PDF. All the columns will have the same width, how to change the width of the column?
    Thanks,
    Jen

    I don't think its possible for downloading from interactive report but let's see if anyone else has got a work around.
    The other way to have absolute control over report layout is to create reports using 'Report Query' & 'Report Layout' under 'Shared Components'.
    Regards,
    Ashish Agarwal
    http://www.dbcon.com

Maybe you are looking for

  • SRM SERVER 7.0 XI CONTENT

    Hi XI Gurus, I'm trying to accomplish SRM-PI-CLM scenario in PI 7.1. I have already downloaded the .tpz (xi content) for SRM SERVER 7.0. Problem is there are no Operation Mappings (Interface Mapping) and no Message Mappings. How can I use the Data Ty

  • Limit PO Set up for SRM 5.0 Classic

    Hello All - I have seen questions in the forum and documentation that you can create a limit SC/PO/req (item cat B) from an SRM Shopping cart.  Can someone tell me how to set this up?  I have the 2 SRM books published by SAP and I have looked everywh

  • Download CS5 suite - error extracting product installer 101

    purchased CS5.5 premium suite, goto my orders, click download, does nothing. Eventually found the adobe download assistant and installed, download ran for 4 hours and successfully completed, and then gives the error, error extracting the product inst

  • What is a possible solution on this error?

    I can't find any information on this error that I have been getting for both Facebook and MySpace. The error is as follows: "You are currently on a service plan that does not support this application. Please contact your service provider for addition

  • Why does an internet connection quit for no apparent reason?

    For over a year I've had no problem staying connected to the internet using a modem and cable (Shaw) but lately the connection has been stopping after a couple of minutes: pages won't fill and Safari enters the ice age! I've tried repairing disk and