Swap text

I have some buttons which upon rollover will swap images. I
also want
them to swap text though and am wondering if I can keep the
text text
and how that is done. So I am looking to do a swap image, but
not with
an image, but with text. What is the best way to do this?
Thanks,
Brian

> div/layers because not everyone has new web browsers
that can read them
Your teacher is uninformed.
> Do you think they did the div tag with that?
Yes, I did that with a div tag.
The trick is this:
Put a layer on the page. Use DW's SetTextOfLayer behavior to
do the text
swaps for each button, all swapping the text in that layer.
When you are
finished, remove the absolute positioning from the layer, and
you will have
exactly the same effect.
But - this depends on your ability to have a page layout that
can
accommodate positioning such things.
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
==================
"james designs" <[email protected]> wrote in
message
news:e66p8u$hrg$[email protected]..
> Yes that is exactly want I want to do with the index
page, well not the
> design
> but the text swap. Do you think they did the div tag
with that? Iv'e never
> used
> em cuz my web design teacher told me they are kinda
messed up when u use
> div/layers because not everyone has new web browsers
that can read them. I
> think she is kind of outdated but I dunno.
>
> >Yes. Check this page -
> >
> ><a target=_blank class=ftalternatingbarlinklarge
> >href="
http://www.neapco.com
> ">
http://www.neapco.com
> </a>
>

Similar Messages

  • How can I "swap" text on re-load?

    Hola
    First to all, is this possible?
    Need you help to "guide" me to or help me find out how to swap text daily or on reload.
    For example, I have a div with a quote that I want to change daily (or on reload ) How can I do this?
    Thanks
    PS. I Google it and find a lot images swap, not sure if those work on text.
    Thanks again
    Daniel Ulysses

    Thanks a lot.
    Here is the link to the scrip
    http://www.javascriptkit.com/script/script2/motivatequotes.shtml
    Now, more questions, (sorry, newbe with this)
    How can I make it work?
    Where the "script part goes in my page?
    And , how can I make it appear" in the box where I have the quotes?
    Here is the script
    <script language="JavaScript1.1" src="
    http://www.mydomain.com/motivatequote.js">http://www.mydomain.com/motivatequote.js&quot;>/http://www.mydomain.com/motivatequote.js&quot;>/
    Motivational quotes script
    By JavaScript Kit (http://javascriptkit.com)
    Over 400+ free scripts here!
    </script>
    <p align="center"><font face="arial" size="-2">This free script provided by</font><br>
    <font face="arial, helvetica" size="-2"><a href="http://javascriptkit.com">JavaScript
    Kit</a></font></p>
    Can you explain more about this?
    If you can't, I understand,
    Thanks a lot
    Daniel Ulysses

  • Swap text as well as image with behaviours

    Hi a..,
    I am trying to create an interactive section of my site where a visitor can click on a small thumbnail and get a larger image to appear in a larger div (I can get this to work fine with the behaviour "swap image" so there are no problems there), but on the same onClick event I want some text to appear in another div relating to the image. I can get this to work once (using the behaviour "set text > set text to contianer" ), but when I clicks on another tumbnail to view the next image/text, the new text is added ontop of the old text and psuhes it down. What I really want is the old text to ve completely removed and the new text appear. I know this will work easily as an onMouseover/onMouseout effect, but I really want it to work as an onClick event.
    I am really bad with javascript. I have tried this line of code in the start of the onClick event, it cleared the text fine, but wouln't allow any more text to be put in the div;
    document.getElementByID('textcontainer').innerHTML=' ';
    As I said, I am really bad with javascript. I pretty much can't write code myself, although to a certain degree,  I can change code that is already written to suit my needs.
    Can someone offer me any help with being able to make this work?
    Thanks heaps,
    Peter

    Hi,
    Here is the link to a version of the page;
    http://pyrowebdesign.com.au/html/test-site/image-gallery.html
    As I said, I am really queit bad with javascript. I have put in a few examples of what i have tried to get it to work.
    The basics of it are;
    1. I want the thumbnails on the left to swap the<div class="largethumbnialimage"> section which is working fine.
    2. On the same click event, I want text to appear in the <div id="comments"> section on the right, and if therre is already text in there from somone clicking on one of the small thumbnails to see the comments, I want that text to disappear/swap/be replaced by the text of the clicked that thumbnail.
    The things I have tried make the text appear for the new thumbnail, but the onld text wont disappear and the text stacks up. I know it would be much easier to use an onMouseover/onMouseout event, but I want to put some links in the text so I need the text to say up and have people free to move th emouse over to it.
    Thanks for taking th etime to help.
    Peter

  • How to swap text members

    Hi to all and PLEASE HELP!
    First I'm a total beginner and nonprogrammer.
    I recently started a "must end" project and it's almost
    finished. But i've got one last problem.
    I want to swap a scrolling text sprite with another scrolling
    text sprite when user clicks a button.
    But without moving the framehead into another frame. My movie
    has 7 scrolling texts.
    I'm trying to do it with this primitive method:
    I placed 6 of them out of the stage where no one can see.
    And I inserted these scripts to the button which "swaps" the
    text sprites (or better to say: relocates them).
    This is the script inserted into the button which shows the
    sprite textone:
    on mouseUp me
    sprite("textone").locH = 177
    sprite("textone").locV = 460
    sprite("texttwo").locH = -600
    sprite("texttwo").locV = -600
    sprite("textthree").locH = -600
    sprite("textthree").locV = -600
    --note: I wrote the first three. it's actually 7
    end
    And this is the script inserted into the button which shows
    the sprite texttwo:
    on mouseUp me
    sprite("textone").locH = -600
    sprite("textone").locV = -600
    sprite("texttwo").locH = 177
    sprite("texttwo").locV = 460
    sprite("textthree").locH = -600
    sprite("textthree").locV = -600
    --note: I wrote the first three. it's actually 7
    end
    This script works and changes the positions of my text
    sprites. AND HERE IS THE PROBLEM:
    After the text sprite positions are changed they don't scroll
    down or up.
    What is the problem in this case? And I'm sure there are many
    other ways to swap sprites.
    How do I solve this issue? Sorry for my poor English and
    thanks for any help.

    Rather than moving sprites around, you might want to just
    exchange the member of the sprite. You would then use something
    like this for each of the buttons:
    on mouseUp me
    sprite("textOne").member = member("firstText")
    end
    This way you only need one sprite, you don't need to worry
    about locations.
    I have no idea why a text member would not scroll after its
    been moved.

  • Swapping images/text question?

    Hi, I am moving this question to this forum from general as I got a response suggesting that dynamic html could be the solution to my problem. Any guidance on how to set up the behaviour would be much appreciated.
    The problem I have is that I have created a navigation menu using plain text that changes colour on hover and two images in different divs swap images. It all works fine using a standard behaviour but now the client has asked if I can also make the opposite work ie. when the user rolls over the image, then the text changes colour. Is this possible without creating the text elements as images and swapping them using a standard behaviour?
    I am not very familiar with the capabilities of javascript so some guidance would be great.
    The present draft site is here, so you can see the problem.
    Many thanks
    Richard

    Hi Richard,
    I suggest you to use javascript. I will try to give you a basic examle for this problem with a short explanation. Let's say you have the following html code
    Here comes the default text of the elementThe image has the id of firstimage and the div#first will be the object where the text will swapped at onmouseover event.
    The code above will catch the rollower event of the #firstimaged object and will make the ChangeTextofDivIdfirst javascript function run. With the used innerHTML property you may specify any html code instead of the 'the swapping text' .
    Regards
    Zoli

  • Missing text after pdf export.

    I am having problems exporting to PDF from Publisher 2007.
    I am using Adobe professional 8, Publisher 2007 on Windows Vista 64.
    The files are created and printed to PDF. When I take a look at the PDF there are blocks of text missing. If I re-export the file again, 9 times out of 10 the text will be missing. Periodically everything will work fine with the same document. In the most recent document I am using Helvetica 55 Roman 12pt. All the body text is identical (at least from what I can tell). This exact same document exports to PDF perfectly on a Windows XP SP2 machine using Adobe Professional 8 and Office 2007.
    As far as I can tell, this only occurs in when exporting from Publisher, which leads me to believe that it is an MS problem but I have been unable to find any information about something Publisher specific.
    Thanks in advance for any help. This is frustrating.
    Jason

    I spoke too soon.
    I exported (using the adobe add-in) 8 documents. The first 1, 2, 3, 5, and 7 were fine. Numbers 4, 6, and 8 had problems.
    All these documents were created from the same template. I did the first and all subsequent documents were created by duplicating pages and swapping text. The page numbers vary from 5 to 16. There is no apparent connection with page count as several of the larger ones exported perfectly.
    I don't know if this information is relevant at all. I am hoping that it gives someone an indication of what might be causing this.
    Thanks again,
    Jason

  • Dragging Text in Table Cell

    In older versions of Pages, dragging text from a table cell into another table cell would cause the 2 cells to swap text. In '09 the dragged text overwrites the text in the cell it's dropped into. Is there a way to go back to the old way?

    No not that I know of.
    I have tried all the possible keyboard combinations and none do what you want.
    Peter

  • How to insert a Jquery slideshow to a template based html page?

    I would like to insert a simple jquery slideshow into an existing div in an html page which is linked to a template page. Do I add the js files and code to the template html or the child html where I want the slideshow? Do I need to divorce the page from the template? It seems that the js has to be put into the head from what I've read so far and this is not editable in a template child...
    lunairecollective.com/news.html is the page I wish to alter, currently there are very simple links with swap text of container. I would like to have a cyclic slideshow in the div to replace the current swap images and links.
    The website is in html4 transitional, and I'm using Dreamweaver cc
    Thanks for any help!

    Yes, there are editable areas in the child page as you saw from the website address. And I can see there are some editable elements in the head, though not all of it. Could you show me where I should insert the javascript code for a jQuery slideshow please? The relevant code follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/lunaire4_temp.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <meta name="description" content="The most recent review of Lunaire Collective printed in The Australian newspaper.">
    <meta name="keywords" content="review, The Australian, Whistler, Tom Green, Birtwistle secret theatre">
    <title>LUNAIRE COLLECTIVE: Reviews and photos of Lunaire Collective - News and Reviews</title>
    <!-- InstanceEndEditable -->
    <link href="desktop.css" rel="stylesheet" type="text/css">
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    function MM_setTextOfLayer(objId,x,newText) { //v9.0
      with (document) if (getElementById && ((obj=getElementById(objId))!=null))
        with (obj) innerHTML = unescape(newText);
    </script>
    <!-- InstanceEndEditable -->

  • The 'selected items' color randomly changes and I can't figure out why.

    Hi everybody, I recently upgraded to Firefox 13, which appears to be the most stable browser version so far and I really like it. I have loved Firefox very much, having used it since somewhere between versions 2 and 3.
    After upgrading to version 13 I noticed something that annoys me quite a bit. This may have been present before but I can't remember and I did not notice until now.
    On my computer (Windows 7 x64 Ultimate) I have set the color of the 'selected items' (specifically text) to be lime green text on a slightly off black background. I chose this color scheme because it blends very well with Firefox itself (I have the NASA night launch theme), Windows Explorer, and many web pages that I have changed to a dark theme (using the Stylish browser extension). This color scheme has excellent contrast in areas with black text on a light background, as well as light text on a dark background. It has served me well.
    After upgrading to Firefox 13 I have noticed that if the web page is dark with light text, the 'selected items' color changes to lime green text on a light grey background. (Less frequently, it changes instead to off-black text on a lime green background). I have not been able to isolate the threshold where this change occurs (meaning how dark the website background needs to be /how light the text needs to be for this to happen) nor have I found a solution.
    This problem sometimes extends even to sites that have dark text on a light background: when tabs are switched, with no input fields clicked and the address bar is not clicked. This very page (Firefox support) is apparently vulnerable as well.
    This problem only happens on rendered web pages. Firefox's menus, buttons and toolbars, as well as all other programs and Windows itself, are unaffected.
    I want the 'selected items' to remain as I have set it, and not deviate regardless of the apparent contrast or color scheme of the web page being displayed.
    [Edit #1]: Interestingly, as I was copying the information from about:support I noticed that it is affected as well.
    Any suggestions? Thanks so much, and I am sorry for the long-winded description. tl;dr look at the pictures.
    [http://i.imgur.com/vmLZ6.png selected items]
    [http://i.imgur.com/d8xsa.png example1]
    [http://i.imgur.com/2OE9J.png example2]
    [http://i.imgur.com/1lhvb.png example3]
    [http://i.imgur.com/UWOOp.png example4]

    It is always best to avoid making changes to the selected text colors.<br />
    Firefox uses an algorithm to check if the contrast is sufficient and will swap text and background colors if that test fails.<br />
    *http://mxr.mozilla.org/mozilla-central/source/layout/generic/nsTextFrameThebes.cpp#3349
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=1331845

  • Things are randomly segfaulting and I can't figure out why! [solved]

    Hi, recently I have been getting random segfaults and corruption.
    For example, I can't uncompress files, bsdtar gives errors 9/10 times and I can't compile a program.
    I get weird and random output.
    Attempt 1:
    -> Extracting libarchive-2.8.3.tar.gz with bsdtar
    bsdtar: Damaged tar archive
    bsdtar: Retrying...
    bsdtar: Damaged tar archive
    bsdtar: Retrying...
    bsdtar: Damaged tar archive
    bsdtar: Retrying...
    bsdtar: Damaged tar archive
    bsdtar: Retrying...
    bsdtar: Damaged tar archive
    Attempt 2:
    libtool: compile: gcc -DHAVE_CONFIG_H -I. -march=athlon64 -O2 -pipe -fomit-frame-pointer -MT libarchive/archive_entry_copy_stat.lo -MD -MP -MF libarchive/.deps/archive_entry_copy_stat.Tpo -c libarchive/archive_entry_copy_stat.c -fPIC -DPIC -o libarchive/.libs/archive_entry_copy_stat.o
    In file included from libarchive/archive_entry_copy_stat.c:33:
    libarchive/archive_entry.h:514: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'void'
    make[1]: *** [libarchive/archive_entry_copy_stat.lo] Error 1
    make[1]: Leaving directory `/home/youri/abs/libarchive/src/libarchive-2.8.3'
    make: *** [all] Error 2
    Attempt 3:
    do
    eval ac_val=\$$ac_var; case $ac_val in
    *${as_nl}*)
    case $ac_var in
    *_cv_*)
    { $as_echo "$as_me:$LINENO: WARNING: Cache variable $ac_var contains a newline." 1>&5; $as_echo "$as_me: WARNING: Cache variable $ac_var contains a newline." 1>&2; }
    esac; case $ac_var in
    _ | IFS | as_nl)
    BASH_ARGV | BASH_SOURCE)
    eval $ac_var=
    $as_unset $ac_var
    esac
    esac;
    done; ( set ) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in
    *${as_nl}ac_space=\ *)
    sed -n "s/'/'\\\\''/g;
    s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p"
    sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p"
    esac | sort )
    *** glibc detected *** /bin/sh: munmap_chunk(): invalid pointer: 0x00000000014c0000 ***
    ======= Backtrace: =========
    /lib/libc.so.6(+0x71906)[0x7fb5a7176906]
    /bin/sh(delete_all_jobs+0xfb)[0x4385fb]
    /bin/sh(without_job_control+0x24)[0x438694]
    /bin/sh[0x42d2bf]
    /bin/sh(execute_command_internal+0x16fc)[0x42a9fc]
    /bin/sh[0x4290ee]
    /bin/sh(execute_command_internal+0x140e)[0x42a70e]
    /bin/sh(execute_command_internal+0x12e2)[0x42a5e2]
    /bin/sh(execute_command+0x4e)[0x42aafe]
    /bin/sh(execute_command_internal+0x12a6)[0x42a5a6]
    /bin/sh(execute_command+0x4e)[0x42aafe]
    /bin/sh(execute_command_internal+0x12a6)[0x42a5a6]
    /bin/sh(execute_command+0x4e)[0x42aafe]
    /bin/sh(execute_command_internal+0x12a6)[0x42a5a6]
    /bin/sh(execute_command+0x4e)[0x42aafe]
    /bin/sh(execute_command_internal+0x12a6)[0x42a5a6]
    /bin/sh(execute_command+0x4e)[0x42aafe]
    /bin/sh(execute_command_internal+0x12a6)[0x42a5a6]
    /bin/sh(execute_command_internal+0xb06)[0x429e06]
    /bin/sh(parse_and_execute+0x1ca)[0x46568a]
    /bin/sh(run_exit_trap+0x113)[0x44ab93]
    /bin/sh(exit_shell+0x95)[0x416435]
    /bin/sh(main+0xe74)[0x417d54]
    /lib/libc.so.6(__libc_start_main+0xfd)[0x7fb5a7123b6d]
    /bin/sh[0x415fb9]
    ======= Memory map: ========
    00400000-004a6000 r-xp 00000000 08:03 8307 /bin/bash
    006a5000-006aa000 rw-p 000a5000 08:03 8307 /bin/bash
    006aa000-006b3000 rw-p 00000000 00:00 0
    01460000-0157c000 rw-p 00000000 00:00 0 [heap]
    7fb5a6cbe000-7fb5a6cd4000 r-xp 00000000 08:03 3509 /usr/lib/libgcc_s.so.1
    7fb5a6cd4000-7fb5a6ed3000 ---p 00016000 08:03 3509 /usr/lib/libgcc_s.so.1
    7fb5a6ed3000-7fb5a6ed4000 rw-p 00015000 08:03 3509 /usr/lib/libgcc_s.so.1
    7fb5a6ef9000-7fb5a6f04000 r-xp 00000000 08:03 3121 /lib/libnss_files-2.11.1.so
    7fb5a6f04000-7fb5a7103000 ---p 0000b000 08:03 3121 /lib/libnss_files-2.11.1.so
    7fb5a7103000-7fb5a7104000 r--p 0000a000 08:03 3121 /lib/libnss_files-2.11.1.so
    7fb5a7104000-7fb5a7105000 rw-p 0000b000 08:03 3121 /lib/libnss_files-2.11.1.so
    7fb5a7105000-7fb5a7252000 r-xp 00000000 08:03 3118 /lib/libc-2.11.1.so
    7fb5a7252000-7fb5a7451000 ---p 0014d000 08:03 3118 /lib/libc-2.11.1.so
    7fb5a7451000-7fb5a7455000 r--p 0014c000 08:03 3118 /lib/libc-2.11.1.so
    7fb5a7455000-7fb5a7456000 rw-p 00150000 08:03 3118 /lib/libc-2.11.1.so
    7fb5a7456000-7fb5a745b000 rw-p 00000000 00:00 0
    7fb5a745b000-7fb5a745d000 r-xp 00000000 08:03 3067 /lib/libdl-2.11.1.so
    7fb5a745d000-7fb5a765d000 ---p 00002000 08:03 3067 /lib/libdl-2.11.1.so
    7fb5a765d000-7fb5a765e000 r--p 00002000 08:03 3067 /lib/libdl-2.11.1.so
    7fb5a765e000-7fb5a765f000 rw-p 00003000 08:03 3067 /lib/libdl-2.11.1.so
    7fb5a765f000-7fb5a76b5000 r-xp 00000000 08:03 5335 /lib/libncursesw.so.5.7
    7fb5a76b5000-7fb5a78b4000 ---p 00056000 08:03 5335 /lib/libncursesw.so.5.7
    7fb5a78b4000-7fb5a78b9000 rw-p 00055000 08:03 5335 /lib/libncursesw.so.5.7
    7fb5a78b9000-7fb5a78f3000 r-xp 00000000 08:03 2997 /lib/libreadline.so.6.1
    7fb5a78f3000-7fb5a7af3000 ---p 0003a000 08:03 2997 /lib/libreadline.so.6.1
    7fb5a7af3000-7fb5a7afb000 rw-p 0003a000 08:03 2997 /lib/libreadline.so.6.1
    7fb5a7afb000-7fb5a7afc000 rw-p 00000000 00:00 0
    7fb5a7afc000-7fb5a7b1a000 r-xp 00000000 08:03 3095 /lib/ld-2.11.1.so
    7fb5a7b3e000-7fb5a7cef000 r--p 00000000 08:03 12409 /usr/lib/locale/locale-archive
    7fb5a7cef000-7fb5a7cf3000 rw-p 00000000 00:00 0
    7fb5a7d16000-7fb5a7d19000 rw-p 00000000 00:00 0
    7fb5a7d19000-7fb5a7d1a000 r--p 0001d000 08:03 3095 /lib/ld-2.11.1.so
    7fb5a7d1a000-7fb5a7d1b000 rw-p 0001e000 08:03 3095 /lib/ld-2.11.1.so
    7fb5a7d1b000-7fb5a7d1c000 rw-p 00000000 00:00 0
    7fff4289f000-7fff428b4000 rw-p 00000000 00:00 0 [stack]
    7fff429de000-7fff429df000 r-xp 00000000 00:00 0 [vdso]
    ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
    Makefile:15: *** missing separator. Stop.
    Firefox crashes the worst, deluge does too!!!!
    What's wrong!! Please help, I don't know how to fix this.
    [youri@nemesis libarchive]$ uname -a
    Linux nemesis 2.6.33-ARCH #1 SMP PREEMPT Sun Apr 4 10:27:30 CEST 2010 x86_64 AMD Athlon(tm) 64 Processor 2800+ AuthenticAMD GNU/Linux
    Edit: Nevermind, bad ram! Bah!
    Last edited by youri (2010-04-10 02:08:02)

    It is always best to avoid making changes to the selected text colors.<br />
    Firefox uses an algorithm to check if the contrast is sufficient and will swap text and background colors if that test fails.<br />
    *http://mxr.mozilla.org/mozilla-central/source/layout/generic/nsTextFrameThebes.cpp#3349
    *http://forums.mozillazine.org/viewtopic.php?f=38&t=1331845

  • Basic HTML support from CS5 stripped?

    Look, I've been using DW since Macromedia owned it. I also just upgraded from CS3 to CS5, due to the issue with OS X Lion.  I do a weekly newsletter for someone and it's all basic HTML so all email clients and/or providers display it the same. The CS5 version, basically, has stripped all the basic HTML functionality. Why?
    In CS3, I could select some text, pick a font, change the size and color and be on my way. In CS5, it's the most convoluted way to do it and it automatically creates a CSS class. I DO NOT want to use CSS in an HTML email newsletter. Gmail won't display anything correctly. Hotmail is a different issue. So is AOL. All of these providers have members on the subscriber list so it needs to work with ALL of them.
    I know CSS but I really just want to keep it HTML for the sake of compatibility. Granted, I could make all CSS inline but, this newsletter has so much information in it. If I do it using inline CSS it'll take me half a day... it normally takes only about 1.5hrs to do it using HTML. I don't want to code it all by hand either. That, too, would take me the better part of a day and, frankly, I get paid for 2hrs of work, not 8+.
    See what I mean... http://www.parkavecds.com/newsletter/
    No one wants to do all of this by hand. Especially the New Release section. How cumbersome.
    All I want to do is select, color, pick font and size and go. I also need to be able to select a table and change it's background, without using CSS. It was incredibly easy to do using CS3. Now it's impossible in CS5 unless I manually go into the code and add/remove the "background" string using HTML in the table.
    Anyone know of a basic HTML WYSIWYG editor for OS X Lion that will let me select elements on the page and adjust/add/change/remove as easily as CS3? I've tried 'em all so far... Blue Griffon, Amaya, Coda, etc... I want the simplicity of CS3. I'd hate to hook up my old computer, every week, just to make this crummy newsletter happen. Or, perhaps, I'm missing something in CS5?
    Don't get me wrong, CS5 will be perfect for when I need to do some sweet websites using CSS etc... which I aslo do. But why on earth did they nix the basic HTML functions and force a user to make it CSS? Every browser works fine using plain HTML. I understand standards and why people should learn CSS etc... but, c'mon already! It should still be a part of the program. It's the foundation of the web!!
    Thanks for your help in advance!

    beardofdoom666 wrote:
    Thanks for the link. I submitted a request, too. Same as you.
    Despite my gripe, I did ask if anyone had a suggestion for a good WYSIWYG editor that had the functionaly that I need... basic HTML with the ability to avoid CSS and/or add/change backgrounds in tables on the fly...
    Thanks!
    From my experience if you are working with clients and emailing from an Email Service Provider (ESP) you are better off making your template once and uploading to their service if it is allowed.  I've done that before with Mailchimp.  Took a bit of time to learn the template language but once you get the hang of it for the provider it's just a matter of swapping text or images.  And for an even simpler solution just use their tools.  Most allow you to create basic emails in a WYSIWYG interface.  Unfortunately though outside of their constrained templates, most resources, and I would agree, suggest that you just hand code some tables and use code editors more than WYSIWYG.
    Not to get off-topic, but even though you can't use styles for email clients like GMail, don't forget you still need HTML tags on the document.  That link you posted originally contains a </html> at the end, but no header information for the client to decipher the code, sending the clients into quirks mode where they guess at what the code should render.

  • Flash - xml - banners for affiliates

    Can someone let me know if I will be able to design  xml controlled banner ads for affiliate campaigns? I have a client that needs a solution so they can swap text and change images for ads that need to be XML controlled. I have loked thru Google and dart but cannot find either an app specifically for this or a standard size for this.
    anybody?
    rd

    quote:
    Originally posted by:
    kglad
    add a variable with a changing value to the end or your
    urlrequest string.
    Right now the code looks like this:
    var request:URLRequest = new URLRequest("eventTicker.xml");
    loader = new URLLoader(request);
    loader.addEventListener(Event.COMPLETE, loadComplete);
    I am not sure what you mean by adding a variable with a
    changing value.
    If it helps, in the actual Flash document, the "Document
    Class" is set to my class called "LoadEventData" where the code
    above is stored. So I thought by making it that way, each time the
    swf file was loaded it would make a new request to the specified
    XML file. Do I have my theory correct?

  • Xcode mkdir in C

    Hello i am new at Xcode can anyone please guide how to create new directory using c in xcode
    i wrote the following code but its not creating th e directory
    // basic file operations
    #include <iostream>
    #include <fstream>
    #include <dirent.h>
    #include <sys/types.h>
    #include <sys/stat.h>
    using namespace std;
    int main () {
    char pathname [100]= "Macintosh HD/adil";
    int mkdir(const char *pathname);
    printf("hello");
    there is a function int mkdir( const chat *pathname, mode_t mode)
    i dont know what is that mode? what should i put there?
    please reply as urgent

    In the terminal, type "man 2 mkdir". You can type "man 2 chmod" for more information about the mode. To quote:<pre> #define S_IRWXU 0000700 /* RWX mask for owner */
    #define S_IRUSR 0000400 /* R for owner */
    #define S_IWUSR 0000200 /* W for owner */
    #define S_IXUSR 0000100 /* X for owner */
    #define S_IRWXG 0000070 /* RWX mask for group */
    #define S_IRGRP 0000040 /* R for group */
    #define S_IWGRP 0000020 /* W for group */
    #define S_IXGRP 0000010 /* X for group */
    #define S_IRWXO 0000007 /* RWX mask for other */
    #define S_IROTH 0000004 /* R for other */
    #define S_IWOTH 0000002 /* W for other */
    #define S_IXOTH 0000001 /* X for other */
    #define S_ISUID 0004000 /* set user id on execution */
    #define S_ISGID 0002000 /* set group id on execution */
    #define S_ISVTX 0001000 /* save swapped text even after use */
    </pre>
    You should just be able to use octal 0644.
    There are easier ways using Cocoa <pre>- (BOOL)createDirectoryAtPath:(NSString *)path attributes:(NSDictionary *)attributes</pre>
    and some harder ways using Carbon. <pre>OSErr FSCreateDirectoryUnicode (
    const FSRef * parentRef,
    UniCharCount nameLength,
    const UniChar * name,
    FSCatalogInfoBitmap whichInfo,
    const FSCatalogInfo * catalogInfo,
    FSRef * newRef,
    FSSpec * newSpec,
    UInt32 * newDirID
    );</pre>

  • Swap Image Behavior with Text

    I am trying to figure something out but can't seem to find
    it. I'm sure it must be pretty simple, but I'm stumped. Basically,
    I have a main image and a few thumbnail images below it. I've
    attached the Swap Image behavior to each thumb to change the main
    image to a different photo and then changed the onMouseOver to
    onClick.
    The problem is I want to also have some photo text or caption
    below the main image to change. Does anyone know how to do this
    with more or less stock DW behaviors? Or if not, how to do it in
    the most efficient way possible?
    Thanks in advance.
    -Bill

    You could always embed the caption information in the image,
    you know? That
    would be the simplest way. Is that possible?
    Alternatively you could create a series of stacked
    containers, each hidden,
    in the location where you want your captions. Then you would
    make your
    onclick event do both the image swap and the Show/Hide on the
    associated
    caption container (*and* a hide on all the rest of the
    caption containers).
    This can be pretty tedious when there are lots of images, and
    you are using
    only the DW User interface (as opposed to Code view). It will
    also take you
    into the realm of positioned elements (probably) which can be
    troublesome
    themselves.
    Finally, if this is all too much for you, there are EXCELLENT
    alternatives
    over at projectseven ($) for doing something like this right
    out of the box.
    http://www.projectseven.com/
    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
    ==================
    "captcashew" <[email protected]> wrote in
    message
    news:[email protected]...
    >I am trying to figure something out but can't seem to
    find it. I'm sure it
    >must
    > be pretty simple, but I'm stumped. Basically, I have a
    main image and a
    > few
    > thumbnail images below it. I've attached the Swap Image
    behavior to each
    > thumb
    > to change the main image to a different photo and then
    changed the
    > onMouseOver
    > to onClick.
    >
    > The problem is I want to also have some photo text or
    caption below the
    > main
    > image to change. Does anyone know how to do this with
    more or less stock
    > DW
    > behaviors? Or if not, how to do it in the most efficient
    way possible?
    >
    > Thanks in advance.
    >
    > -Bill
    >
    > <p><img src="images/215-suite-2.jpg" alt="Main
    Photo" name="mainImage"
    > width="300" height="225" id="mainImage" /></p>
    > <p> </p>
    > <p> </p>
    > <p><img src="images/215-suite-2.jpg"
    alt="Thumbnail Photo 1"
    > name="thumb1"
    > width="100" height="75" id="thumb1"
    >
    onclick="MM_swapImage('mainImage','','images/215-suite-2.jpg',1)"
    />
    > <img src="images/renovations_02-after.jpg"
    alt="Thumbnail Photo 2"
    > name="thumb2" width="100" height="75" id="thumb2"
    >
    onclick="MM_swapImage('mainImage','','images/renovations_02-after.jpg',1)"
    > />
    > <img src="images/renovations_03-after.jpg"
    alt="Thumbnail Photo 3"
    > name="thumb3" width="100" height="75" id="thumb3"
    >
    onclick="MM_swapImage('mainImage','','images/renovations_03-after.jpg',1)"
    > /></p>
    >

  • ADRS Text swaps in SAPscript Debugger

    Can somebody explain this to me?
    Execute form F110_IN_AVIS in the SAPScript debugger (Activate the debugger then execute a printing test)
    Why do all the ADRS text ID includes change?
    Here is a trace snippet:
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  FOOTER    Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  HEADER    Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  ADDRESS   Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
      /: INCLUDE ADRS_SENDER OBJECT TEXT ID ADRS
      W TD439 INCLUDE TEXT ,ADRS_SENDER ,ADRS,D is not available
      /: INCLUDE ADRS_FOOTER OBJECT TEXT ID ADRS
      W TD439 INCLUDE TEXT ,ADRS_FOOTER ,ADRS,D is not available
      /: INCLUDE ADRS_HEADER OBJECT TEXT ID ADRS
      W TD439 INCLUDE TEXT ,ADRS_HEADER ,ADRS,D is not available
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    WRITE_FORM_LINES     Lines                                     Window  MAIN      Func. SET    BODY
    ND_FORM
    See the ADRS_SENDER, FOOTER and HEADERs, these are nowhere in the form itself:
    INCLUDE &REGUD-TXTFU& OBJECT TEXT ID ADRS that is the footer
    INCLUDE &REGUD-TXTKO& OBJECT TEXT ID ADRS that is the header
    INCLUDE &REGUD-TXTAB& OBJECT TEXT ID ADRS here is the sender
    It swaps these out for ADRS_SENDER, ADRS_HEADER and ADRS_FOOTER.  Why and how is that?  I actually changed the header to a real text element with an ADRS ID and it still changes to ADRS_HEADER.
    Try it out and experience my frustration.
    Thank You

    Here's why:
    The program which runs when you select printing test:
    RSTXFPR1
    Has a form called:
    SET_DEFAULT_CONTENT
    Which scans includes for ADRS and replaces it with ADRS_window_name.
    Amazing, but how am I supposed to test that my headers will work if it changes the names on me???
    *....... Set dummy-contents for windows................................
    *....... HEADER, FOOTER, ADDRESS(SENDER) ...............................
    FORM SET_DEFAULT_CONTENT USING SD_WINDOW.
    DATA: BEGIN OF SD_LINES OCCURS 0.
          INCLUDE STRUCTURE TLINE.
    DATA: END OF SD_LINES.
    DATA:
    SD_TEMPLATE LIKE TLINE-TDLINE
                VALUE 'INCLUDE ADRS_<name> OBJECT TEXT ID ADRS'. "#EC NOTEXT
      CALL FUNCTION  'READ_FORM_LINES'
           EXPORTING  WINDOW    = SD_WINDOW
                      ELEMENT   = SPACE
           TABLES     LINES     = SD_LINES
           EXCEPTIONS UNOPENED  = 1
                      OTHERS    = 9.
      IF SY-SUBRC = 0.
         LOOP AT SD_LINES. CHECK SD_LINES-TDFORMAT = '/:'.
            SHIFT SD_LINES-TDLINE LEFT
                  DELETING LEADING SPACE.
            IF SD_LINES-TDLINE(8) = 'INCLUDE '.
               IF SD_LINES-TDLINE CS 'ADRS'.
                  SD_LINES-TDLINE = SD_TEMPLATE.
                  IF SD_WINDOW = 'ADDRESS'.
                     REPLACE '<name>' WITH 'SENDER'
                                      INTO SD_LINES-TDLINE.
                  ELSE.
                     REPLACE '<name>' WITH SD_WINDOW
                                      INTO SD_LINES-TDLINE.
                  ENDIF.
                  MODIFY SD_LINES.
               ENDIF.
            ENDIF.
         ENDLOOP.
      ENDIF.

Maybe you are looking for

  • Email notifications on subscriptions

    Hello When a document changes users with a subscription get a notification email.  This also applies for workflow notifications. This works fine, but the FROM user is "[email protected]" and I want to change it in another value. I have read a lot and

  • No Software update on Mac OS X 10.5.8

    I haven't had a software update on my Mac OS X 10.5.8 in about a year. Every time I click on software update, it just says that there are no software updates at this time. Help

  • File appearence not the same in PS CS4, LR2 and Camera RAW

    I've just noticed that files as displayed in Lightroom 2 or in Camera RAW, when opened in Photoshop CS4 have a different appearence. In Photoshop the file appears much flatter and with considerably less saturation and dynamic range. When you compare

  • Turning sql  string (with dynamic columns) into a pipelined function

    Hi guys, I was working on an apex report the other day, and wrote the sql below (for those who don't know apex well, in an apex report you can define the columns at runtime.) When I was finished, I said to myself: "It would be great to have a pipelin

  • Sun Java Studio Enterprise 8 naming Web Service parameters

    I have a Web Service "hello" with operation "sayHello", which has one parameter "String name". When I build the project and look into the WSDL created I see that Studio named this parameter String_1. Why? And how can I make it name it correctly? (I k