Classic/static html+css export

Unfortunately i've never really figuerd out all that div-floating margin-and-padding-overlaping css mambo jumbo
I always prefered flash over html+css becouse of its logical visual approach and I even developed my own little news cms and we suppose to live  happily ever after but apple crew that all up ;(
is it posible to make nice and clean layout in flash and then convert it to html+css?
with semantics like container symbol  -> container div and buttons become functional links?
that would get smile back on my face :/
i would appreciate any help!

Unfortunately i've never really figuerd out all that div-floating margin-and-padding-overlaping css mambo jumbo
I always prefered flash over html+css becouse of its logical visual approach and I even developed my own little news cms and we suppose to live  happily ever after but apple crew that all up ;(
is it posible to make nice and clean layout in flash and then convert it to html+css?
with semantics like container symbol  -> container div and buttons become functional links?
that would get smile back on my face :/
i would appreciate any help!

Similar Messages

  • Integrate wordpress blog into static html/css site

    I've searched with google but have not found any good explanations on how I might integrate a wordpress blog into an existing site.
    I have some familiarity with wordpress and have xampp and wordpress installed on my local computer. I'm looking for info/tutorial on how I could add a page to a static htm/css site that would have all of the navigation, header and footer elements common to the site, but the body of the page would be a wordpress blog.
    Any advice or reference to instructional info would be very much appreciated.
    thanks!

    RikRamasay14 - thank you for your reply. unfortunately the link you provided goes to a blank page with "There is currently no text in this page." message.
    The link seems to have applied to my text incorrectly.
    This is where it was supposed to go: http://codex.wordpress.org/Integrating_WordPress_with_Your_Website

  • Concept to html and css export in FWCS5

    Hi,
    I'm trying to "play" with the image to html/css for website design.
    I have a site http://bhbws.com/fairy/index02.php
    that I'd like to try this out on.  I have several issues...
    when I go to export it's exporting as .tiff and I can't find in the preferences where to change this.
    how do I export it when I have "simple rollovers" for the navigation??
    I think I can figure out the rest...
    TIA

    After adding slices to your document, use the Optimize panel to select image formats for the slices and compression levels. When finished, choose File > Export. In the Export dialog window, choose export as CSS and images, or HTML and images. Export to your predefined Dreamweaver site.

  • Export Sharepoint Site to static HTML

    I want to export a Sharepoint Site to static HTML. Is there an easy way to do it or a Tool which scrapes the content and exports the whole thing to HTML ?
    I just need the current information from a Sharepoint Site as static HTML.

    The easiest way to get a copy of a SharePoint page is to save the page through IE as a MHTML page. It doesn't scale up that brilliantly as i haven't found a nice way to automate it but it works for small scale jobs.

  • Newsletter creation and CSS export in Adobe Fireworks

    I am a new to adobe fireworks and am currently in the trial mode of my download.
    I was advised that Adobe FIreworks CS6 is the ideal program to create graphics and text to build a newsletter for my company.
    Not knowing much about the program, I was able to add graphics, text and hotspots on specific images and text with an html link for customers to be able to click to sign up for the newsletter via our website.
    The million dollar question I have is how in the world do I export this document and paste it into the "body" of an email to send to 5k contacts?
    I do not want an attachment, I want the body fo the email to be html or css coded, but I know nothing about either of the two or how to do it.
    I did find one video that walked me thru the export css process, but none of my images were shown and 90% of the text was missing.
    I believe I need to understand "layers" to get this to work properly but could really use some help!
    I am dangerously close to missing out on advertising to all 5k contacts before the holiday. Please help!!
    BTW - the reason for doing this instead of using standard mailchimp or constant contact is because I purchased my email list and those are forbidden in both constant contact and mailchimp hence why i need to create my own opt-in newsletter to get people to opt-in via my website.
    Thanks in Advance!!

    Seriously, do not use Fireworks to generate the html for your webpage.  It is graphics program with *some* html capabilites, but I would never use it for a live site.  It is always best to create the layout in Fireworks, slice it up as for use as individual images, or uses 'pieces' for background images and write the markup (html + css) in Dreamweaver or a HTML editor of your choice.
    This tutorial may help you make the transition.  Naturally it helps to have at least a basic knowledge of html and css before working with Dreamweaver, it will make using DW so much easier.
    TAKING FIREWORKS COMP TO DREAMWEAVER:
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Creating your first website (series)  (using Dreamweaver)
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS42d4a1c0291fbe4e59147ede1232ff9686c-8 000.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.perrelink.com.au
    Unique CSS Templates | Tutorials | SEO Articles
    http://www.DreamweaverResources.com
    http://twitter.com/nadiap

  • HTML+CSS conversion issue with nth-child() selector

    Why doesn't Adobe Acrobat XI Pro convert the below HTML code correctly when I try to create a PDF from it?
    I've simplified the actual code significanly in order to present the problem in its simplest possible form. The code below uses the CSS "counter" feature to modify <li> elements according to a specific pattern. This code enumerates and indents every third line in the progression 1,4,7,10,13, ...
    In Firefox and Internet Explorer, this code is displayed correctly, but Acrobat XI Pro ignores the lines with the "nth-child(3n+1)" selector which contain directives to hide line enumeration on non-matching lines and to indent text on matching lines. Acrobat XI Pro instead displays line enumeration for all lines and doesn't indent text on any line, as if the two directives containing the "nth-child(3n+1)" selector were not present at all.
    Is this a bug or is it an unsupported feature in Adobe Acrobat XI Pro?
    Whichever the case, any suggestions on a not too labourious alternative method to achieve the same result?
    As things are, I've been forced to resort to using the so called "poor man's nth-child selector" workaround (abouthalf.com/development/poor-mans-nth-child-selector-for-ie-7-and-8/), which requires manual specification of each line's content with ever-increasing code extension/repetition. It gets the job done, but in a very messy and time-consuming way, and it only works with pre-defined static content. In terms of size, the difference is that of less than 1kb CSS file size when using the nth-child() selector vs more than 75kb CSS file size when using the above mentioned workaround, for a 250 line predefined stylesheet.
    Surely there has to be a better way to deal with this issue? Support for a core HTML/CSS feature that generates ordered layout patterns for line enumeration, indentation, etc, would seem like a top priority feature to support in a product such as Adobe Acrobat Pro, given its focus on page layout...
    <html>
    <head>
    <style type="text/css">
    body { margin: 75px 90px; }
    li { list-style-type: none; counter-increment: listing; }
    li:after { content: counter(listing); float: right; margin-right: -2em;  visibility: visible; }
    li:not(:nth-child(3n+1)):after { visibility: hidden; }
    li:nth-child(3n+1) { text-indent: 25px; }
    </style>
    </head>
    <body>
    <li>Line One</li>
    <li>Line Two</li>
    <li>Line Three</li>
    <li>Line Four</li>
    <li>Line Five</li>
    <li>Line Six</li>
    <li>Line Seven</li>
    <li>Line Eight</li>
    <li>Line Nine</li>
    <li>Line Ten</li>
    </body>
    </html>

    Any suggestion what the issue and/or solution might be?

  • How to 'Publish' layout or extract the HTML/CSS?

    OK, I created a nice layout, how do I "Publish" it -- i.e. extract the HTML/CSS so I can use it on an actual web site page?  The "Reflow Overview" and other such Adobe "Getting Started" videos don't say and when I looked for such a thing as "Extract" or "Publish" or even "Upload" [ala Flash and/or Dreamweaver), all I found was "Save" and "Save As" which saves the Project as an arcane RFLW file.
    Since I found no other question like this on the Forum, I'm beginning to wonder if I'm missing something obvious!

    There was a recent update to a thread on this:
    How to export Edge Reflow work file to Dreamweaver
    Long story short, it will be easier to export code in the next release of Reflow. Until then you can get the HTML and CSS from the preview folder or you can get just the CSS from the code popover by clicking on the "<>" button on the bottom bar:
    Hope that helps and thanks for using Reflow,
    Chris

  • OT: Tutorial | How to author HTML, CSS, jQuery, and PHP 5.4 in Dreamweaver CC

    Hi all,
    Dreamweaver CC 2014 comes with a host of tutorials for both beginners and advanced users. In this tutorial you will learn how the latest support for HTML5, CSS3, jQuery and PHP5.4 in Dreamweaver can help you author static, dynamic, mobile or responsive projects.
    We would love to hear your opinion on this tutorial after you complete the training.
    https://helpx.adobe.com/dreamweaver/how-to/html-css-jquery-php-dreamweaver.html?scid=socia l26198776
    Thanks,
    Preran

    jlig wrote:
    > David, I just read thru the sample chapter 7 "Building
    Site Navigation with the
    > Spry Menu bar".
    > - Finally a Spry resource that is friendly , thorough
    and easy to follow
    > along.
    > - I especially like your honest comments in the "Mixed
    Blessing" section.
    Glad you found it useful. I felt it was essential to present
    a balanced
    view of Spry widgets, rather than giving a starry-eyed one.
    > Trying to adjust the Tab Colors, Fonts, CSS page sizes,
    margins, borders, etc
    > is a bit of a nightmare for me. I know it is just a
    matter of learning, but it
    > would help to have resources like yours that take all of
    the practical
    > considerations into mind for end-users.
    It is quite easy to do simple things with CSS, but it's very
    powerful,
    and has a long learning curve. Keep at it, and you'll get
    there in the end.
    > ps: How about a similiar new resource: "The Essential
    Guide to Dreamweaver
    > CS3 with ADDT, SPRY, CSS, AJAX and PHP / ColdFusion"
    I'm not a big fan of ADDT (Adobe knows my opinions, because I
    have told
    them directly). I would like to see how ADDT develops before
    committing
    to writing about it. As for ColdFusion, I experimented with
    it a long
    time ago, but decided I preferred to improve my knowledge of
    PHP before
    branching out into other fields.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Content delivery network vs. static HTML

    Hey everyone,
    I just finished my first animation project in Adobe Edge Animate. Excellent! Now I want to publish my banner ad.
    When I go to publish the ad, I have the choice (in publish settings) of Frameworks via CDN or Publish as static
    HTML. I typically deliver my ads to a newspaper who hosts the ads for me. I would assume I need to save as
    CDN as opposed to static HTML. Is this correct?
    matt

    Hey, Matt-
    For Animate 1.5, yes, jQuery served off of Google's servers, but it is browser-independent.  Think of Google as just another webserver in this case.  For Animate CC, jQuery is served off of Google's servers and the Animate runtime is served off of Adobe's servers.  All of this should be available regardless of what browser you use.
    Regarding the glow filter, CSS Filters are only supported by Webkit-based browsers.  Firefox is not a Webkit-based browser (whereas Chrome and Safari are), so filters are not supported.
    http://caniuse.com/#feat=css-filters
    Remember that the down-level stage (where you would post your poster image) is only displayed in browsers that do not support Animate content in general (mostly IE6-8), not just support or not support particular features that Animate makes available to the user.  Most people have gotten around this by using transparent PNGs to fake the glow to make the animation as cross-browser as possible.  While this is unfortunate, there's not much we can do to get out and push the browser's implementation of this standard.
    Hope that helps clarify things for you!
    -Elaine

  • CSS Export Efficiency

    A few developers and clients have noticed that Muse exports CSS for every single page of a site rather than utilize one, consolidated sheet.
    Are there plans to make this approach more efficient?
    It seems redundant to have individual CSS for each page even though the style pages can be limited to 1 or 2 in Muse.

    I am just curious as to why the CSS export feature does not allow the export of images that have rollover effects applied? Is there an extension that will allow this to happen, or do we just need to do this manually? It's not really too big of a deal because it is fairly simple to do in Dreamweaver, it would just be nice to save this step.
    It is always best to allow Fireworks do the job it's best at - create website layouts.  Slice up the images and export them individually and use a HTML editor like Dreamweaver to write the code.  Were you able to do this step in FWs it may save you a step, but the code it would output would be bloated and fragile as it was when FWs exported those awful dropdown menus, which thankfully have been removed from the program  :-)

  • Can I use data from Servlet in my static html page?

    First of all, I can NOT use jsp because of web server's restriction.
    I have a servlet which will give me some image links in html file via doGET and doPOST method. I also need the sizes of the images and compress the images if too large.
    My question is how I can pass the image sizes to the html page and how I can use them in html files.
    Please advise me some solutions to this problem.

    Yeah, you have 2 choices:
    1) Change your web server to one that allows JSP.
    2) Re-build the JSP system from scratch so that the one you make will work in your server. This would involve changing your so called static HTML to have markings (like <% %> tags) where you should insert the values you need to insert. You would then have a servlet that reads the 'static' HTML, parses our the insertion tags, and inserts the values. It would then stream the results back to the user.
    Of course, your HTML is not really static, it is dynamic because the values you are inserting are capable of changing.
    If you don't want to upgrade the server to one that supports JSPs (if yours really doesn't), the have fun making your own system.

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • How to develope a par file with a static html pages in NWDS

    Hi to all,
    what is the procedure to put static html pages as iviews by using programming.
    In my project hierarchy where should i keep the html file, and what component should be generated? to generate a par file.
    using that par i'll generate a iview and i will link to my page.
    but i need a procedure to generate a portal component of this type.
    if any body is having the procedure of this, or any online help documentation link u have please forward to me.
    Thanks & Regards,
    sireesha.

    Hi,
    Check whether KM is installed in your server. If yes then you can view it under Content Administration>> KM content(like the Portal Content).
    In that you can see the Root folder>>documents>>Public Documents. If you wish you can create your own folder or can  just upload the file inside that folder.
    1. to create a folder go to Folder >> new folder...
    2. to upload the file click Folder>>New>>upload.. then you can browse to the local system and from there you can upload file.
    The path that you have to give in the Iview shloud be like
    \documents\Public Documents\<your foldername>\filename.
    Hope this Helps
    gEorgE

  • STATIC "HTML Data Set Photo Gallery" with CAPTIONS

    Because of search engines and validation I would really like to use the STATIC "HTML Data Set Photo Gallery" http://labs.adobe.com/technologies/spry/demos/gallery_pe/static/china.html.
    But I definitely need captions for the Photos. I found possibilities to add them via XML, but not for the HTML-Version.
    As far as I got I think I have to edit this function from "gallery_hds.js" and add some RegEx, to extract caption text.
    function PhotosFilter(ds, row, rowIndex)
        var tnStr = row.thumbimg;
        if (tnStr)
            row.path = tnStr.replace(/.*<a[^>]*href="?([^"]*)"?.*/i, "$1");
            row.thumbpath = tnStr.replace(/.*<img[^>]*src="?([^"]*)"?.*/i, "$1");
        return row;
    In the following rows within the html-document
    <span class="thumbnail"><a href="../../gallery/galleries/paris/images/paris_02.jpg"><img src="../../gallery/galleries/paris/thumbnails/paris_02.jpg" alt="paris_02.jpg" /></a></span>
    I would insert text before the closing span-tag (or before the closing a-tag?) - like so
    <span class="thumbnail"><a href="../../gallery/galleries/paris/images/paris_02.jpg"><img src="../../gallery/galleries/paris/thumbnails/paris_02.jpg" alt="paris_02.jpg" /></a>Here is some HTML Text</span>
    This text must be extracted via RegEx - similar to the rows within the if-Statement of the upper mentioned function "PhotosFilter". But here my RegEx-knowledge is definitely to short!
    Thank you very much in advance for any help or suggestion.
    Angela Fengler

    Because of search engines and validation I would really like to use the STATIC "HTML Data Set Photo Gallery" http://labs.adobe.com/technologies/spry/demos/gallery_pe/static/china.html.
    But I definitely need captions for the Photos. I found possibilities to add them via XML, but not for the HTML-Version.
    As far as I got I think I have to edit this function from "gallery_hds.js" and add some RegEx, to extract caption text.
    function PhotosFilter(ds, row, rowIndex)
        var tnStr = row.thumbimg;
        if (tnStr)
            row.path = tnStr.replace(/.*<a[^>]*href="?([^"]*)"?.*/i, "$1");
            row.thumbpath = tnStr.replace(/.*<img[^>]*src="?([^"]*)"?.*/i, "$1");
        return row;
    In the following rows within the html-document
    <span class="thumbnail"><a href="../../gallery/galleries/paris/images/paris_02.jpg"><img src="../../gallery/galleries/paris/thumbnails/paris_02.jpg" alt="paris_02.jpg" /></a></span>
    I would insert text before the closing span-tag (or before the closing a-tag?) - like so
    <span class="thumbnail"><a href="../../gallery/galleries/paris/images/paris_02.jpg"><img src="../../gallery/galleries/paris/thumbnails/paris_02.jpg" alt="paris_02.jpg" /></a>Here is some HTML Text</span>
    This text must be extracted via RegEx - similar to the rows within the if-Statement of the upper mentioned function "PhotosFilter". But here my RegEx-knowledge is definitely to short!
    Thank you very much in advance for any help or suggestion.
    Angela Fengler

  • Inserting HTML/CSS in a Tabbed Panel

    I've been having trouble inserting HTML/CSS into a Tabbed Panel widget. In this case, the HTML/CSS is creating a text box with scroll bars (as described in an excellent workaround for getting scroll bars to work).
    Has anyone else come across this situation?
    Thanks!

    I'm not seeing the same problem (the scrolling text box displays fine in the tabbed panel for me).
    Does your HTML container fit within the content area of the panel?
    Here are screenshots from Muse Design view:
    and Preview in Browser (Firefox):
    When you say it's not working, what exactly do you mean? What's happening?
    Best regards,
    Corey
    Edited: Adding topic on creating scrolling text box for reference: http://forums.adobe.com/message/4327943#4327943)

Maybe you are looking for

  • Issue in Positive Time Mgmt

    Dear SAP - HR Experts . In My Client side , they want to shift for Positive Time Mgmt (want to capture actual times). They Usually run payroll on 25th day of every month . if they implement Positive Time in Company then they will have Time Evaluation

  • Cannot test website on local server

    I have one website that I suddenly cannot test on my local server while in Dreamweaver. Other sites work fine. I checked the application settings and I don't see a problem. Anyone have any clues?? ~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~ Liz http://www.

  • Yosemity upgrade on Macbook Pro failed on you too?

    Yosemity install just crashed on me! Macbook Pro 13" Mid 2012 i7 processor, upgraded from the latest version of Mavericks to Yosemity; in final stage it got 'stuck' stating '22 minutes' to finish', and, that's as far as it got! - now busy restoring f

  • While reinstalling Cloud desktop app, its stopped by message that says another installer is running

    First thing that happend was that my CC said that there was an update waiting, but I couldnt download it because a pop up window said that another installer is currently running and that I need to close it before installing the product, but there is

  • 5d MkIII

    Why can't I open my files from the 5d MkIII? I downloaded the Adobe Raw updates and DNG converter, but it still wouldn't work in CS6. It works in CS5. Also, is there an update to bridge? I don't have that. Is that why I can't do it? Thanks for any he