Email scores

Hi all... I hope someone can help me!!
I have created an Xmas invitation which has a small game in
it!! Bit of a promotional thing to get people interested. The
gimmick behind it is that whoever scores the highest score we will
give a prize to in our xmas party!! Kinda fun.
What I want to do is one of 2 things...
1. Send a screenshot of the page as an email attachment - I
can' t see any way to do this, it would be good, but I have no idea
how I could do this ... If anyone knows how to do it can they
PLEASE HELP??
or
2. Send an email wth the score in the subject line. This I
have done, and it works fine on some PC's, however on some other
pc's the subject line is blank...
For the second option all I have used is the following
function:
getURL("mailto:[email protected]?subject=High
Score: "+_root.score+"&body=GOOD LUCK! To submit your high
score, please click Send button from within this email window. We
look forward to seeing you at the Christmas
Breakfast.","_blank");
Like I said the email works on lots of PC's, however lots of
PC's it will not work.
I have also encountered issues with LotusNotes, not allowing
any emails to be launched from IE (or any other web browser).
If anyone can help and suggest any other methods to send a
score back to an email address without using server technology that
would be great!!
I am about to tear my hair clean from my head!! PLEASE HELP!!
Regards,
Duncan

I got rid of the apostrophe, changed the file to a local
path...but I can't seem to get it to even test the
sucess variable?
I have put traces in, and it doesn't actully register the if
statements at all... I thought it may have had something to do with
the function being nested within a movieclip, so I have now placed
the script on the root within a function named sendEmail();
The function is getting called, however the highlighted
traces are NOT WORKING:
function sendEmail() {
var emailResponse:LoadVars = new LoadVars();
emailResponse.onLoad = function(success:Boolean) {
trace("in the function");
if (success) {
debug_txt.text = "Working";
trace("sucess");
} else {
debug_txt.text = "error downloading content";
trace("error
downloading content "+sucess);
var email:LoadVars = new LoadVars();
email.emailFrom = "[email protected]";
email.emailTo = "[email protected]";
email.emailSubject = "High score: "+_root.score;
email.emailBody = nameText+"s high score is: "+_root.score;
email.sendAndLoad("cf/email.cfm",emailResponse,"POST");
It doesn't seem to be getting into the if else statement at
all...
below is the cfm file..
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
<title>Email scores</title>
</head>
<body>
<cfif StructKeyExists(Form, "emailTo")>
<cfmail to="#Form.emailTo#" from="#Form.emailFrom#"
subject="#Form.emailSubject#">#Form.emailBody#</cfmail>
&result=true
<cfelse>
&result=false
</cfif>
</body>
</html>
I have no idea about coldFusion or any
backend/database/serverside stuff... I am sure I have stuffed
something up here... If you have 2 seconds I would love to send you
the source files for you to see what I am doing wrong... or if you
could suggest a better way for me to track the high
scores....

Similar Messages

  • Logic PDF size?

    When I use the OSX "Save as PDF" feature with Logic scores, the files are HUGE! I'm using Logic Pro 7.1. When I use my old LAP 5, the same score (saved as a PDF) is much smaller. Does anyone know why? Is there any way to reduce the size of the Logic 7 pdfs? Example: nine page score on LAP is around 1 MB - the same score on Logic Pro, 7.9 MB! Help! I often email scores to musicians, but these pdfs are too cumbersome. Note: there is no difference in the quality of the printout of the two pdfs.

    Hello.
    I love logic. (I run L6 on a 1.6 G5 PowerMac. There
    IS ONE THING THAT BUGS ME ABOUT IT THOUGH: THE SIZE
    OF THE PROGRAMME. By size i mean the actual size of
    the words, instruments, GUIs of soft synths etc.
    I am almost blind (this is no joke) and i am
    virtually six inches away from the screen in order to
    read parameters, info etc.
    Is there any way at all to rectify this? Can i alter
    the settings in logic to make the images that appear
    on screen bigger?
    I have a 19 inch monityer and cant afford the apple
    cinema screens.
    Any help would be greatly appreciated.
    Cheers
    j
    Hi John,
    I bought a ViewSonic LCD television,with a Pc input...and it is a whopping 43" (diagonal)!!!
    It does up to 1360 x 768 pixels resolution so you will see Logic in a BIG way.
    I only spent about 1300 USD for it,and believe me,you can see the musicans PIMPLEs on this one!!!...plus whenI'm done with Logic work,I can go ahead and watch TV,DVD or whatever else on it as well.WAY better than spending too much on a single-purpose monitor,or even two monitors.
    cheers,
    noeqplease

  • Using synonyms in name search

    Hello,
    i'm trying to use synonyms in an oracle namesearch. I setup a name seqarch like in the second example described in the oracle text application developer's guide at http://download.oracle.com/docs/cd/E18283_01/text.112/e16594/search.htm
    Now the name i'm searching for might contain a '&', for example 'B & V'.
    I'd like to find this text when i enter 'B&V', B & V' or even 'B and V'.
    I found a thread about setting up a thesaurus with synonyms for '&' and 'and' at "and" and Ampersand or special characters
    Now i wonder how to combine this.
    Thanks for help in advance,
    Dirk

    In the following example, I started with the code from the second example in the link provided. I added one row of data containing the "B & V" for testing. I added "&" and "and" to the thesaurus as synonyms. I added a function to format the search string by adding an extra space around "&", removing duplicate spaces, adding "{" and "}" around each reserved keyword, trimming the result, and returning it. I then modified the query to use the function. That seems to be all that is necessary. It does not seem to be necessary to change the stoplist or printjoins, due to the way the rest of the code is written. I added comment lines to show where I made changes. I did not change the procedure, but you may want to modify it as the usage of regexp seems to be only outputting the last four digits of the phone.
    SCOTT@orcl_11gR2> create table emp (
      2        first_name    varchar2(30),
      3        middle_name   varchar2(30),
      4        last_name     varchar2(30),
      5        email            varchar2(30),
      6        phone            varchar2(30));
    Table created.
    SCOTT@orcl_11gR2> insert into emp values
      2  ('John', 'Black', 'Smith', '[email protected]', '123-456-7890');
    1 row created.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> -- added row of data:
    SCOTT@orcl_11gR2> set define off
    SCOTT@orcl_11gR2> insert into emp values
      2  ('Jane', 'Doe', 'word B & V word', '[email protected]', '321-654-0987');
    1 row created.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> create or replace procedure empuds_proc
      2       (rid in rowid, tlob in out nocopy clob) is
      3         tag varchar2(30);
      4         phone varchar2(30);
      5  begin
      6    for c1 in (select FIRST_NAME, MIDDLE_NAME, LAST_NAME, EMAIL, PHONE
      7              from emp
      8              where rowid = rid)
      9    loop
    10         tag :='<email>';
    11         dbms_lob.writeappend(tlob, length(tag), tag);
    12         if (c1.EMAIL is not null) then
    13             dbms_lob.writeappend(tlob, length(c1.EMAIL), c1.EMAIL);
    14         end if;
    15         tag :='</email>';
    16         dbms_lob.writeappend(tlob, length(tag), tag);
    17         tag :='<phone>';
    18         dbms_lob.writeappend(tlob, length(tag), tag);
    19         if (c1.PHONE is not null) then
    20           phone := nvl(REGEXP_SUBSTR(c1.PHONE, '\d\d\d\d($|\s)'), ' ');
    21           dbms_lob.writeappend(tlob, length(phone), phone);
    22         end if;
    23         tag :='</phone>';
    24         dbms_lob.writeappend(tlob, length(tag), tag);
    25         tag :='<fullname>';
    26         dbms_lob.writeappend(tlob, length(tag), tag);
    27         if (c1.FIRST_NAME is not null) then
    28           dbms_lob.writeappend(tlob, length(c1.FIRST_NAME), c1.FIRST_NAME);
    29           dbms_lob.writeappend(tlob, length(' '), ' ');
    30         end if;
    31         if (c1.MIDDLE_NAME is not null) then
    32           dbms_lob.writeappend(tlob, length(c1.MIDDLE_NAME), c1.MIDDLE_NAME);
    33           dbms_lob.writeappend(tlob, length(' '), ' ');
    34         end if;
    35         if (c1.LAST_NAME is not null) then
    36           dbms_lob.writeappend(tlob, length(c1.LAST_NAME), c1.LAST_NAME);
    37         end if;
    38         tag :='</fullname>';
    39         dbms_lob.writeappend(tlob, length(tag), tag);
    40       end loop;
    41    end;
    42  /
    Procedure created.
    SCOTT@orcl_11gR2> show errors
    No errors.
    SCOTT@orcl_11gR2> begin
      2    ctx_ddl.create_preference('empuds', 'user_datastore');
      3    ctx_ddl.set_attribute('empuds', 'procedure', 'empuds_proc');
      4    ctx_ddl.set_attribute('empuds', 'output_type', 'CLOB');
      5  end;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> begin
      2    ctx_ddl.create_section_group('namegroup', 'BASIC_SECTION_GROUP');
      3    ctx_ddl.add_ndata_section('namegroup', 'fullname', 'fullname');
      4    ctx_ddl.add_ndata_section('namegroup', 'phone', 'phone');
      5    ctx_ddl.add_ndata_section('namegroup', 'email', 'email');
      6  end;
      7  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> begin
      2    ctx_thes.create_thesaurus ('nicknames');
      3    ctx_thes.create_relation ('nicknames', 'John', 'syn', 'Jon');
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> -- added synonym to thesaurus:
    SCOTT@orcl_11gR2> begin
      2    ctx_thes.create_relation ('nicknames', '&', 'syn', 'and');
      3  end;
      4  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> begin
      2       ctx_ddl.create_preference('NDATA_WL', 'BASIC_WORDLIST');
      3       ctx_ddl.set_attribute('NDATA_WL', 'NDATA_ALTERNATE_SPELLING', 'FALSE');
      4       ctx_ddl.set_attribute('NDATA_WL', 'NDATA_BASE_LETTER', 'TRUE');
      5       ctx_ddl.set_attribute('NDATA_WL', 'NDATA_THESAURUS', 'NICKNAMES');
      6       ctx_ddl.set_attribute('NDATA_WL', 'NDATA_JOIN_PARTICLES',
      7        'de:di:la:da:el:del:qi:abd:los:la:dos:do:an:li:yi:yu:van:jon:un:sai:ben:al');
      8  end;
      9  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> create index name_idx on emp (first_name)
      2  indextype is ctxsys.context
      3  parameters
      4    ('datastore  empuds
      5        section    group namegroup
      6        wordlist   ndata_wl');
    Index created.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> -- added function to format search string:
    SCOTT@orcl_11gR2> create or replace function format_string
      2    (p_string in varchar2)
      3    return varchar2
      4  as
      5    v_string     varchar2 (32767) := ' ' || p_string || ' ';
      6  begin
      7    -- add extra spaces around ampersand:
      8    v_string := replace (v_string, '&', ' & ');
      9    -- remove duplciate spaces:
    10    while instr (v_string, '  ') > 0
    11    loop
    12        v_string := replace (v_string, '  ', ' ');
    13    end loop;
    14    -- add { and } around each reserved word:
    15    for r in
    16        (select keyword,
    17             ' ' || keyword || ' ' keyword2
    18         from      v$reserved_words)
    19    loop
    20        v_string := replace (upper (v_string), r.keyword2, ' {' || r.keyword || '} ');
    21    end loop;
    22    return ltrim (rtrim (v_string));
    23  end format_string;
    24  /
    Function created.
    SCOTT@orcl_11gR2> show errors
    No errors.
    SCOTT@orcl_11gR2> -- examples of usage of function:
    SCOTT@orcl_11gR2> select format_string ('B & V') from dual;
    FORMAT_STRING('B&V')
    B {&} V
    1 row selected.
    SCOTT@orcl_11gR2> select format_string ('B and V') from dual;
    FORMAT_STRING('BANDV')
    B {AND} V
    1 row selected.
    SCOTT@orcl_11gR2> select format_string ('B&V') from dual;
    FORMAT_STRING('B&V')
    B {&} V
    1 row selected.
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> -- query modified to apply foramt_string function to :name variable:
    SCOTT@orcl_11gR2> var name varchar2(80);
    SCOTT@orcl_11gR2> exec :name := 'Jon Blacksmith'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> column first_name  format a10
    SCOTT@orcl_11gR2> column middle_name format a11
    SCOTT@orcl_11gR2> column last_name   format a9
    SCOTT@orcl_11gR2> column phone          format a12
    SCOTT@orcl_11gR2> column email          format a22
    SCOTT@orcl_11gR2> select first_name, middle_name, last_name, phone, email, scr
      2  from   (select /*+ FIRST_ROWS */
      3                first_name, middle_name, last_name, phone, email, score(1) scr
      4            from   emp
      5            where  contains
      6                  (first_name,
      7                   'ndata (phone,'       || format_string (:name) || ') OR
      8                 ndata (email,'       || format_string (:name) || ') OR
      9                 ndata (fullname,' || format_string (:name) || ')',
    10                   1) > 0
    11            order  by score (1) desc)
    12  where  rownum <= 10;
    FIRST_NAME MIDDLE_NAME LAST_NAME PHONE        EMAIL                         SCR
    John       Black       Smith     123-456-7890 [email protected]         93
    1 row selected.
    SCOTT@orcl_11gR2> -- enter new values for :name and re-run query:
    SCOTT@orcl_11gR2> exec :name := 'B & V'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
    FIRST_NAME MIDDLE_NAME LAST_NAME PHONE        EMAIL                         SCR
    Jane       Doe         word B &  321-654-0987 [email protected]           61
                           V word
    1 row selected.
    SCOTT@orcl_11gR2> exec :name := 'B and V'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
    FIRST_NAME MIDDLE_NAME LAST_NAME PHONE        EMAIL                         SCR
    Jane       Doe         word B &  321-654-0987 [email protected]           80
                           V word
    1 row selected.
    SCOTT@orcl_11gR2> exec :name := 'B&V'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
    FIRST_NAME MIDDLE_NAME LAST_NAME PHONE        EMAIL                         SCR
    Jane       Doe         word B &  321-654-0987 [email protected]           61
                           V word
    1 row selected.
    SCOTT@orcl_11gR2> exec :name := 'B something V'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> /
    no rows selected
    SCOTT@orcl_11gR2>
    SCOTT@orcl_11gR2> -- cleanup:
    SCOTT@orcl_11gR2> drop function format_string;
    Function dropped.
    SCOTT@orcl_11gR2> exec ctx_ddl.drop_preference('ndata_wl');
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> exec ctx_thes.drop_thesaurus ('nicknames');
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> exec ctx_ddl.drop_section_group('namegroup');
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> exec ctx_ddl.drop_preference('empuds');
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> drop procedure empuds_proc;
    Procedure dropped.
    SCOTT@orcl_11gR2> drop table emp;
    Table dropped.
    SCOTT@orcl_11gR2>

  • Quiz scores as email attachment

    Hi.
    I cant seem to get the quiz scores to post as an
    attachment.They always show in the body. im using captivate 4. i
    have posted the quiz to a web server. I set the quiz preferences -
    email -attachment. I seems very simple.. is there a trick to
    getting it to work?
    Thanks
    Mike

    When you send as an e-mail, do you mean the html produced report or some sort output file? You could send it as an excel produced output.
    Why can't you use a PDF option in this case?
    Thank you,
    Tony Miller
    Webster, TX

  • HT201210 After asking a question last week, I now get scores of emails every day. I turned off the radio buttons on " notify me by email " respectfully please help

    After asking a question to the community last week, It now get scores of emails now with questions . I had marked the radio buttons to be notified but
    Later found them, and un clicked them all. Also I might have been hacked, because I was charged yesterday with an App, that I did not order!!!
    I only know that, because I get an instant message from my bank by phone, when I spend any money. I am worried.
    Bambi

    Hello Dorothea5916,
    It sounds like you changed your forum account preferences and now they have changed back, and you have an unauthorized purchase on your iTunes Store account and have concerns about your account security. I recommend first changing your Apple ID password with this article:
    Apple ID: Changing your password
    http://support.apple.com/kb/ht5624
    Go to My Apple ID (appleid.apple.com).
    Click “Manage your Apple ID” and sign in.
    If you have two-step verification turned on, you'll be asked to send a verification code to the trusted device associated with your Apple ID. If you're unable to receive messages at your trusted device, follow the guidelines for what to do if you can't sign in with two-step verification.
    Click "Password and Security".
    In the "Choose a new password" section, click Change Password.
    Enter your old password, then enter a new password and confirm the new password. Click Save when done.
    The next time you use an Apple feature or service that uses Apple ID, you'll be asked to sign in with your new Apple ID password
    You should also report an issue with the purchase to the iTunes Store support directly with the following article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    To enhance security for your account you may want to look into Two-Step Verification to help prevent unauthorized access to your account:
    Apple ID: Frequently asked questions about two-step verification for Apple ID
    http://support.apple.com/kb/ht5570
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • High Score Framework / Email sender

    Does anyone know of a Cocoa High Score framework or something I could use in my program? Even better would be a sample program that could send emails.

    Can you help me with the writing of the code for using a stopwatch to calculate and store the highscore please?
    Just select the bits you need from the example code at that site.
            Dim stopWatch
    As New Stopwatch() 'Create a stopwatch
            stopWatch.Start() 'Start the stopwatch
            stopWatch.Stop() 'Stop a stopwatch       
    Dim ts As TimeSpan = stopWatch.Elapsed 'Get a timespan to check the elapsed time.
    The only decision to make is where those lines go.  The third one is obviously in your checkhit sub, just before you check the seconds in the timespan.  The second will be at the point where the current play sequence starts, and that is not evident
    from what you posted, but it might be the same place you start the timer ticking.  The first can be anywhere, so long as the scope is sufficient for the usage.  At worst, you can put it at the form level.  Depending on exactly what you are measuring,
    and whether it repeats or pauses, you may need to use .Reset as well, but that is not apparent from your code.

  • I would like to include a quiz score in the email receipt.

    I set up a "score" field in the quiz. but I cannot enter a formula to a field that is in the form.
    Perhaps use a copy of the hidden formula field? But how to do that?
    It would be an excellent feature to add for teachers.

    Hi,
    FormsCentral doesn't support this functionality. You can use this form to "vote" on popular feature requests, or to add a new one of your own:
    https://adobeformscentral.com/?f=XnF-KJVCovcEVQz9tZHYPQ
    Thanks,
    Wenlan

  • Can you choose which emails are downloaded?

    I had a lot of fun tonight at launch of iPhone in the UK at local Apple Store.
    Had used the iPhone in US months ago - it's better than I remembered!
    But I'm puzzled about apparent lack of one feature which is important for mail management. have I missed it or is it really absent? The 'genius' didn't seem to want to acknowledge its importance.
    When I'm on the road I habitually pick up email on a Samsung phone. Not as slick as iPhone but for POP accounts the email client downloads email headers, then lets me select whether I want to download the body of the email.
    For a cellphone this is very sensible. the header shows email size. if someone has sent me a 2MB picture say, I don't want to spend ages downloading it over a slow mobile connection.
    But as far as I can tell the iPhone downloads entire emails from a selected POP account. Not too bad if you have wi-fi access, but very inconvenient when you don't even over EDGE.
    How does iPhone handle this?
    The other useful mail management on my current phone is ability to delete messages from either phone pnly or phone and server (at next connection). If I'm away for a few days I don't come back and have to download/scan scores of emails I've already deleted using the phone, but I can download emails I want to archive on my main machine. Again can iPhone do this i.e. delete selected emails from the server on a regular POP account?
    I will probably get the iPhone even if its email client can't do this, but would be nice to know if it's possible.
    Thanks in advance for advice

    When you check for email, emails waiting in the queue are downloaded with the subject and the first 3 lines visible to read. You can adjust the number of visible lines and total number of emails to get (25 minimum is the default).
    If you then decide to read one of those emails, it will then access your email account again and THEN download the rest, including attachments. You can abort the download at any time if too large.
    If you deleting email from your iPhone doesn't necessarily delete it from the server. This will be based on your settings. For example, I choose to leave my emails on the server even though I have deleted them from my iPhone because I want the full email downloaded to my computer when I get back into the office.
    Hope that helps!

  • Emails to myself go to junk folder

    Hello All,
    I send myself emails occasionally using my @mac.com email address. In the last few days these mails are going to the junk folder rather than to the inbox, which, needless to say, is problematic. There are two observations I can make:
    1. In the junk folder, the messages are NOT marked as junk. Their color is black as opposed to the orange for other messages, the junk button (thumb up or down) is indicating them to not be a junk message, and also they are not showing the bar that appears on other messages.
    2. When I look at the headers for recent messages I see the following two lines:
         X-Clx-Spam: true
         X-Clx-Score: -1032
         Whereas in older messages I see:
         X-Clx-Spam: false
         X-Clx-Score: 107
         The score varies between some of the messages, but only slightly. Presumably this is the result of some statistical algorithm that determines whether a      message is spam or not.
    3. When I copy other email addresses the problem does not seem to occur
    This happens regardless of client used (iPhone, iPad or mail on OSX). I tried to reset the junk mail settings, but to no avail.
    I'd appreciate any advice, thanks in advance.

    OK, I assumed that you had already tried these things. The port and SSL settings in Preferences > Accounts > Advanced refer to the incoming (POP) mail server and have no bearing on this.
    What matters here are the settings that become available when you click the Outgoing Server Settings button in Preferences > Accounts > Account Information -- yes, it's a really confusing interface.
    The settings to be used there depend on the ISP. Some ISPs require authentication, some don't. Some ISPs require SSL encryption of the password, others can handle it but don't require it, others cannot handle it at all. Different ISPs may use different authentication protocols (e.g. Password, MD5, Kerberos, ...). Some ISPs use different servers depending on whether authentication is used or not... You get the idea...
    I almost always avoid the "Cannot send" threads in this forum because in most cases the user just doesn't know which settings he/she should use, and there is no way for me to know either. You must check with your ISP what those settings are supposed to be -- there is usually a web page on the ISP's site with that information.
    Now, even if you know what the settings should be, there could be other problems such as the standard port being blocked for spam-related reasons, and this is where Mail Help may provide useful information. There are several articles grouped under "Problems sending and receiving mail". In some of them, Apple suggests, amongst other things, trying to change the outgoing server port to 587 instead of 25, which seems to solve most "cannot send" problems being posted in this forum.

  • Why is my HTML email showing up wrong in different email account?

    I've seen this before and I think it has to do with CSS (which I realize isn't supposed to be in emails), but I'm super new to this and have scoured the internet to find out exactly what I'm doing wrong and how to fix it. It shows up properly in my Yahoo acccount, but not in my Gmail accounts (which initially threw it in Spam, if that has anything to do with it). I only know the very basics of HTML and CSS, but still have get this work done and I'm assuming someone will be able to view the code and see what my issue is pretty quick - I hope! It previews in browsers just fine, it's only when I'm click "Forward to a Friend" to send it to myself to test.
    See the HTML and screencaps of the difference in view below...
    My HTML:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
    <meta name="Description" content="LandOf.org is a land use information salon for Minnesota developers, planners and the public to learn about growing smarter. LandOf.org covers everything along the transect from central cities to rural areas with topics such as mixed land use to stakeholder collaboration with experts, downloadable plans, case studies and images for each. LandOf.org is a mingling of voices that asks, &ldquo;how can we do what&rsquo;s best for Minnesota?&rdquo;
    " />
    <title>Summer Reading List: Best of Smarting Off Blog</title>
    <style type="text/css">
    .rulebottom {
              border-bottom-width: 1px;
              border-bottom-style: dotted;
              border-bottom-color: #483225;
    .ruleleft {
              border-left-width: 1px;
              border-left-style: dotted;
              border-left-color: #483225;
    .texta {
              font-family: arial, helvetica, sans-serif;
              font-size: 11px;
              color: #483225;
    .texta a {
              font-family: arial, helvetica, sans-serif;
              font-size: 11px;
              color: #483225;
    .titlea {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 19px;
              text-decoration: none;
              color: #80CCA9;
    .titleb {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 19px;
              text-decoration: none;
              color: #154051;
    .textblue {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 11px;
              text-decoration: none;
              color: #154051;
    .bottominfo {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 11px;
              line-height: 16px;
              color: #FFFFFF;
    .border {
              border: thin solid #7C5A45;
    .text {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 12px;
              color: #977347;
              line-height: 16px;
    .intro {
              font-family: Georgia, "Times New Roman", Times, serif;
              font-size: 12px;
              line-height: 16px;
              color: #977347;
              font-style: italic;
    .publisher {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 14px;
              color: #3D1B01;
    .text a {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 12px;
              color: #87C1A9;
              line-height: 16px;
    body {
              background-color: #EAF5AE;
    .text1 {
              font-family: Arial, Helvetica, sans-serif;
              font-size: 12px;
              color: #171800;
              line-height: 18px;
    </style>
    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    try {
    var pageTracker = _gat._getTracker("UA-2283394-35");
    pageTracker._trackPageview();
    } catch(err) {}</script>
    </head>
    <body>
    <table width="750" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#EAF5AE">
      <tr>
        <td><p align="center"> </p>
          <p align="center"><span class="text">Summer reading list from LandOf.org. Having trouble viewing this email? <a href="http://www.landof.org/email/7-13.html" target="_blank" style="color:#6CA233">View it online.</a></span></p>
          <table width="650" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
            <tr>
              <td colspan="6"><div align="right"><a href="http://www.landof.org" target="_blank"><img src="http://www.landof.org/email/images/head.jpg" width="650" height="129" border="0" /></a></div></td>
            </tr>
            <tr>
              <td width="26" rowspan="6" valign="top"><img src="http://www.landof.org/images/spacer.gif" width="25" height="1" /></td>
              <td width="425" valign="top"></td>
              <td width="14" rowspan="6" valign="top"><img src="http://www.landof.org/images/spacer.gif" width="14" height="1" /></td>
              <td width="16" rowspan="6" valign="top"><img src="http://www.landof.org/images/spacer.gif" width="15" height="1" /></td>
              <td width="150" rowspan="6" valign="top"><table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td><table width="150" height="3" border="0" cellpadding="0" cellspacing="0">
                        <tr>
                          <td></td>
                        </tr>
                        <tr>
                          <td bgcolor="#FFFFFF"><table width="150" border="0" cellspacing="0" cellpadding="0">
                              <tr>
                                <td><table width="150" height="3" border="0" cellpadding="0" cellspacing="0" bgcolor="#154051">
                                    <tr>
                                      <td></td>
                                    </tr>
                                  </table></td>
                              </tr>
                              <tr>
                                <td><p align="left"><br />
                                    <img src="http://www.landof.org/email/images/blog-bubble.jpg" width="87" height="69" /><br />
                                  </p>
                                  <font style="color:#154051;font-family:Arial;font-size:8pt;font-weight:bold;line-height:10pt;"> THE LATEST FROM THE SMARTING OFF BLOG </font><br />
                                  <br />
                                  <font style="color:#154051;font-family:Arial;font-size:8pt;font-weight:normal;line-height:11pt; "><strong>Recommendations: Who to Check out on Facebook</strong><br />
                                  <br />
                                  The following are a few of our favorites to keep in touch with on Facebook. Like them too for resources, news and more.</font><br />
                                  <br />
                                  <font style="color:#154051;font-family:Arial;font-size:8pt;font-weight:normal;line-height:11pt; "><a href="http://blog.landof.org/2012/09/recommendations-who-to-like-on-facebook.html" target="_blank" style="color:#6CA233">Read more. &raquo;</a> </font> <br/>
                                  <br />
                                <br/></td>
                              </tr>
                            </table></td>
                        </tr>
                      </table></td>
                  </tr>
                  <tr>
                    <td height="3px" bgcolor="#154051" ></td>
                  </tr>
                  <tr>
                    <td><div align="center"> <a href="http://www.landof.org/email/12-12.html"><img src="http://www.landof.org/email/images/last-issue.jpg" alt="Read the last issue" width="150" height="208" border="0" /></a> </div></td>
                  </tr>
                </table>
                <a href="http://blog.landof.org/2011/02/celebrate-life-in-twin-cities-watch.html" target="_blank"></a></td>
              <td width="20" rowspan="6" valign="top"><img src="../images/spacer.gif" width="20" height="1" /></td>
            </tr>
            <td valign="top"><img src="http://www.landof.org/email/images/recommended.jpg" alt="Recommended" width="425" height="75" /><br />
                <table width="421" border="0" cellspacing="0" cellpadding="0">
                </table></td>
            </tr>
            <tr>
              <td valign="top"><p><strong><a href="http://blog.landof.org/2013/05/16-rules-for-growing-smarter-city.html" target="_blank" style="color:#977347;font-family:Arial, Helvetica, sans-serif;font-size:15px;line-height:20px">16 Rules for Growing a Smarter City</a></strong>
                <p><font style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #977347;line-height: 16px;">Kaid Benfield&mdash;professor, nonprofit founder and author specializing in the topics of smart growth and sprawl&mdash;discusses the need for moving past simply advocating for smart growth to putting quality plans into action.<br />
                  <br />
                <a href="http://blog.landof.org/2013/05/16-rules-for-growing-smarter-city.html" target="_blank" style="color:#6CA233">Read more.</a></font>           
                <hr noshade="noshade" size="1" />
                <p><strong><a href="http://blog.landof.org/2013/05/northfield-named-as-having-complete.html" target="_blank" style="color:#977347;font-family:Arial, Helvetica, sans-serif;font-size:15px;line-height:20px">Northfield Named as Having a &quot;Complete Street Policy&quot;</a></strong></p>
                <p><font style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #977347;line-height: 16px;">There are 488 cities, states and regions with Complete Street policies in the US. In 2012, 130 new policies were passed. Northfield, MN has made the cut.<br />
                  <br />
                  <a href="http://blog.landof.org/2013/05/northfield-named-as-having-complete.html" target="_blank" style="color:#6CA233">Read more. &raquo;</a></font></p>
                <hr noshade="noshade" size="1" />
                <p><strong><a href="http://blog.landof.org/2013/05/walk-score-ranks-most-walk-and-bike.html" target="_blank" style="color:#977347;font-family:Arial, Helvetica, sans-serif;font-size:15px;line-height:20px">Walk Score Ranks Most Walk- and Bike-Friendly US Cities</a></strong><br />
                  <br />
                  <font style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #977347;line-height: 16px;">Where do the Twin Cities rank regarding their walking and biking scores? What cities are doing better? How can we improve?<br />
                  <br />
                  <a href="http://blog.landof.org/2013/05/walk-score-ranks-most-walk-and-bike.html" target="_blank" style="color:#6CA233">Read more. &raquo;</a></font></p>
                <hr noshade="noshade" size="1" />
                <p><strong><a href="http://blog.landof.org/2013/05/generation-y-prefers-walkable-downtown.html" target="_blank" style="color:#977347;font-family:Arial, Helvetica, sans-serif;font-size:15px;line-height:20px">Generation Y Prefers Walkable Downtown Living&mdash;For Now</a></strong><br />
                </p>
                <table width="425" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                    <td width="267"><font style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #977347;line-height: 16px;">People in the 18-to-34 age bracket currently prefer to rent in downtown areasover the suburbs and a sprawling yard. But what happens when they decide to raise families in larger homes?<br />
                      <br />
                      <a href="http://blog.landof.org/2013/05/generation-y-prefers-walkable-downtown.html" target="_blank" style="color:#6CA233">Read more. &raquo;</a></font></td>
                    <td width="18"> </td>
                    <td width="140" valign="top"><img src="http://www.landof.org/email/images/7-13-walkabledowntown2.jpg" width="140" height="105" alt="Downtown Mpls" /></td>
                  </tr>
                </table>
                <hr noshade="noshade" size="1" />
                <p><strong><a href="http://blog.landof.org/2013/06/barcelona-fold-out-apartment-is-just.html" target="_blank" style="color:#977347;font-family:Arial, Helvetica, sans-serif;font-size:15px;line-height:20px">Barcelona Fold-Out Apartment Is Just 250 Square Feet</a></strong><br /></p>
                <p><font style="font-family: Arial, Helvetica, sans-serif;font-size: 12px;color: #977347;line-height: 16px;">This ingenious tiny studio apartment has everything a larger home does&mdash;a dining room, a kitchen, a bedroom, a lounge and more. How does it all fit into 250 square feet?<br />
                  <br />
                <a href="http://blog.landof.org/2013/06/barcelona-fold-out-apartment-is-just.html" target="_blank" style="color:#6CA233">Read more. &raquo;</a></font></p>
                <p> </p></td>
            </tr>
          </table>
          <div align="center">
            <p align="center"><a href="http://www.landof.org/email/forward/forwardplease.html" target="_blank"><img src="http://www.landof.org/email/images/forward.png" width="200" height="50" border="0" /></a></p>
            <p align="center" class="texta"><a href="http://www.landof.org/privacy.html" target="_blank" style="color:#483225">Privacy Policy</a></p>
            <font style="font-family:arial,helvetica,sans-serif;font-size: 11px;color:#483225;">To ensure you continue to receive this email, please add <a href="mailto:[email protected]" target="_blank" style="color:#483225">[email protected]</a> to your address book.<br />
            Did someone forward this email to you? <a href="http://www.landof.org/contact.aspx" target="_blank" style="color:#483225">Sign up</a> to receive your own notifications from LandOf.org.<br />
            <br />
            <u><a href="mailto: [email protected]" target="_blank" style="color:#483225">Request more information or contact LandOf.org</a></u>.<br />
            <br />
            <a href="http://www.landof.org" target="_blank" style="color:#483225">www.LandOf.org</a> | &copy;2012 LandOf.org<br />
            26 E. Exchange Street, Suite 206, St. Paul, MN 55101</font>
            <p align="center" class="texta">
              <!-- AddThis Button BEGIN -->
              <a href="http://api.addthis.com/oexchange/0.8/forward/facebook/offer?pco=tbxnj-1.0&url=landof.org%2 Femail%2F10-12.html&pubid=xa-4feb7dd23fdf0efa" target="_blank" ><img src="http://cache.addthiscdn.com/icons/v1/thumbs/facebook.gif" border="0" alt="Facebook" /></a> <a href="http://api.addthis.com/oexchange/0.8/forward/twitter/offer?pco=tbxnj-1.0&url=landof.org%2F email%2F10-12.html&pubid=xa-4feb7dd23fdf0efa" target="_blank" ><img src="http://cache.addthiscdn.com/icons/v1/thumbs/twitter.gif" border="0" alt="Twitter" /></a> <a href="http://www.addthis.com/bookmark.php?source=tbxnj-1.0&=250&amp;pubid=xa-4feb7dd23fdf0efa&ur l=landof.org%2Femail%2F10-12.html " target="_blank"  ><img src="http://cache.addthiscdn.com/icons/v1/thumbs/more.gif" border="0" alt="More..." /></a>
              <!-- AddThis Button END -->
            </p>
            <p align="center" class="texta"><a href="http://www.adsoka.com/w2e.html" target="_blank" style="color:#483225">Email by Adsoka</a></p>
          </div></td>
      </tr>
    </table>
    </body>
    <script type="text/javascript">
      var _gaq = _gaq || [];
      _gaq.push(['_setAccount', 'UA-2283394-35']);
      _gaq.push(['_trackPageview']);
      (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
    </script>
    </html>
    How it's supposed to show up:
    How it's showing up in Gmail (Incorrectly! All the copy should be within the white box.):
    Screencap from DW:
    So, is it CSS causing this? Are the Tables setup incorrectly? Something not Inline? Not enough info for you? Gmail HATES ME?!
    I'm just not seeing it and need to put the question out there while I continue to search for an anwer. Please respond!
    Thanks!

    Many mail clients reject images, JavaScript and embedded CSS styles.  For best results use plain text near the top to communicate your message and give a link to the actual web page on your server.
    For mail clients that do have limited support for HTML, use uncomplicated tables and inline CSS rules (inside the body tag).  
    All that meta data description is a red flag to spam filters.  You shouldn't be using meta description or keywords in e-mails.
    The article below has some good tips & resources for reliable e-mail templates you could use:
    http://alt-web.com/Articles/HTML-Emails.shtml
    Nancy O.

  • How to change text in PDF doc. which is a musical score

    Hello,
    I'm new here, so please excuse me if I do or say something I shouldn't.
    I need to change the words in a musical score because the font is too small. OCR recognition doesn"t work because there are illustrations that are different from images or text... Is there a way to get in there and make the changes I need to do?
    Any help greatly appreciated.

    Thanks for the reply, but I have Adobe Reader 9 Pro. Will it still not 
    work ?
    Le 29 sept. 2011 à 29 sept. 11 - 16:09, Claudio González a écrit :
    Re: How to change text in PDF doc. which is a musical score
    created by Claudio González in Adobe Reader - View the full discussion
    Unfortunately, not with the free Reader.
    Replies to this message go to everyone subscribed to this thread, 
    not directly to the person who posted the message. To post a reply, 
    either reply to this email or visit the message page: [http://forums.adobe.com/message/3944833#3944833
    To unsubscribe from this thread, please visit the message page at [http://forums.adobe.com/message/3944833#3944833
    ]. In the Actions box on the right, click the Stop Email 
    Notifications link.
    Start a new discussion in Adobe Reader by email or at Adobe Forums
    For more information about maintaining your forum email 
    notifications please go to http://forums.adobe.com/message/2936746#2936746

  • Crashes after trying to change font in score window

    Hi,
    I'm having a weird problem with Logic 7.1 in my powerbook 1.33. When trying to change a font in score edit window, Logic crashes imediatly. It happens in the "Text Styles" window as well. When you click in a font name, it's gone!
    Any ideas? Running in the latest Tiger with 1Gb RAM. Also, is it a problem to keep Logic 6.4 installed on the same machine?
    Thanks everybody!

    Do you use another machine for that task?
    as a matter of fact i do, although my G4 will run classic. and LP7 is os x only, you need an older version of logic that runs in OS 9. logic won't run in classic mode.
    to save your file, i suggest taking it to someone with os 9 and an old version of logic. in fact, if you emailed it to me i could do it. someone on this forum suggested buying an older machine with USB (or getting a USB card) just for such emergencies. i have retained my old G3 powerbook with logic 5.5. it has a PCMCIA USB card on it so i can put in my XSkey.
    having to do this is stupid though. let's see, to fix this logic score display bug, we have to buy an old computer that can boot up in classic, open and resave the corrupted song in that. what a ridiculous work around.
    when I open older socres created on my previous mac-printer setup, it's all messy, dynamics, articulations and text (not to mention the wrong fonts).
    yet another reason we need some logic score updating action. the reason your score looks funny will be due to the fact that you probably resized your score using page setup - ie using your printer driver. the correct way to do this is by opening the instrument set display box and resizing there.
    fonts not being displayed will be down to whatever fonts you have available in your system, so if you do not have the fonts available then they cannot be displayed. another reason your display will look strange, particularly in terms of where your articulations and dynamics are placed in the score may have to do with how you inserted them in the first place. in logic, you have to be very careful to insert your dynamics, articulations etc on the correct stave (it will be highlighted blue when you select the object) and in the correct midi position. check to see if they are in your messy score by selecting the object (ie dynamic articulation or whatever) and opening the event editor. is it where it should be?
    another trick if the display is completely screwed in logic 7 is to cut an object at a barline. (though obviously not in the middle of a note). this forces logic to recalculate the score display.
    my advice if you want to have soft copies of previous scores is to create pdf's of them. i almost never print directly from logic (unless i am in a terrible rush), i create pdf's first. that way you won't run in to the display problem. you can do this easily in os 9 if you have laserwirter 8 selected in chooser. you can then save to file and choose acrobat pdf.
    let me know if you want me to rescue your logic song that won't open.

  • BT Mobile - Problem with Erroneous Credit Score an...

    I have been a BT Customer for 35 years and have always paid my bills on time. I have a monthly direct debit for my landline and Broadband and have just added BT Mobile to my account. I have to say that I should have paid more attention when setting up BT Mobile online as it did flag through the process that there would be a cap of £50 spend outside the monthly plan and that roaming would be turned off. On receipt of the confirmation email on 2nd April this limit to my account was restated and was put down to my credit score. I called BT on the 2nd and was told that this was not a problem and the limits could be changed once the service had started. The service commenced on 8th April and on entering MYBT I am able to increase the monthly cap to £100 (not that i want or need to). However, the real issue I have is that I cannot activate Mobile Roaming. My account is flagged (Sorry, but you can’t use your phone abroad at the moment. You need to be a BT Mobile customer for six months first and have paid all your bills on time).
    I rang BT on 10th April to find out what the problem is and was told that it was my credit score and there was nothing that could be done to change what had been done. I was told that I would need to find out for myself what adverse information was held by Equifax who BT use. After paying £14.95 to Equifax for a full report and credit score I found that my credit score is 527 which is deemed to be excellent against the UK average score of 380, and there is absolutely no adverse information whatsoever which is of no surprise to me. So what on earth are BT looking at. I have tried in vein to get somebody in BT to check my file as there must be an error. I suspect that when I applied on line the process is automated and the system has made a mistake. Rather than investigate my case I am just being told nothing can be done to let me use my phone whilst abroad. After several hours on the phone to various people over a few days I have come up against a brick wall.
    Is there anyway a moderator could help me please. If I had known that I would encounter this I would not have signed up for BT Mobile and Ported my number which I would be loathe to loose.      

    it may well be nothing to do with your credit score, but more to do with bt internals
    ie: I purchased a new second hand car last year (December), my bank who i have been with for over 10 years, have a current loan with (that ends this year) and have had previous loan with, never been overdrawn, wages paid in each month and bills paid on time said I could not have a loan and if they did offer one it would be at a very high interest rate (i am still waiting to fine out from them why), even though I got a loan through another company at a very good deal, I upgraded my 3 accounts with EE from T-Mobile in December and January which all required a new credit check went through without issues (and they offered me another line on my contract on Sunday, saying that my credit rating is perfect) . My credit rating from experian when I checked (because of my bank) was Green and in Excellent condition.
    The only thing I know was 11 years ago I got in financial debt (the bank purchased the debt from another company, but I paid everything off by scrimping and scraping for a number of years) - it may be that they are still using against me, but every other company has said they find nothing wrong with my rating, but what I have heard is that they reset ratings every month, so you may be fine to get something on the 1st of the month, but if applied on the 2nd they would refuse it.

  • WHY DO I GET A STATUS REPORT ON EVERY EMAIL RECEIVED

    Why do I get this text on every email I receive which always appears before a message, even if i send a test to myself? can I turn it off? it's only just started to happen.
              From:   Phil Norris <[email protected]>
      Subject:  
              Date:   12 April 2012 21:43:48 GMT+01:00
              To:   Phil Norris <[email protected]>
              Return-Path:   <[email protected]>
              Received:   from nk11p00mm-asmtp005.mac.com ([17.158.161.4]) by ms01534.mac.com (Oracle Communications Messaging Server 7u4-24.01 (7.0.4.24.0) 64bit (built Jan  3 2012)) with ESMTP id <[email protected]> for [email protected]; Thu, 12 Apr 2012 20:43:52 +0000 (GMT)
              Received:   from unknown-58-55-ca-ec-b7-67.home ([109.148.68.123]) by nk11p00mm-asmtp005.mac.com (Oracle Communications Messaging Server 7u4-23.01(7.0.4.23.0) 64bit (built Aug 10 2011)) with ESMTPSA id <[email protected]> for [email protected] (ORCPT [email protected]); Thu, 12 Apr 2012 20:43:51 +0000 (GMT)
              Original-Recipient:   rfc822;[email protected]
              X-Proofpoint-Virus-Version:   vendor=fsecure engine=2.50.10432:5.6.7498,1.0.260,0.0.0000 definitions=2012-04-12_05:2012-04-12,2012-04-12,1970-01-01 signatures=0
              X-Proofpoint-Spam-Details:   rule=notspam policy=default score=0 spamscore=0 ipscore=0 suspectscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=6.0.2-1012030000 definitions=main-1204120250
              Content-Type:   multipart/alternative; boundary=Apple-Mail-1--526056840
              Message-Id:   <[email protected]>
              Mime-Version:   1.0 (Apple Message framework v1084)
              X-Mailer:   Apple Mail (2.1084)
    Thanks

    Those are standard mail headers, but they are normally hidden. Shift-command-H should turn them off or on for the current message. I don't know how that setting got stuck on for you, though.

  • How do I change the email address for a gamecenter account

    My child has been using a gamecenter account linked to my main apple id.
    I am trying to set up family sharing and have created a new (under age 13) account for him, [email protected]
    I would like to give him the previous gamecenter account and create a new one for myself.

    Hello posnera,
    Thanks for the question. After reviewing your post, it sounds like you want your gamecenter account information on the new under 13 Apple ID. I would recommend that you read this article, it may be able to help the issue.
    Using Game Center on your Mac or iOS device - Apple Support
    When you sign in with a different Apple ID, you'll see different scores, achievements, and friends.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

Maybe you are looking for

  • Axis 1.1 working code not working with Axis 1.3

    We have migrated from Axis 1.1 to Axis 1.3 Rest of things are fine. My Axis generally works as server but there is one service which is deployed on .Net WEB server which I am using. With axis 1.1 below xml sent is generated <?xml version="1.0" encodi

  • I have made an Imovie and I need to make several copies to disk. Can anyone help? PLEASEEEEEE

    Hi all...... Please help!!! I am due to get married next year. We have made our invitation on Imovie and now want to copy it on several disks to send out to our friends and family. I have serarched it and looked across the advice on here, but I cant

  • Function for Date Validation

    Hi, Can anyone tell me a Function Module to Valdate Date? Thanks & Regards Sheela

  • Can't get Final Cut to recognize my camera.

    I have a Canon VIXIA HF11 High def video camera and I can't get Final Cut Pro to recognize it. I don't have a firewire connection on the camera. It is a USB 2.0. I assume this is the root of the problem. iMovie recognizes the camera and imports the f

  • Urgent..Please..setting node as selected programmatically

    Hi, Can somebody tell me how to set a tree node as selected programmatically?.. i.e. I have tree in which all the nodes bear a name of the color. I have a thread which keeps changing the selected node, and based on the selection the color will be dis