How to make a tree with more information in one line

Hi
I have seached this forum, and haven't find any information that I can use.
I need a tree structure with following informations:
arbpl
_____aufnr________material_____ text
_______extra informations
  |_____aufnr________material_____ text
  ....................................................... |_______extra informations
My problem is that I can't get more than one information each line.
Can anybody give me some input, and better good advice/examples hot to do.
My code looks like this:
*& Report  my report
REPORT  myreport.
type-pools : stree.
data : wa_node type snodetext.
data : node_table like wa_node occurs 0 with header line.
TABLES: caufv, caufvd, IOOPER, marc, mara, resb, jest, tj02t.
data: BEGIN OF gt_status_tab occurs 0,
      aufnr like caufv-aufnr,
      stat like jest-stat,
      txt04 like tj02t-txt04,
      end of gt_status_tab.
data: g_objnr like jest-objnr.
data: BEGIN OF gt_sele_tab OCCURS 0,
      werks like caufv-werks,
      fevor like marc-fevor,
      arbpl like IOOPER-arbpl,
      aufnr like caufv-aufnr,
      aufplA like caufv-aufpl,
      matnr like caufvd-matnr,
      gstrp like CAUFV-GSTRP,
      GLTRP LIKE CAUFV-GLTRP,
      rmatnr like resb-matnr,
      bdmng like resb-bdmng,
      GAMNG like caufv-GAMNG,
      aufpl like resb-aufpl,
      auart like caufv-auart,
      matkl like mara-matkl,
      istat like tj02t-istat,
     inact  like jest-inact,
END OF gt_sele_tab.
select-options:
s_werks for CAUFV-werks,
s_arbpl for iooper-arbpl,
s_fevor for marc-fevor,
s_aufnr for caufv-aufnr,
s_sttxt for CAUFVD-STTXT,
s_auart for caufv-auart,
s_matnr for caufvd-matnr,
s_matkl for mara-matkl,
s_rmatnr for resb-matnr,
s_gstrp for caufv-gstrp,
s_gltrp for caufv-gltrp.
start-of-SELECTION.
  SELECT  a~werks
          a~fevor
          a~aufnr
          a~PLNBEZ
          a~gstrp
          a~gltrp
          a~aufpl
          b~matnr
          b~bdmng
          a~gamng
          b~aufpl
          a~auart
          d~matkl
    into "CORRESPONDING FIELDS OF TABLE gt_sele_tab
    (gt_sele_tab-werks,
    gt_sele_tab-fevor,
    gt_sele_tab-aufnr,
     gt_sele_tab-matnr,
     gt_sele_tab-gstrp,
     gt_sele_tab-gltrp,
     gt_sele_tab-aufplA,
    gt_sele_tab-rmatnr,
    gt_sele_tab-bdmng,
    gt_sele_tab-GAMNG,
    gt_sele_tab-aufpl,
    gt_sele_tab-auart,
    gt_sele_tab-matkl)
     FROM  CAUFV as a
    join resb as b
    on b~rsnum = a~rsnum
    and b~rspos = b~rspos
    join afvc as C
    on c~aufpl = b~aufpl
    and c~aplzl = b~aplzl
    join mara as d
    on d~matnr = b~matnr
         WHERE  a~AUFNR  in s_aufnr
         AND    a~AUART  in s_auart
         AND    a~GLTRP  in s_gltrp
         AND    a~GSTRP  in s_gstrp
         AND    a~FEVOR  in s_fevor.
    append gt_sele_tab.
  ENDSELECT.
  loop at gt_sele_tab.
    clear g_objnr.
    concatenate 'OR' gt_sele_tab-aufnr into g_objnr.
*append
    select *  from jest
      where objnr = g_objnr
      and   inact ne 'X'.
      gt_status_tab-aufnr = gt_sele_tab-aufnr.
      gt_status_tab-stat = jest-stat.
      append gt_status_tab.
    ENDSELECT.
    SELECT single arbpl into gt_sele_tab-arbpl
             FROM  CRHD
           WHERE  OBJTY  = 'A'
           AND    OBJID  = gt_sele_tab-aufpl.
    gt_sele_tab-arbpl = '200'.
    MODIFY gt_sele_tab.
  endloop.
  perform fill_nodes.
  perform tree_display.
**& Form FILL_NODES
**text
**--> p1 text
**<-- p2 text
form fill_nodes .
  DATA: L_ARBPL type arbpl.
  node_table-type = 'T'.
  node_table-name = 'Arbejdsplads'.
  node_table-tlevel = '01'.
  node_table-nlength = '15'.
*  node_table-color = '4'.
  node_table-text = ''.
  node_table-tlength = '20'.
  node_table-tcolor = '3'.
  append node_table.
  clear node_table.
  loop at gt_sele_tab.
    at new arbpl.
      node_table-type = 'P'.
      node_table-name = gt_sele_tab-arbpl.
      node_table-tlevel = '02'.
      node_table-nlength = '20'.
*      node_table-color = '4'.
      node_table-text = ''.
      node_table-tlength = '30'.
      node_table-tcolor = '3'.
      append node_table.
      clear node_table.
      L_ARBPL = gt_sele_tab-arbpl.
*node_table-type = 'P'.
*node_table-name = 'ITEM DATA'.
*node_table-tlevel = '03'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = ''.
*node_table-tlength = '30'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
break g-lmn.
      loop at gt_sele_tab where arbpl = l_arbpl.
        node_table-type = 'P'.
        node_table-name = gt_sele_tab-aufnr.
        node_table-tlevel = '04'.
        node_table-nlength = '20'.
*        node_table-color = '4'.
node_table-parent = '04'.
        node_table-text = ''.
        node_table-tlength = '30'.
        node_table-tcolor = '3'.
        node_table-TPOS2 = '2'.
        node_table-text2 = 'halløj'.
        node_table-TPOS3 = '3'.
        node_table-text3 = 'igen'.
        append node_table.
        clear node_table.
*        break g-lmn.
        node_table-type = 'P'.
*        node_table-name = 'Materiale'.
*        node_table-tlevel = '04'.
node_table-parent = '04'.
        node_table-nlength = '20'.
*        node_table-color = '4'.
        node_table-text1 = gt_sele_tab-matnr.
        node_table-TPOS2 = '2'.
        node_table-text2 = 'halløj'.
        node_table-TPOS3 = '3'.
        node_table-text3 = 'igen'.
        node_table-tlength1 = '40'.
        node_table-tcolor1 = '3'.
        append node_table.
        clear node_table.
*        node_table-type = 'P'.
*        node_table-name = 'UNIT'.
*        node_table-tlevel = '05'.
*        node_table-nlength = '20'.
**        node_table-color = '4'.
*        node_table-text2 = 'test'.
*        node_table-tlength2 = '30'.
*        node_table-tcolor2 = '3'.
*        append node_table.
*        clear node_table.
*node_table-type = 'P'.
*node_table-name = 'QUANTITY'.
*node_table-tlevel = '05'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = i_vbap-kwmeng.
*node_table-tlength = '40'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*node_table-type = 'P'.
*node_table-name = 'DESCRIPTION'.
*node_table-tlevel = '05'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = i_vbap-arktx.
*node_table-tlength = '30'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*endloop.
      endloop.
    endat.
*loop at i_likp where vbelv = i_vbak-vbeln.
*node_table-type = 'P'.
*node_table-name = 'DELIVERY'.
*node_table-tlevel = '03'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = ''.
*node_table-tlength = '30'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*node_table-type = 'P'.
*node_table-name = i_likp-vbeln.
*node_table-tlevel = '04'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = ''.
*node_table-tlength = '30'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*endloop.
*loop at i_vbrk where vbelv = i_vbak-vbeln.
*node_table-type = 'P'.
*node_table-name = 'INVOICE'.
*node_table-tlevel = '03'.
*node_table-nlength = '15'.
*node_table-color = '4'.
*node_table-text = ''.
*node_table-tlength = '20'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*node_table-type = 'P'.
*node_table-name = i_vbrk-vbeln.
*node_table-tlevel = '04'.
*node_table-nlength = '20'.
*node_table-color = '4'.
*node_table-text = ''.
*node_table-tlength = '30'.
*node_table-tcolor = '3'.
*append node_table.
*clear node_table.
*endloop.
  endloop.
endform. " FILL_NODES
**& Form TREE_DISPLAY
**text
**--> p1 text
**<-- p2 text
form tree_display .
  call function 'RS_TREE_CONSTRUCT'
  exporting
  insert_id = '000000'
  relationship = ' '
*LOG =
  tables
  nodetab = node_table
  exceptions
  tree_failure = 1
  id_not_found = 2
  wrong_relationship = 3
  others = 4
*if sy-subrc = 0.
*message id sy-msgid type sy-msgty number sy-msgno
*with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
*endif.
  call function 'RS_TREE_LIST_DISPLAY'
  exporting
*CALLBACK_PROGRAM =
  callback_user_command = 'USER_COMMAND'
*CALLBACK_TEXT_DISPLAY =
*CALLBACK_MOREINFO_DISPLAY =
*CALLBACK_COLOR_DISPLAY =
*CALLBACK_TOP_OF_PAGE =
*CALLBACK_GUI_STATUS =
*CALLBACK_CONTEXT_MENU =
  status = 'IMPLICIT'
  check_duplicate_name = '1'
*color_of_node = '4'
*color_of_mark = '3'
*color_of_link = '1'
*color_of_match = '5'
  lower_case_sensitive = ' '
  modification_log = ' '
  node_length = 30
  text_length = 75
  text_length1 = 0
  text_length2 = 0
  return_marked_subtree = ' '
  screen_start_column = 0
  screen_start_line = 0
  screen_end_column = 0
  screen_end_line = 0
  suppress_node_output = ' '
  layout_mode = ' '
  use_control = 'F'
*IMPORTING
*F15 =
endform.                    "tree_display
" FINAL_DISPLAY

Hi,
Have you checked the examples in SALV_OBJECTS?
/wg

Similar Messages

  • How to make transparant images with more then 8 bit color?

    Hi,
    I know that one can use *.gif images in order to make a transparent image. But *.gif images have only 8 bit color depth. Is there a way to display for example *.bmp images and making one color transparent? Or by using a mask like in C++?
    thanx in advance

    Use the PNG format for your images. It supports a color depth of 24 bits/pixel as well as 8 bits/pixel and got an alpha layer so you can have transparent and semi-transparent areas in your image.
    You can load PNG images in Java as easily as you do with GIF and JPG images.

  • How to make other people image more beautiful

    how to make other people image more beautiful?

    Well I think this is a good topic that has a lot of possibilities, I understand the OP is seemingly being vague but I think perhaps it might be grammatical more then lack of content.
    <br />
    <br />But there are techniques and different approaches to capturing the best qualities of the subject especially those of the human subject.
    <br />
    <br />cjmah
    <br />
    <br />the best way to go about this is post an image that you took of someone that you think can be improved and we can share with you techniques and ideas about equipment that you might like to have to help you achieve what you want to achieve.
    <br />
    <br />Her you save the image as a jpeg about 600 to 700 pixels on the longest length the go to this link
    <br />
    <br />http://www.pixentral.com you follow the instructions for uploading the file then you copy the text in the top text field and paste it into you message before you post it.
    <br />
    <br />Make certain you copy all the text including the link you know from and including this
    <a all="" the="" way="" to="" and="" including="" this="" /></a>
    <br />
    <br />It is a good subject.

  • How to make a Flash site more searchable

    Hi all,
    I was wondering how to make a Flash site more searchable in
    search engines. I'm guessing it is with meta tags, can anyone tell
    me which meta tags or if there are any other hints or tricks.
    Thanks,
    MediaMan5335

    Sad to say MediaMan5335, there's no real defined way to read
    a Flash movie file. Currently there are tips and tricks to do it,
    but all of them are merely patches to somethin long overdue and
    needed. Since Google is setting the trend, the best way to gain
    ranking is to follow their set of new rules.
    There were several ways to gain rankings, whether is be
    paying your way to the top, putting multiple links within your
    site, or placing tons of words that would be read by spiders.
    Google has multiple articles pertaining to Search Engine
    Optizmization or SEO. Head on over to Google and just type in
    "Google SEO" and you'll find a multitude of articles.
    Right now to answer your question, META KEYWORDS and META
    DESCRIPTION are your best tools for METAs. Having legit links
    INBOUND and OUTBOUND will help.
    Currently there a several companies working on allowing SWFs
    to be read by Search Engines. Hopefully this helps answer your
    question. SEO can be a daunting thing.

  • How to make text columns with adobe muse

    Hi,How to make text columns with adobe muse (like InDesign)?

    Multiple columns can be acheived with CSS - http://www.w3schools.com/css/css3_multiple_columns.asp
    div
    -moz-column-count:3; /* Firefox */
    -webkit-column-count:3; /* Safari and Chrome */
    column-count:3;
    I'm surprised that Muse does not support text columns yet, but perhaps the custom CSS can be added in style tags on page properties. Haven't tried it, but don't see why it wouldn't work.

  • EtreCheck version: 2.1.5 (108) Report generated 4 January 2015 14:29:26 GMT  Click the [Support] links for help with non-Apple products. Click the [Details] links for more information about that line. Click the [Adware] links for help removing adware

    My Mac is very slow and applications take a long time to load, especially Safari and iTunes.  Please help.    I have run the Etrecheck report and these are results.
    Thanks Pat
    EtreCheck version: 2.1.5 (108)
    Report generated 4 January 2015 14:29:26 GMT
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      iMac (21.5-inch, Mid 2011) (Verified)
      iMac - model: iMac12,1
      1 2.7 GHz Intel Core i5 CPU: 4-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 0:32:50
    Disk Information: ℹ️
      ST31000528AS disk0 : (1 TB)
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) / : 999.35 GB (717.51 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      OPTIARC DVD RW AD-5690H 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Seagate Expansion Desk 2 TB
      EFI (disk1s1) <not mounted> : 210 MB
      Seagate Expansion Drive (disk1s2) /Volumes/Seagate Expansion Drive : 2.00 TB (1.66 TB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. iPhone
      Apple Internal Memory Card Reader
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) [Support]
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (2.0 - SDK 10.9) [Support]
    Problem System Launch Agents: ℹ️
      [failed] com.apple.syncservices.SyncServer.plist
    Launch Agents: ℹ️
      [loaded] com.avast.userinit.plist [Support]
      [running] com.epson.Epson_Low_Ink_Reminder.launcher.plist [Support]
      [loaded] com.epson.esua.launcher.plist [Support]
      [running] com.epson.eventmanager.agent.plist [Support]
      [loaded] com.oracle.java.Java-Updater.plist [Support]
      [running] com.trusteer.rapport.rapportd.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [loaded] com.avast.init.plist [Support]
      [loaded] com.avast.uninstall.plist [Support]
      [failed] com.avast.update.plist [Support]
      [loaded] com.microsoft.office.licensing.helper.plist [Support]
      [loaded] com.oracle.java.Helper-Tool.plist [Support]
      [running] com.trusteer.rooks.rooksd.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [invalid?] com.avast.home.userinit.plist [Support]
      [running] com.microsoft.LaunchAgent.SyncServicesAgent.plist [Support]
    User Login Items: ℹ️
      iTunesHelper ApplicationHidden (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
      FlashPlayer-10.6: Version: 16.0.0.235 - SDK 10.6 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 [Support]
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 [Support]
      DivXBrowserPlugin: Version: 2.2 [Support]
      Flash Player: Version: 16.0.0.235 - SDK 10.6 [Support]
      OVSHelper: Version: 1.1 [Support]
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: Java 8 Update 25 Check version
    Safari Extensions: ℹ️
      wrc [Installed]
    3rd Party Preference Panes: ℹ️
      DivX  [Support]
      Flash Player  [Support]
      Flip4Mac WMV  [Support]
      GoToMyPC Preferences  [Support]
      Java  [Support]
      Trusteer Endpoint Protection  [Support]
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 281.84 GB
      Destinations:
      Seagate Expansion Drive [Local]
      Total size: 2.00 TB
      Total number of backups: 78
      Oldest backup: 2013-07-28 18:09:06 +0000
      Last backup: 2015-01-04 14:29:38 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 281.84 GB X 3)
    Top Processes by CPU: ℹ️
          2% WindowServer
          1% mds
          0% fontd
          0% mds_stores
          0% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB Safari
      112 MB com.avast.daemon
      94 MB com.apple.WebKit.WebContent
      56 MB spindump
      52 MB mds_stores
    Virtual Memory Information: ℹ️
      479 MB Free RAM
      1.56 GB Active RAM
      1.11 GB Inactive RAM
      904 MB Wired RAM
      5.37 GB Page-ins
      75 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 4, 2015, 01:57:18 PM Self test - passed
      Standard users cannot read /Library/Logs/DiagnosticReports.
      Run as an administrator account to see more information.

    patbythesea wrote:
    Can I assume that with my Mac I do not need any additional virus protection software?  If I do, what should I use?
    See my Mac Malware Guide for help on protecting yourself from malware. You generally don't need anti-virus software.
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • How to make the vendor column have figure in GRIR line item with RE document type?

    Dear Experts,
         Could you tell me how to make the vendor column have figure in GRIR line item whose document type is RE?
         Thanks!
    Xinling Zhang

    Hi ,
    You are using FAGLL03 .
    FAGLL03 report vendor code is blank
    vendor number in new FAGLL03 tcode (offsetting account information)
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/30b96fed-eb5d-2e10-1792-f3ff9f65df8a?QuickLink=index&…
    Also check OSS note
    Note 112312 - Line item: Display of offsetting a/c information
    Note 1034354 - FAGLL03: Display of offsetting account information
    Many Thanks

  • How to make turning page with ibooks author?

    How to make turning page with ibooks author?

    This question has been answered on this thread
    https://discussions.apple.com/message/17981772#17981772#17981772
    Best regards.
    Alex

  • How to make this work with Firefox, HELP!

    Downloading for Real-player, after watching the full movie, I click download and it has to reread the movie from the internet. When using explorer, after downloading the movie, it reads it from memory, which makes it a fast download. How to make this work with Firefox, I like not to use Microsoft products, and I really like Firefox 7.0.1!!!! HELP!

    -> click '''Firefox''' button and click '''Options''' (OR File Menu -> Options)
    * Advanced panel -> Network tab
    * place Checkmark on '''Override Automatic Cache Management''' -> under '''Limit Cache''' specify a large size of space
    * Remove Checkmark from '''Tell me when websites asks to store data for offline use'''
    * click OK on Options window
    * Restart Firefox
    Check and tell if ts working.

  • How to make email link with a button with AC2 in flash cs3?

    How to make email link with a button with AC2 in flash cs3?
    I wrote this, but it does not work:
    btn_emailinfo.on (release) {
    getURL("mailto:"[email protected]");
    }

    I am guessing you put that on a frame?
    If so, the syntax is as follows:
    btn_emailinfo.onRelease = function(){
    getURL("mailto:[email protected]");
    Though, if you are placing it directly on the button itself,
    the syntax is:
    on(release){
    getURL("mailto:[email protected]");
    }

  • I have iPod shuffle 2nd gen. 1GB, how can I autofill it with more than 70 songs?

    I have iPod shuffle 2nd gen. 1GB, how can I autofill it with more than 70 songs, when I used to be able to get more than l20+ songs?

    Is your shuffle full after the Autofill?  Does the playlist you selected as the source have more than 70 songs?
    My 2nd gen 1GB shuffle currently has 140 songs on it, almost 100% full using Autofill.  The number of songs depends on two factors.  One is the average length of the songs.  Longer songs take more space.  A 20-minute symphony takes more space than a 4-minute pop song.  The other key factor is the bit rate used for compression.
    All of my songs are compressed using the AAC encoder at 256 kbps, which is Apple's current standard and the setting used for downloads from the iTunes Store.  The same songs compressed at 128 kbps AAC takes up half the space.  320 kbps MP3 would use more space per song.  If a lossless format, such as Apple Lossless or AIFF is used to encode, the sound quality is the best possibe, but the file size per song is MUCH higher.
    If you think there is problem on the shuffle, you can try doing a Restore in iTunes.  The Restore button is on the shuffle's Settings tab.  This will erase the shuffle, re-install its software, and set it to default settings. If there is data corruption on the shuffle's storage that is causing this problem, a Restore should fix it.

  • I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    I reset my phone and it now receives calls that were meant for my husband. I know how to fix this with messaging and facetime, but can't seem to find how to make it stop with the calls. Please help.

    It may be due to Continuity
    The following quote is from  Connect your iPhone, iPad, and iPod touch using Continuity
    Turn off iPhone cellular calls
    To turn off iPhone Cellular Calls on a device, go to Settings > FaceTime and turn off iPhone Cellular Calls.

  • In JSF, how to make a menu with access control?

    In JSF, how to make a menu with access control?
    The access control can be guided by programming, database or other means if possible?
    Thanks

    I want to make a dvd menu in iMovie because i don't have IDVD and can't find anywhere to download it?
    For making DVDs I would recommend iMovie 06 and iDVD 09 both readily available on Amazon or eBay.  Shop for iLife 06 and iLife 09.
    You can make menus and chapters with any version of iMovie except the latest one. There's nothing wrong with iMovie 11 either but I prefer iMovie 06.
    By using iMovie 06 and iDVD 09 I make DVDs with professional moving menus with very little effort. They look almost as good as Hollywood.

  • How to make slide images with Dreamweaver CS6?

    How to make slide images with Dreamweaver CS6? Please teach me.

    Hello
    in addition to Jon's hint, I'll send you some links to nice sliders (have fun with the different representations ):
    http://sandbox.scriptiny.com/javascript-slideshow/
    http://jquery.malsup.com/cycle/
    http://wowslider.com/best-jquery-slider-crystal-linear-demo.html
    http://www.jcoverflip.com/demo
    http://www.jacksasylum.eu/ContentFlow/
    http://addyosmani.com/blog/jqueryuicoverflow/
    You only need to use the source code to implant these shows there where you want. In my eyes it would be the best that you use first a very new and blank DW file to perform (maybe in LiveView) the one or the other.
    Hans-Günter

  • How do I combine two or more pictures into one?

    How do I combine two or more pictures into one?

    I found out how to do what I wanted and I'm giving my steps in hopes that it might help someone else.  I wanted to put several photos from a file onto a new blank image.  This is what I did.
    1.  Create a blank page.    File/New/ Blank File.   Put in the size.  I used 8x10.
    2.  Bring the photo  you want to use into Elements as you always do. It will list along the top next to the blank sheet.
    3.  Choose SELECT (top of screen)/ Select All.
    4.  Choose Edit/Copy   or Command "C"
    5.  Click on the Blank File.   Chose Edit/Paste  or Command "V"
    6.  Click on Image/ Transform or Command "T".  There should be a dotted line around your pasted image.  You can then move and adjust the image to how you want it.  When finished, press the check-mark on lower right of photo.
    7.   Repeat this with all the photos you want on the new blank file.
    8.  You will see on lower right of Elements,  the background layer and as many layers as you have photos.  These layers need to be permanently placed on the background layer. Go to Layers and press Merge Visible.  This will merge all layers to the background.
    9.  Save as and you are done.

Maybe you are looking for

  • CUP MSMP Work flow in GRC 10.0

    Hi GRC Experts, I am working on a MSMP Work flow requirement in GRC 10.0 and would appreciate any guidance/inputs on this. As per my requirement we would have to design a CUP Work flow in GRC 10.0 to decommission a user in 24-hours if the user has no

  • PHOTO BUGS!

    Here is the bugs i've been experiencing with my iphone 4 (ios 5) - Can't take pics - Can't delete pics - Automatic duplicates my photo library - unable to look at pic in text messeging - unable to take screenshots - Settings>General>About>Photos: 2,1

  • SC Workflow Status

    Hi, We have SC approval workflow and are using SRM 4.0. Someone has created SC and approval for SC has been rejected. Then SC is mofied and now its been approved. When SC is approved, the status of SC is still at the status' Waiting for Approval' and

  • RMAN full database restoration

    Hi All, I'm doing a test of rman backup. I took full backup of my database (controle file, datafiles and archivelog file). I dropped my database from dbca GUI. Can i restore my full backup from RMAN in this case. I mean i want to restore my full back

  • How do I know the difference

    How do I know the difference between the iPad 3G and iPad 4G from outside the casing,