HTML & DW HTML

Question I was at a freelance web design site and came across
a job for someone who wanted their site re-written in html with
some java for flash rollovers. My question is this,
If I create a web page in layout and design in FW and export
it to DW is the html code that is created from that layout the same
as if someone started DW in code mode and wrote the site from
scratch. I guess what I am saying is when images are exported to DW
is it a different type code than hand written code.
This project does not seam hard but I do not write html code,
I design, create and let DW create the code for me.
Thanks for any replies.

> If I create a web page in layout and design in FW and
export it to DW is
> the
> html code that is created from that layout the same as
if someone started
> DW
> in code mode and wrote the site from scratch
No. FW's HTML is good for prototyping but unless it is being
set up by
someone amply familiar with HTML already, it would not be
suitable for
production work. However, if you are asking if FW 'wizard'
code is
comparable to DW 'wizard' code (i.e., the mess produced by
LAYOUT MODE use
in DW) then that answer would be that neither are suitable
for production
work.
> This project does not seam hard but I do not write html
code
Personally, I think you need to stay away from the job. The
job itself is
ill-conceived in my opinion (java for flash rollovers), and
could be more
than a non-coder could manage effectively.
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
==================
"gleeren65" <[email protected]> wrote in
message
news:g8el7o$e2i$[email protected]..
> Question I was at a freelance web design site and came
across a job for
> someone
> who wanted their site re-written in html with some java
for flash
> rollovers. My
> question is this,
>
> If I create a web page in layout and design in FW and
export it to DW is
> the
> html code that is created from that layout the same as
if someone started
> DW
> in code mode and wrote the site from scratch. I guess
what I am saying is
> when
> images are exported to DW is it a different type code
than hand written
> code.
>
> This project does not seam hard but I do not write html
code, I design,
> create
> and let DW create the code for me.
> Thanks for any replies.
>

Similar Messages

  • How to create SSWA plsql function in Oracle Apps of HTML call .html

    Hello Team,
    I am working on Oracle Apps 11i (11.5.10.2)
    I want to know , what is the process to create a , "SSWA plsql function" in Oracle Apps of type "HTML" and html call tab.
    How to create that Function and how to attach the PL/SQL code to these functions.
    How it works.
    Please help me to understand this concept from basics.
    Kind Regards

    Hi;
    Please review:
    how to setup a forms function in R12 to launch an URL?
    http://www.trutek.com/serendipity/index.php?/archives/15-An-Example-of-How-to-Create-Custom-Functions,-Menus,-and-Responsibilities.html
    Regard
    Helios

  • How to Convert Variable containing HTML to be read as HTML in HTML region

    To understand the question, I have a table storing generated HTML by user and report type:
    USER      | REPORT_TYPE | HTML_GENERATED
    ----------------------------------------------------------------------------------------|
    TEST_USER |   TEST      | <HTML><head><title></title></head><BODY>TEST</BODY></HTML>   |On the page exists a process using a PL/SQL anonymous block which is set to "On Load Before Header". Here is a portion of it:
    SELECT HTML_GENERATED into :P2_HTML
    from LN_DOCUMENT_LABELS
    where USER = :app_user AND REPORT_TYPE = 'TEST';The idea is to generate all the HTML behind the scenes in another package.
    There exists a single Item on the page to store the variable into:
    P2_HTML     (Hidden) Then I created an HTML region, and within that region I wanted to call in the item so I entered:
    &P2_HTML.The result simply displays the HTML code:
    <HTML><head><title></title></head><BODY>TEST</BODY></HTML>Is there a way to force it to be the result of HTML code when the page renders?
    TEST

    KylePN wrote:
    To understand the question, I have a table storing generated HTML by user and report type:
    USER      | REPORT_TYPE | HTML_GENERATED
    ----------------------------------------------------------------------------------------|
    TEST_USER |   TEST      | <HTML><head><title></title></head><BODY>TEST</BODY></HTML>   |
    Hopefully that's just poorly chosen sample HTML? APEX page templates already include those elements. Trying to output a complete HTML document inside an APEX page generally results in a mangled, inoperative mess.
    On the page exists a process using a PL/SQL anonymous block which is set to "On Load Before Header". Here is a portion of it:
    SELECT HTML_GENERATED into :P2_HTML
    from LN_DOCUMENT_LABELS
    where USER = :app_user AND REPORT_TYPE = 'TEST';The idea is to generate all the HTML behind the scenes in another package. In APEX it's not necessarily a good idea. Why use this approach rather than existing APEX features?
    There exists a single Item on the page to store the variable into:
    P2_HTML     (Hidden) Then I created an HTML region, and within that region I wanted to call in the item so I entered:
    &P2_HTML.The result simply displays the HTML code:
    <HTML><head><title></title></head><BODY>TEST</BODY></HTML>Is there a way to force it to be the result of HTML code when the page renders?
    TEST
    Hidden page items these will always be escaped when referenced as static text substitution strings. (You may indeed have done this in previous versions of APEX at some point in the past, but there have been incremental restrictions introduced in several recent APEX versions.)
    Instead of a hidden page item, use an application item, or a Display Only page item with display Condition set to Never.

  • How to load a large amount of HTML into HTML region?

    I am trying to display a clickable image map (HTML <map>) in a region. The HTML source for the image map is fairly large and will not fit in the Apex editor (HTTP 400 error when I Apply Changes). I would also rather not manage that much HTML in the Apex web editor. So I stored the code in a file and added it to my applications file storage.
    I have tried various methods of getting the HTML to load when the page is rendered. I tried a URL region, but that leads to all kinds of ACL/security issues that we do not want the customner to have to deal with. i also tried some PL/SQL:
    DECLARE
    l_file_id NUMBER;
    BEGIN
    SELECT id
    INTO l_file_id
    FROM APEX_APPLICATION_FILES
    WHERE filename = 'myhtml';
    APEX_UTIL.GET_FILE(
    p_file_id => l_file_id,
    p_inline => 'YES');
    END;
    But that just replaces the entire page, not just the region it's defined in (even when the HTML is without <head> etc).
    Various attampes wih #APP_IMAGES#myhtml and &APP_IMAGES.myhtml just give me the translation of the APP_IMAGES variable.
    So, how do I load a large chunk of HTML into a region dynamically at run time? I also need this to interact with APEX in the sense that JavaScript will set APEX variables and cause a SUBMIT when the use clicks on the image map.

    Hi Andy,
    ATD wrote:
    Does your HTML define the regions/points on the map using AREA tags?Yes. it is actually generated using MapSefrver from huge tables of SDO_GEOMETRY (Oracle Spatial).
    If so, you could define a report template that does this and use this for a report based on a table that has the settings for shape, coords, href etcHmm, the code (HTML map) is auto-generated so if I understand you correctly, this might be difficult. One of the HTML is approximately 180KB of text.
    I found a way to do this using dynamic PL/SQL. I created a new table that has a varchar filename and a CLOB for the file data. I then imported the HTML into the table using SQL Developer (copy&paste, nice!). I then created an HTML region and used the following:
    declare
    html clob;
    len number;
    st number;
    c number;
    begin
    select length(data)
    into len
    from FILES
    where name = 'state_query.html';
    st := 1;
    while len > 0
    loop
    if len > 32000 then
    c := 32000;
    else
    c := len;
    end if;
    select substr( data,st,c )
    into html
    from FILES
    where name = 'state_query.html';
    htp.p( html );
    st := st + c;
    len := len - c;
    end loop;
    end;
    Edited by: CoyoteTech on May 13, 2009 7:27 AM

  • Passing Parameter to report (html) from html page

    Hi
    I have a html page use web application server as tool, this page
    link to report, I want to pass the parameter to report
    paramform.
    This is my PL/SQL
    procedure eqp_form(ceqp in out mms_eqp_master.eqp_code%type) is
    htp.tableData(htf.anchor(report.print('msr_eqp_group'),'<font
    color=ffffff>Eqp Group
    Report</font>',cAttributes=>'target=target_blank'));
    How can I do to pass 'ceqp' into report parameter form, before
    running report?

    <p>In the scenario you described the report that connects to the stored procedure will automatically require parameters so they can be passed to the stored procedure.</p><p>Here is a link to a sample that passes a parameter to a report at runtime using BusinessObjects Enterprise XI R2:</p><p>http://diamond.businessobjects.com/node/1018 </p><p>Rob Horne<br /><a href="/blog/10">Rob&#39;s blog - http://diamond.businessobjects.com/blog/10</a></p>

  • Adding a (href) hyperlink to html(convertTo-HTML) via powershell

      Im trying to add a href hyperlink to my HTML as below as im sending it as an email.
    But it's not working for me.
    Has anyone experienced this? How can I get this rolling?
    I have already added
    $message.IsBodyHTML = $true to convert to html
        $message.Body = $exportlist | Select-Object Sponsor,Activate,Category,FileName,@{name="Link"; expression={"<a href=""" + $web.Url + "/" + $_.Sponsor + "/Activate/" + $_.FileName + """>Link</a>"}} | ConvertTo-Html -Head $a       
    Thanks in Advance

    Hi,
    Can you try to write it to a htm file and see the output? 
    http://technet.microsoft.com/en-us/library/ff730936.aspx
    something like below:
    Get-Service | Select-Object Sponsor,Activate,Category,FileName,@{name="Link"; expression={"<a href=""" + $web.Url + "/" + $_.Sponsor + "/Activate/" + $_.FileName + """>Link</a>"}} | ConvertTo-Html -Head $a | Out-File C:\Scripts\Test.htm
    Invoke-Expression C:\Scripts\Test.htm

  • Import data from another browser - Only few IE9 favorites get transfered to bookmarks. HTML solution - HTML file all favorites correct, but same result

    Win7 / IE9: First time use. Example: One favorites folder has 4 HTML entries - only 2 get transferred. Some have none transfered - folder empty. Others have random correct + some missing.

    Monday Nght
    I can see complete IE9 Favorites HTML list in HTML file on Desktop with Firefox -> New Tab -> Open File.-> Open
    In desktop HTML file, there are 37 IE9 folders with no more than nesting 3 deep in any one top folder. These are all correct wrt IE9 favorites.
    All top folders + deepest nests are copied to FF ok. Contents random. Copied contents work ok
    7 HTML web sites not allocated to IE9 top folders are also copied <- these 7 copy to FF and work ok
    Example: First folder in IE9 list has no nesting., IE9 has 4 entries - Firefox has only 2. when either method of copying is used.
    BTW - please advise how I can delete whole Bookmark list in Firefox in one keystroke to be able to retry with a clean Bookmark list
    I am going to uninstall Firefox and start again with a clean copy and use HTML method only to try to transfer IE( files. I will report result.
    BTW, I am in UK on UK time - hence delays in replying - need to sleep sometimes!!!!!
    Tuesday Evening
    Hi
    I uninstalled Firefox. Re installed and loaded IE9 favorites from HTML file.
    All seem copied correctly
    First time I started by using the "import data from another browser". Partial copied.
    Then I tried "Import from HTML file" without deleting whatever favorites had been copied. Still partial copied.
    All seems well.

  • HTML DB HTML (Anchor Tag)

    Hello everyone,
    I have a target of icon which enables me to open a Web page located in a repertory of my network.
    I would like to be able according to the place that I am in my application, to reach a place in page HTML (ANCHOR tag).
    I put in page HTML of the anchors such as <A NAME="Zoom">
    I tested in the target of icon: J:\PROJ\T-bord\LIV_01\relnotes0.3.2.html<a ref="#Zoom"> "target=_blank".
    The page opens, but it is not placed at Zoom inking. Can you say to me if there is another way of being able to regulate my problem?
    Thank you very much! Bye.

    Hello Vikas,
    I will try to reformulate my question with less ambiguity.
    I have in the heading of each page of my application an image with a bond to open a file .PDF.
    The file contains many information and I would like that by opening this file outward journey at a precise place in the file.
    I did not see how proceeding to do that with a file PDF.
    I then thought of modifying file PDF in format HTML.
    With this format, I can place at various places, anchors(ex : A NAME="Zoom"), in order to use them in my application HTML dB.
    At the time when I open file HTML, I want to place myself at the place that I want in the file without being obliged to traverse all the file to go to seek my information.
    In the properties of the image in HTML dB, I placed in the section of the target of icon the address of the file and also the name of the anchor to be located at a precise place of my file: J:\PROJ\T-bord\LIV_01\relnotes0.3.2.html a ref="#Zoom" "target=_blank"
    My file opens but at the beginning of the file. It is not occupied of the anchor to locate me at the desired place.
    I seek how to make?
    Thank you.
    Message was edited by:
    timiche
    Message was edited by:
    timiche
    Message was edited by:
    timiche

  • HTML within HTML

    HI all
    i am trying to analize flex and its possibilities.
    what i am trying to get out is the use of html with in html.
    Its like you have a textarea and within that tet area you can write ... well text. but what i want additionally is to mark certain text as hyperlink.
    something link this text ( mytext), only its inside a textarea and is clickable.
    myText
    If this is something that can be done via flex then i want to prototype it. and this is going to be a deciding factor for using flex or not.
    The idea behind doign is to mark certain text as different from other since we want to process that text on the server side to do dynamic things.
    So i am not necessarily trying to get a solution for doign a html within a html. but thats just one way of doing things.
    If you have done something similar in some other way, then do share.
    av.

    Thanks for the response. thats definitely  helpful.
    but its not exactly what i wanted.
    may be i should explain a little better.
    These are the step i want the users to do.
    1. users write some text in a text area. Let say the text is "hi my name is bob"
    2. user will select the text bob.
    3. right click or click on some tool bar. and a pop up will appear.
    4. do some stuff in the pop up.then click ok to close the pop up
    5. so now the text in the text area is "hi my name is bob"
    6. now the text bob is like a hyperlink or something.
    7. When you click on bob again, the pop up shows up.
    I think in this the tricky part is step 3 and 7( both related).
    can something link this be done in flex.
    av.

  • Approval Mail HTML Format: HTML code visible

    Hi,
    I'm experiencing an issue where the SC approval email is well generated in HTML, but the received (in Notes) mail content is not recognize as an HTML .
    As a consequence the HTML code is visible for the user.
    I had a look in both SDN and Sap OSS, but didn't find anything.
    Thanks in advance for your help.
    Vadim

    This note refers to a problem for the Mailto Command.
    My problem is on the Mail attributes (the mail is not recognize as an HTML mail).
    PS: My Notes version is 6.5, and I also have the issue in my webmail.
    Regards.
    Vadim

  • Play audio using HTML under HTML Resources

    Hello:
    I have created a HTML5 page that loads an audio and autoplays it. The code is shown below:
    <audio src="horse.mp3" type="audio/mp3" autoplay preload="auto" /> </audio>
    When I test it on Safari or Firefox, it does perform well, but when I compress it on the HTMLResources.zip file as required to be included on DPS, upload it, and then I call the HTML page using a button from the Overlay Creator, it doesn't play on the iPad, nor in the Desktop Viewer
    Is something wrong about including these files on the DPS? Is DPS web browsing HTML5 fully-compatible?
    Saludos,
    Leo

    It looks like there is a way for adobe to allow media to play on html articles without requiring human interaction... if they are using a UIWebView (which is likely), there is a setting they can set that allows media to play without requiring user interaction, it would be a great feature to allow this, or at least make it a setting we can set somewhere.
    They need to set the mediaPlaybackRequiresUserAction property to NO on the UIWebView (it defaults to YES).
    Here's a link to the documentation on this feature: https://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIWebView_Class/Ref erence/Reference.html#//apple_ref/occ/instp/UIWebView/mediaPlaybackRequiresUserAction
    Phone Gap and other products that aid the creation of HTML based Apps use this technique... any ideas on the best channel to get Adobe to implement it quickly?

  • PHP page with HTML and /HTML DOCTYPE ??

    The sample forms that come with my formmail script start out
    with a <php
    and ?> then has embeded php code within the following
    <html> - but no
    DOCTYPE is specified.
    Do I need a doctype in this kind of document?
    Where should it to?
    Above the initial <php?
    After the ?> and before the <html>
    OK - dumb question, but Quirks is bad and I don't know the
    answer.
    Dan H.
    (I'm not ready for XHTML yet.)

    > The HTML 'will' validate but I expect the PHP will cause
    the W3C valuator
    > to
    > hickup.
    The W3C validator will never see the PHP since it will have
    already been
    stripped from the page by the server before uploading the
    resulting HTML
    page to the validator.
    > Is there really any value to ending the document file
    name with '.php'
    > versus '.html'?
    Of course if the page contains PHP then there is (unless you
    have your
    server set to parse all file extensions). And, in general,
    there is a
    benefit to naming all pages with *.php extensions in that if
    you ever decide
    to add PHP scripting to any page in your site, you don't have
    to worry
    about search engine ramifications when you change that file's
    extension.
    Good luck Dan!
    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
    ==================
    <[email protected]> wrote in message
    news:C5B9D4F2.241E4%[email protected]...
    > Thank you Dave and Murray,
    >
    > This discussion is exactly what I needed.
    >
    > My plan is to produce <HTML> pages (ending in
    '.html') that also contain
    > PHP
    > code ( <php ... ?> ) within the html arguments.
    Some of this PHP will
    > calculate filenames to link to.
    >
    > The pages will begin with an 'html 4.0.1 transitional...
    Etc.' statement
    > followed by the <head> ... etc.
    >
    > The HTML 'will' validate but I expect the PHP will cause
    the W3C valuator
    > to
    > hickup. I'm guessing that this will NOT put me back into
    'quirks mode'.
    >
    > Is there really any value to ending the document file
    name with '.php'
    > versus '.html'?
    >
    > BTW:
    > I'll miss this forum. Everything I've learned about
    Dreamweaver over the
    > last several years and nearly everything I've learned
    about coding - I've
    > learned from reading posts in this forum by Dave,
    Murray, Al, Patty,
    > etc...
    >
    > Most of the information that is valuable to me came from
    responses to
    > questions asked by others.
    >
    > It's like the passing of a cherished era - you know -
    like the '50s...
    >
    > I wish you good fortune my friends.
    > I urge you to stick together, find an online home, and
    let the rest of us
    > know where it is so we can come and visit.
    >
    > Dan H.
    >
    > PS
    > My neighbor says it's President Obama's fault!
    > The fellow got elected preaching 'CHANGE'.
    > Now everybody's doing it and nobody has any ;^]
    > ...................................................
    >
    > [email protected] wrote:
    >> Do I need a doctype in this kind of document?
    >
    > If it contains HTML, yes.
    >
    >> After the ?> and before the <html>
    >
    > Immediately before the opening <html> tag.
    >
    > ...................................................
    >

  • Help needed in adding effects of certain HTML tags in Flex spark Richtext

    I want to apply the effects of the following HTML tags/ attributes, in my HTML text rendered in Flex Spark Richtext Component.
    Superscript - <sup>
    Subscript - <sub>
    Blockquotes - <blockquotes>
    Ordered Lists - <ol><li>
    Unordered List - <ul><li>
    Horizontal Rule - <hr>
    Direction Attribute for <p> - <p dir="rtl">Hello</p>
    Background Color for <font>
    I have observed that the above tags have no effect in RichText. Is this a limitation?
    Any solutions, tweaks and tricks will be appreciated...
    Thanks,
    Mangirish

    check this out . this should be able to answer you question.
    http://livedocs.adobe.com/flex/3/html/help.html?content=textcontrols_04.html
    Miguel

  • Page includes in html templates

    I see <% include file="header.html" %> in html template working for 'HTML' gallery type web engines.
    <br />
    <br />But, it doesn't work if the gallery type is 'Flash'. It seems the only supported directive includes are %variablename% format.
    <br />
    <br />Why LR is restricting lots of features for Flash based galleries? Is this by design or restricted for some other reasons or a bug?
    <br />
    <br />I wish if there is some flag somewhere that can be turned on so that Flash gallery type will have all the features of html. Currently I don't think it'll encourage any developer to write/adapt flash based web plugin for LR.
    <br />
    <br />Chris

    Sean, Thanks for your reply. SlideShowPro is no different. Please check any of the html pages in the SlideShowPro plugin. It doesn't use <% %> directives. Only %var% is used.
    <br />
    <br />Yes, I'm aware of what include does. That's exactly the reason why I need it in Flash gallery type. Keep the header and footer outside the template for easy user editing.
    <br />
    <br />To explain the issue in easier terms, lua coding is allowed in the template files only if you set gallery type as 'Html'. If you change it to 'Flash', it won't work.
    <br />
    <br />Even simpler,
    <br />You can use <% %> only in html gallery types.
    <br />
    <br />It's not just 'include'. If <% ... %> is allowed for Flash gallery type, you can do a lot of lua scripting in your html templates. All spoiled by LR limitation :-)

  • Text "centered" in the HTML view

    I'm a new to JavaHelp. Experimenting with RoboHelp. I find th whole thing interesting. But when using "hsviewer", all the text apears centered when the HTML files are nicely left-aligned. When generating e.g WinHelp from the same project, they appear correctly. Please Help.
    -karl roth

    Hi Karl,
    I replied via e-mail as well: The difference is because of the SPAN tags in the HTML file(s) and the text-align:justify; in the CSS file.
    Java handles HTML 3.2 with some additions up to now. See http://java.sun.com/j2se/1.4.1/docs/api/javax/swing/text/html/CSS.html and http://java.sun.com/j2se/1.4.1/docs/api/javax/swing/text/html/HTMLEditorKit.html
    for some additional explanation
    Ulrich

Maybe you are looking for

  • Pending  GR / IR Balances report  for a given period

    Hi,           How can you  check  pending  GR / IR doc's  for a given  period ?  In  MB5S there is no date field in selection sreen as well as output  layout.  Please  give  suggetions . Thanks &  Regards,        Aruna.

  • HT4236 I tried to synch to iTunes and it deleted the photos on my phone instead. Is there any way to retrieve them?

    I recently lost all of my files do to a hard drive crash. The backup service (which I will never use again) didn't back all of my photos up, but I had them on my phone. I hooked the phone up and it automatically went into some sort of synch mode, but

  • Drag and drop in Fireworks CS4?

    Hi, Does anyone know if it is possible to create a basic 'drag and drop' game in fireworks cs4?  I want to be able to drag a small image from one column in a table to another.  Any thoughts? Thanks, Denbeck

  • My blackberry is freezing when i turn it on

    hi my blackberry curve keeps frezzing when i try and turn it on when the blackberry logo and the loading bar comes on it will go so far and then freeze. i have tried taking the battery out several time but this problem keeps coming back.

  • JCo Client Trace in B2B Application (CRM 4)

    hi, does anyone know how to activate the Jco Trace in the b2b application of CRM 4? In our B2B Shop with CRM 7 there is an option in xcm to turn on "JCo.client.trace". This option is not available in the crm4 shop. Can i activate the trace somewhere