One question about dreamweaver cc layers

Hello!
Help please, how create a new layer with text over pictures?
*Only In dreamweaver 13 cc!
Thanks

"Layers" are so 1990s! The ability to easily create an absolutely positioned container (a layer) has been removed from all recent versions of DW simply because it's a troublesome technique to use for layout and usually causes more problems than it solves. Anyhow, a "layer" is just any page element that has been made absolutely positioned by your page's CSS. This means that even an image could be referred to as a layer, even though the image tag is not able to 'contain' anything. The way to make a "layer" in contemporary versions of DW would be to place a div on your page and style it to be absolutely positioned and located wherever you want it:
HTML
<div class="whatever">your desired text</div>
CSS
.whatever {
     position:absolute;
     left:200px;
     top:50px;
This CSS will place that div 50px from the top of the nearest positioned ancestor, and 200px from the left. If there is no positioned ancestor, then the div would be positioned from the top and left of the viewport (the browser window). So - insert the div, give it a class or an id value, and create your CSS using the CSS panel and the appropriate selector.

Similar Messages

  • One question about Pricing and Conditions puzzle me for a long time!

    One question about Pricing and Conditions puzzle me for a long time.I take one example to explain my question:
    1-First,my sale order use pricing procedure RVAA01.
    2-Next,the pricing procedure RVAA01 have some condition type,such as EK01(Actual Costs),PR00(Price)....,and so on.
    3-Next,the condition type PR00 define the Access Sequences PR00 as it's Access Sequences.
    4-Next,the Access Sequences PR00 have some Condition tables,such as:
         table 118 : "Empties" Prices (Material-Dependent)
         table 5 : Customer/Material
         table 6 : Price List Type/Currency/Material
         table 4 : Material
    5-Next,I need to maintain Condition tables's Records.Such as the table 5(Customer/Material).I guess the sap would supply one screen for me to input the data of table 5.At this screen,the sap would ask me to select one table,such as table 5.When I select the table 5,the sap would go to the screen to let me input the data of table 5.But when I use the T-CODE VK31 or VK32 to maintain Condition tables's Record,I found it's total different from my guess:
    A-First,I can not found one place for me to open the table,such as table 5,to let me input the data?
    B-Second,For example,when I select the VK31->Discounts/Surcharges->By Customer/Material,the sap show the grid view at the right side.At the each line of the grid view,you need to select the Condition Type at the first field.And this make me confused very much.Why the sap need me to select one Condition Type but not the Condition table?To the normal logic,it ought not to select Condition table but not the Condition Type!
    Dear all,I'm a new one in sd.May be this is a very stupid question.But it did puzzle me for a long time.If any one can  explain this question in detail and let me understand the concept,I will appreciate him/her very much.Thank you.

    Hi,
    You said that you are using the T.codes VK31 or VK32.
    These transaction codes are used to enter condition records for standard condition types. As you can see a grid left side having all the standard condition types like price, discounts, taxes, frieghts.
    Pl check using T.code VK11 OR VK12 (change mode)
    Here you can enter the required condition type, in the intial screen. (like PR00, MWST, K004, K005 .....etc)
    After giving the condition type, press enter or click on Combinations icon on top of the screen. Then you can see all the condition tables which you maintained for that condition type. Like as you said table 118, table 5, table 6 and table 4.
    You can select any table and press enter, then you can go into the screen in which you have all the field cataglogues you maintained for that table. For example you selected combination of Customer/Material (table 5) then after you press enter then you can see customer field on top, and material fields.
    You can give all the required values and save the conditon record.
    Hope this is clear.
    REWARD IF HELPFUL.
    Regards,
    praveen

  • Another one question about how to download applet (not using external tool)

    Hi
    i write tool for downloading applet on card. I use apdu trace from NXP eclipse plugin as source of information and i read also about cap-file format in Java Card Virtual Machine specification. And i have questions about data transferred by LOAD command.
    As example - from apdu trace i see that transferred data are "C4820E33 DATA1 DATA2". Full length of transferred data is 0x2EE2.
    C4 - OK, this is "Load File Data Block" tag as specified in Global Platform
    820E33 - OK, this length of tag, =0x0E33
    DATA1 - sequence of cap-file components: Header.cap, Directory.cap, Import.cap, Applet.cap, Class.cap, Method.cap, StaticField.cap, ConstantPool.cap, RefLocation.cap. Length of DATA1 is 0x0E33, i.e. DATA1 = 'C4'-tag value.
    DATA2 - sequence of two cap-file components: Descriptor.cap and Debug.cap. These components are out of 'C4'-tag.
    the questions mentioned above... here they are:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?

    666 wrote:
    1. Global Platform does not define any data in LOAD command except 'E2' and 'C4' tag. Why DATA2 is transferred out of any tags?Because the components are either optional or only required when communicating with a JCRE that has debugging capabilities. I assume you ran the project in JCOP Tools in debug mode against the simulator? If you did this against a real card it would fail as it does not have an instrumented JCRE capable of debugging code. You could try running the project as opposed to debugging to see the difference.
    2. Whether the sequence of cap-file components is important? i.e. Can i load Header.cap, Directory.cap etc. in other order than i see in DATA1 field from apdu-trace?Yes it is. It is defined in the JCVM specification available from the Oracle website.
    3. Debug.cap seems to be optional component. And what about Descriptor.cap component? Need i load it on card?No, it is optional and is not referenced by any other CAP file component.
    Cheers,
    Shane

  • One question about Selection screen

    Hi experts,
    I am writing a report, on the selection screen, I need to input the file path and then do the file upload.
    My question is about how to check the file path I put is correct or not? If it is incorrect, I want to get a message and the cursor still in the field and don't jump to the next page.
    How can I do like that?
    Any one has any suggestion, please help me.
    Thanks in advance.
    Regards,
    Chris Gu

    Hi Chris,
        do it this way: check my code after calling gui_upload what condition i am using.
    parameters:
      p_file type rlgrap-filename.          " File name
    *           AT SELECTION-SCREEN ON VALUE-REQUEST EVENT               
    at selection-screen on value-request for p_file.
      perform get_file_name.
    *                       AT SELECTION-SCREEN EVENT                    
    at selection-screen on p_file.
      perform validate_upload_file.
    *  Form  GET_FILE_NAME                                               
    form get_file_name.
      call function 'F4_FILENAME'
       exporting
         program_name        = syst-cprog
         dynpro_number       = syst-dynnr
         field_name          = ' '
       importing
         file_name           = p_file.
    endform.                               " GET_FILE_NAME
    *  Form  VALIDATE_UPLOAD_FILE                                        
    form validate_upload_file.
      data:
        lw_file  type string.              " File Path
      lw_file = p_file.
      call function 'GUI_UPLOAD'
        exporting
          filename                    = lw_file
          filetype                    = 'ASC'
          has_field_separator         = 'X'
          dat_mode                    = 'X'
        tables
          data_tab                    = t_final_data.
      IF sy-subrc ne 0 and t_final_data is initial. " here message if file path is wrong
        Message 'File not found' type 'E'.
      ELSEIF sy-subrc eq 0 and t_final_data is initial.
        Message 'File empty' type 'E'.
      ENDIF.                              
    endform.                               " VALIDATE_UPLOAD_FILE
    With luck,
    Pritam.
    Edited by: Pritam Ghosh on May 8, 2009 8:57 AM

  • One question about lcds2.5 link with java

    when i am creating a custom Message Service adapter,found a
    question with rewriting invoke() method.
    java class :
    package test;
    import flex.messaging.services.ServiceAdapter;
    import flex.messaging.services.MessageService;
    import flex.messaging.messages.Message;
    public class TestAdapter extends ServiceAdapter {
    public Object invoke(Message message) {
    MessageService msgService = (MessageService)service;
    msgService.pushMessageToClients(message, true);
    msgService.sendPushMessageFromPeer(message, true);
    return null;
    error:
    service can not resolved about MessageService msgService =
    (MessageService)service;
    please tell me a method :how to write this TestAdapter class.

    ths, i can success.
    but one error occur when i send message from java class to
    lcds2.5 service.
    i tranfer this IMessageUtil interface's setMessage method,set
    param as "test",but no value in mxml file's mx:Consumer .
    my message-config.xml is correct.
    message-config.xml:
    <adapter-definition id="fdschathandler" class="test"/>
    <destination id="fdschat">
    <properties>
    <network>
    <session-timeout>0</session-timeout>
    </network>
    <server>
    <max-cache-size>1000</max-cache-size>
    <message-time-to-live>0</message-time-to-live>
    <durable>false</durable>
    </server>
    </properties>
    <channels>
    <channel ref="my-rtmp"/>
    </channels>
    <adapter ref="fdschathandler"/>
    </destination>
    java class:
    package test;
    import flex.messaging.MessageBroker;
    import flex.messaging.MessageException;
    import flex.messaging.messages.AsyncMessage;
    import flex.messaging.messages.Message;
    import flex.messaging.services.MessageService;
    import flex.messaging.services.ServiceAdapter;
    public class MessageUtil extends ServiceAdapter implements
    IMessageUtil {
    public Object invoke(Message message) {
    try{
    MessageBroker broker = MessageBroker.getMessageBroker(null);
    MessageService msgService = (MessageService)
    broker.getService("message-service");
    msgService.pushMessageToClients(message, true);
    msgService.sendPushMessageFromPeer(message, true);
    return null;
    }catch(MessageException ff){
    System.out.println("fff:="+ff.getErrorMessage());
    catch(Exception e){
    e.printStackTrace();
    return message;
    public void setMessage(String mess) {
    try{
    AsyncMessage message=new AsyncMessage();
    message.setDestination("fdschat");
    message.setBody(mess);
    this.invoke(message);
    }catch(Exception e){
    e.printStackTrace();
    mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="consumer.subscribe()">
    <mx:Script>
    <![CDATA[
    import mx.messaging.events.MessageEvent;
    import mx.messaging.messages.AsyncMessage;
    import mx.messaging.messages.IMessage;
    private function send():void
    var message:AsyncMessage = new AsyncMessage();
    message.body = msg.text;
    producer.send(message);
    msg.text = "";
    private function messageHandler(message:MessageEvent):void
    var msg:AsyncMessage = AsyncMessage( message.message );
    log.text += msg.body + "\n";
    ]]>
    </mx:Script>
    <mx:Producer id="producer" destination="fdschat"/>
    <mx:Consumer id="consumer" destination="fdschat"
    message="messageHandler(event)"/>
    <mx:Panel title="Chat" width="100%" height="100%">
    <mx:TextArea id="log" width="100%" height="100%"/>
    <mx:ControlBar>
    <mx:TextInput id="msg" width="100%" enter="send()"/>
    <mx:Button label="Send" click="send()"/>
    </mx:ControlBar>
    </mx:Panel>
    </mx:Application>

  • One question about arch linux 2009.02 and ext4

    hi,
    i want to download newest arch linux version. i heard i can select file system type as ext4, that sounds cool, because i really want ext4. anyway i heard that you need grub2 to properly boot ext4 arch system. so is grub2 will be included in arch linux 09.02? because my root partition is going to be in ext4 file system. thanks for help

    syms wrote:
    skottish wrote:
    syms wrote:Thanks for help. i have one more question - how much ext4 seems faster than ext3? i mean do you feel that ext4 is faster than ext3 in most cases? thanks.
    I've never done any benchmarks, but I can tell you that file system checks are many, many times faster.
    I do have a warning though, and it can be confirmed by others in this forum: ext4 does not crash gracefully right now. If you're on an unstable system, crashing can cause the loss of at least configuration files. My workstation is rock solid, so I've never seen any issues. Another computer that I was working on was having crashes due to an older Intel card with the newer xorg, and configuration files were being killed all over the place.
    Thanks. another thing is that about application start up. for example for me firefox starts in 4 seconds, when i close ff and try to run it again, it opens in about 1 second. what it would with ext4 system? maybe it would launch in 2 seconds at first start?
    It's hard to guess like that, but it's bound to be the same or faster. You're not losing anything going ext4 and it is a faster filesystem in general.

  • Question about Dreamweaver Native Mobile Apps with PhoneGap

    I am trying to determine the best way to build an app for my business.  It doesn't need to be anything fancy, but needs a clean UI that is easy to navigate and interfaces with an online database.  The PhoneGap intergration with Dreamweaver 5.5 seems really intriguing, but before I spend the $650 to upgrade my creative suite, I had some questions.
    Doing some research, I have found multiple references to apps created in this way running slowly.  Noticable lapses on button pushes, pages loading slowly, etc.  Is this an issue and if it is, is there any way to get around it? 
    Idealy, I would deploy my app to both Android and iOS devices, how smoothly does that run?  I have some basic knowledge of both Java and Objective-C, but using dreamweaver seems to be quite a timesaver.
    If anyone has any input or comments about using Dreamweaver to create native mobile apps I would love to get some feedback.  Thanks!

    PhoneGap builds mobile apps with HTML, CSS, and JavaScript. You cannot use a server-side language, such as PHP, with PhoneGap.
    Presumably, you want to connect with a MySQL database on a remote server. To do so, you would need to use Ajax to send and receive data from the MySQL database. You can use jQuery to send and receive data as JSON. PHP has JSON functions that decode and encode data as JSON strings.
    How difficult or easy you would find setting this up depends on your knowledge of jQuery and PHP. I don't know of any tutorials that show how to pull everything together for PhoneGap, but it shouldn't be too difficult to find tutorials for using jQuery Ajax to communicate with MySQL.

  • General questions about Dreamweaver

    Hi,
    I'm somewhat a newbie to web development (mostly do windows
    application development) so I'm trying to determine the best tools
    to acquire to learn and work in.
    I have done a little in Visual studio with asp.net (2.0) so
    I'm somewhat familiar with that tool. I was looking at taking some
    online classes in web design and it appears most use dreamweaver as
    the tool of choice.
    So my question is can you do code behind like you can in asp?
    In other words, can I write code on component events, like a button
    click? Maybe it is better to ask what I can't do in DW?
    I'll probably purchase DW cs3 version via the academic stores
    (or Creative Web Suite).
    Any thoughts would be appreciated.
    Thanks
    Rut

    > can I do that in DW
    Yes.
    > what language or means does it use to provide that
    > functionality?
    ASP, ASP.Net, ColdFusion, PHP, or JSP - take your pick. DW's
    support for
    .Net is rudimentary, but usable at some level. The rest are
    much more
    robustly supported.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "rccrut" <[email protected]> wrote in
    message
    news:f5rkar$hsn$[email protected]..
    > So, just to expand on this (remember I'm pretty much a
    newbie at web
    > stuff) If
    > I design a site in DW and I need to pull data from a db
    or check login
    > information for a given page or handle email submission,
    or
    > is it really just for laying out pages?
    >
    > If you can do these things, what language or means does
    it use to provide
    > that
    > functionality?
    >
    > Thanks,
    > Rut
    >

  • One question about posting periods

    When creating or changing (T-CODE VL02N ) an outbound delivery, I select Edit -> Post goods issue on one of the overview screens.But the sap show the error message:"posting only possible in periods 2000/01 and 0000/00 in company code HJW1".So my question was how to config to let the posting possible in other periods,such as 2007/09?Thank you.

    hi gg,
    follow the steps, if u are working on IDES client then follow this
    1. In spro-> enterprises strusture-> remove all plants assigned to your company code
    2. tcode: omsy> enter fiscal year-2007 & period:09>save
    3.Again In spro-> enterprises strusture-> assign all plants to your company code
    regards,
    Arunprasad

  • One question about the MouseListener and Copy function.

    Hola,
    I want my program to activate a method when the user press left mouse button, but in other window, in other program. I can make it with the Listener, but only when the window of my java program is active. I want to my program to listen for pressing a mouse in other window. And my second question is that I want to make the function like copy - the same, if I am in other window. For example if I have marked one fail to generate copy to the clipboard. Is that possible.
    Thanks.

    Tersit wrote:
    I want my program to activate a method when the user press left mouse button, but in other window, in other program. I can make it with the Listener, but only when the window of my java program is active. I want to my program to listen for pressing a mouse in other window. Your best bet to listen for activities in other non-Java programs is to use a programming language that gets closer to the OS such as C/C++.
    And my second question is that I want to make the function like copy - the same, if I am in other window. For example if I have marked one fail to generate copy to the clipboard. Is that possible.I'm not clear on this. What do you mean by "marked one fail"?

  • One question about ROS ()

    HI,my experts:
       I work in SRM7.0 .I have 2 clients  in my system .Client 100 -EBP ;Client 200-ROS (SUS). The both clients are on the same server .
       Now ,1、I have create new ORG. in ROS Client ,and create user who is also in the EBP client.
                 2、I change the role "SAP_BBP_STAL_STRAT_PURCHASER"  ,"ROS_PRESCREEN" and sap-client  200;
                 3、spro --Define External Web Services  
      Now ,the question is :after submiting  the questionnaire by the vendor  ,the static purchaser can not find none data by "Pre-select Supplier" under the "Central Functions".
        Some useful link about ROS
      BR !
    Alex!

    Hi,khan:
      Thanks for your reply .
        I want to use the link .But I can find nothing after clicking the button .It should be the list of registered vedor in the SUS system ,isn't it?
        thanks !
       BR!
      Alex!

  • Question about Dreamweaver CS4 Preview in Browser

    Good morning,
    as a newcomer to Dreamweaver CS4, I find myself in a strange position: I managed to create several pages that work correctly, but whenever I transfer those pages in the server of the company I work for, they show up with a different format for the text parts, and the divs show up as shorter than they should be. And yet, I pretty much copy-and-pasted the original working html pages from my C to the server... why does this problem happen?
    Thank you very much.

    I can't really say without seeing your code. But some things that may cause issues:
    - make sure your code is valid by running it through a validator: http://validator.w3.org/ and fixing any issues noted
    - Some older versions of IE have a different way of handeling the box-model concept and this can cause sizing and layout issues. You can read all about it on the internet.
    But I would focus on making sure your code is valid - most rendering issues are caused by invalid code like missing closing tags, improperly nested elements, etc.

  • 2 questions about Dreamweaver CS4

    I,m a beginner with CS4.
    I've 2 problems and i dont know how to solve them.
    - the first, how do you attac/.combine/,connect 2 webpages together, what tools do you use/
    - the second, why is the site not working in the browser Internet Explorer. In firefox it is working very well.
    thanks for your help.
    grr Tonstin

    TonStin wrote:
    I,m a beginner with CS4.
    I've 2 problems and i dont know how to solve them.
    - the first, how do you attac/.combine/,connect 2 webpages together, what tools do you use/
    Opinion:  If you don't know how to do this basic requirement, then I'd suggestthat you don't open Dreamweaver until you have a basic understanding of HTML and css.  If you don't know any html/css then using Dreamweaver is going to be an uphill struggle.  Learn some basics and Dreamweaver will be easier to use.
    To answer the above, you need to create a navigation bar with the menu items required  Home / Services  etc.
    Highlight the Home button and create a link tot he home.html page  (that you should have already created).  You link to the page via the Property Inspector.  Same for the next nav link.  Select the Services Text and via the property inspector navigate to the services.html page  (again that you should have already created).
    - the second, why is the site not working in the browser Internet Explorer. In firefox it is working very well.
    Could be any number of issues.  You need to upload the page to your hosting server and provide the link to this page.  The answer will be in the code (hence the above opinion about learning html/css  :-)

  • Question about Dreamweaver CS3 capabilities

    I am a new user of Adobe Dreamweaver CS3 and I was wondering
    if it is possible to create a website where people can leave
    comments directly on the site. If this is possible, how is it
    done?

    Can you imagine the mush that looking at this WordPress site
    would make of a
    new user's brain?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "B" <[email protected]> wrote in message
    news:fq18f1$25l$[email protected]..
    > take a look at wordpress @ www.wordpress.org
    >
    > --
    > B
    > www.visit-the-coqui.com/
    > If you are thinking of a vacation to Puerto Rico
    >
    >
    http://gadgetgrapevine.blogspot.com
    > Latest gadget and other news here
    >
    >
    > "sbrannon0430" <[email protected]>
    wrote in message
    > news:fq18aq$22p$[email protected]..
    >>I am a new user of Adobe Dreamweaver CS3 and I was
    wondering if it is
    >>possible to create a website where people can leave
    comments directly on
    >>the site. If this is possible, how is it done?
    >
    >

  • HI,I want to ask one question about SRP 521W

       I have one SRP 521W router, It is slow when I configure it,And the memory  utilized very high(94%),but the CPU is nice.
       I was upgraded the last release firmware,The memory utilization keep in 78%,But I am still feeling it slowly when I configured it,How can I fix or correct configure it,Can to reduce the memory utilization.    I have one SRP 521W router, It is slow when I configure it,And the memory  utilized very high(94%),but the CPU is nice.
       I was upgraded the last release firmware,The memory utilization keep in 78%,But I am still feeling it slowly when I configured it,How can I fix or correct configure it,Can to reduce the memory utilization.

    Dear Shipeng,
    Thank you for reaching Small Business Support Community.
    Since the firmware upgrade did not fix the problem, you can try disabling some by default enabled services that you may not need; things like:
    Administration > Remote Management > SNMP and Local TFTP.
    Network Setup > UPnP
    Administration > Log
    Network Setup > Firewall > Firewall Filter
    If no Internet Protocol Television (IPTV), Network Setup > IGMP
    You may also check on the Internet Access Control entries to get rid of any not needed entries.  Please check these out and let me know if there is any further assistance I can help you with.
    Kind regards,
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

Maybe you are looking for

  • Soap Fault mapping issue

    Hi, I have a synchronous scenario of (request) Proxy --> XI --> SOAP and (response) SOAP --> XI --> Proxy.  I am having an issue returning the application soap faults back to the sender system.  When I enter invalid data while testing this webservice

  • Sony Handycam Problem

    Last week I bought a sony dcr-dvd403 to videotape my daughter's first birthday party, which is now tomorrow!!! It is a mini DVD, not a mini DV. The recording and finalizing go fine. The video plays on the camera. Then, I load the disc into the top lo

  • Long query on Forms

    Hello I have a datablock, whose datasource is a view (sourceType = 'table'; sourcename =viewName). All of the datablock items are database items (no calculations, etc..) The ORDER BY clause has pre-defined values ("date field" DESC) The default_where

  • How to access the Document Options dialog box to select display properties?

    How to access the Document Options dialog box to select display properties (e.g. smartcut ) for a selected document to be viewed in the Workspace. regards

  • Mismatch between the patch version

    Version 2.18, next step, next issue. Got through the 'Do Setup' step on "9-Apply DBA CUP and related patches" with a bug workaround that was provided. Now went to the next step of 'Do Execute' and it is failing with the message below. I've done some