Quicktime conversion - behind the scenes

What exactly happens when you export to Quicktime Conversion?
I have my project exporting to a 300GB external folder. All I see is the file size is 37GB (and growing) but at the same time the remaining folder size is now only 64gb available. Where is the rest of my drive space? Is there a 200gb temp file created first and then it completes the actual converted file?

No actually the trashcan was empty, I make sure I do that often.
I have the external drive actually in a Windows PC that is networked to my Mac. So in the shared drive I could actually see a hidden file that was growing (while the actual output file name remained 1kb). Eventually this hidden file was going to be converted to the actual output mov file. When I realized this (and knew I was going to run out of space), I stopped the process and actually just renamed this temp file with a .mov extension and it worked! It made a 200+gb temp file and I was able to use that to export to Compressor for DVD.
Anyways, I'm rambling on, but this is just in case someone else has the same issue in the future.

Similar Messages

  • Links work behind the scene

    Hi All,
    I have a pdf which is pretty much a guide. I created InDesign file with layers and exported as pdf.
    I'm trying to do the following:
    When i hit one of the navigation links, a layer associated with that link shows up. In layer that showed up, i have more links associated with images in its own layers. Everything works like i want.
    The problem is that links in non active layers work behind the scene when i hover over so i can hit link in non active layres.
    Is there a way to solve this problem?
    The script (in link action) i'm using to show/hide layers is:
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=true;
    var ocgs = this.getOCGs();
    for (var i=0; i<ocgs.length; i++)
    if (ocgs[i].name == "LayerName")
    ocgs[i].state = ocgs[i].state=false;
    I'm using Acrobat 9 pro
    Please help
    Thanks in advance

    Hi,
    Thanks for the answer. I solved the problem in acrobat with buttons.
    Thanks anyway

  • Behind the Scenes in Captivate 2

    I'm creating an application where I ask the user to enter
    comments in a text entry box. What I want to be able to do is save
    whatever they type in the text box and display it in a later slide
    so they can compare their comments to an "expert's" assessment.
    When I was at a learning conference, I heard some Captivate
    users refer to going "behind the scenes" to make changes to
    Captivate. Is that what I need to do here? Any suggestions?

    See "Text Input/Output" by Silke Fleischer, posted on the
    Captivate Exchange:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&loc=en_us&extid=1253 021
    Works great!

  • Multiple Guest Accounts / Behind-the-scenes Login

    How would we go about logging a visitor in as a specific user behind-the-scenes (without them even seeing the Login Screen)? This question is driven from a requirement where we need to display a replica of the subportal branding at the guest view level. (Needs to go on the wish list for sure: Redirecting to a subportal and/or subportal guest accounts.) For example, if I created a [subportalname] Guest user for a subportal and wanted to automatically log a visitor in as that user, how would I trigger that process? Login PEI doesn't help me - none of those events seem to fire until the user is presented with the Login screen and manually clicks Log In - Looking at the Interpreter class right now, where we see the Guest login functionality (DoGuestLogin, etc.). How might we pass around a username and password and trigger an automatic login attempt with that data? We're basically looking for a work-around for multiple guest accounts - 1 per subportal - so that branding can appear right up front before a user actually logs in. We will have a parameter somewhere to branch out which subportal guest user to log the visitor in as. We've gone down a couple of different routes with no luck.
    Again, due to a tight timeframe, we need details - like, "Create a custom activity space replacing the Interpreter class, edit [blah] function and use [blah] function to pass in your hardcoded username and password. Rebuild [blah] and deploy [blah] dlls to [blah] directories."
    Regards,
    Sarah WheelerCox Enterprises, Inc.

    It turns out this is pretty complicated due to the internals of how user sessions get initialized. I've managed to get a test working where it logs you in as a guest in a different sub-portal. I can give you some rough information now.
    You will need a Login PEI, and a custom Space and IloginControl/IHTTPControl. Obviously, you will need to edit the Login PEI xml file and the CustomActivitySpaces.xml file to get your customizations deployed.
    The OnAfterLogin() method of the ILoginActions PEI should look something like this:
    publicRedirect OnAfterLogin(Object _oUserSession, ApplicationData arg1)
    IPTSession ptSession = (IPTSession) _oUserSession;
    if(ptSession.GetSessionInfo().GetCurrentUserID() == PT_INTRINSICS.PT_USER_GUEST)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_Browsing))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "Guest user login redirecting to guestloginspace to go to non-standard guest user.");
    Redirect guestRedirect = newRedirect();
    guestRedirect.SetLinkCreateNewSpace(GuestLoginSpace.STR_MVC_CLASS_NAME, null);
    guestRedirect.SetControl(GuestLoginSpace.STR_MVC_CLASS_NAME);
    returnguestRedirect;
    returnnull;
    and the LoginControl that I mentioned earlier is a bit more complicated than I implied. It also needs to be an IHTTPControl for login purposes. The custom space is very simple, so I will skip it. Here's the full class code for the custom guest login control:
    publicclassGuestLoginControl implementsILoginControl, IHTTPControl
    publicstaticfinalString STR_MVC_CLASS_NAME = "GuestLogin";
    privateAActivitySpace m_asOwner;
    privateIPTSession m_UserSession;
    /**theseneedtobenulledoutafterexecution.*/
    privateIWebData m_WebData = null;
    privateIXPRequest m_xpRequest = null;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#DoGetSession()
    publicbooleanDoGetSession()
    returntrue;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#GetSession()
    publicObject GetSession()
    // We need to set this manually before the Interpreter does because
    // DoTasksAfterLogout depends on it.
    // m_asOwner.SetUserSession(subportalGuestUser);
    LoginResult rReturn = null;
    try
    rReturn = LoginHelper.INSTANCE.AttemptLogin(m_UserSession, m_asOwner,
    m_xpRequest, m_WebData);
    catch(Exception e)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "AttemptLogin() failed.", e);
    if(!rReturn.m_bSuccess)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() failed: "+
    rReturn.m_strError);
    if(null!= rReturn.m_Redirect)
    if(PTDebug.IsErrorTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Error,
    "GuestSubportalLoginControl AttemptLogin() return redirect ignored.");
    m_xpRequest = null;
    m_WebData = null;
    returnm_UserSession;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#CheckActionSecurityAndExecute(XPHashtable)
    publicRedirect CheckActionSecurityAndExecute(XPHashtable arg0)
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() creating redirect to login space for dljr.");
    m_UserSession = PortalObjectsFactory.CreateSession();
    m_UserSession.Connect("non-standard guest", "", null);
    ILink rReturn = LoginHelper.INSTANCE.GetDefaultPageRedirect(newRedirect(), m_UserSession, m_asOwner);
    if(PTDebug.IsInfoTracingEnabled(Component.Portal_UI_Infrastructure))
    PTDebug.Trace(Component.Portal_UI_Infrastructure, TraceType.Info,
    "GuestSubportalLoginControl Execute() finished.");
    return(Redirect) rReturn;
    *@seeIHTTPControl
    *@paramr
    *@parampageData
    publicvoidSetHTTPItems(IXPRequest r, IWebData pageData)
    m_xpRequest = r;
    m_WebData = pageData;
    *@seecom.plumtree.uiinfrastructure.activityspace.IControl#Init(IModel,AActivitySpace)
    publicvoidInit(IModel arg0, AActivitySpace _asOwner)
    m_asOwner = _asOwner;
    *@seecom.plumtree.uiinfrastructure.activityspace.ILoginControl#SetRedirectForUseAfterLogin(Redirect)
    publicvoidSetRedirectForUseAfterLogin(Redirect arg0)
    *@seecom.plumtree.uiinfrastructure.activityspace.IMVCObject#GetName()
    publicString GetName()
    returnSTR_MVC_CLASS_NAME;
    *@seecom.plumtree.uiinfrastructure.activityspace.IManagedObject#Create()
    publicObject Create()
    returnnewGuestLoginControl();

  • Running "nightly scripts" and other behind the scenes tasks

    I keep seeing posts about how the iMac Intel runs nightly scripts and/or other tasks behind the scenes. There is no mention of this in the user manual nor does Apple warn you about not putting the computer to sleep so that these tools will run. My iMac hard drive is asleep every night (as am I...) how can I get these things to run manually? How often? And can someone point me to literature to support this info?
    Thanks much,
    HS

    522/2968
    Hi HS,
    "There is no mention of this in the user manual"
    That's because the three nightly maintenance scripts are not important at all, and don't affect Mac OS X performance.
    They are only a relic from the glorious Unix system times when it was used on rather small capacities HDs, on computers that were running non stop for months or years...
    Running them yourself manually, as a "perfectionist measure", can be done easily using the "daily, weekly & monthly" features in OnyX or Cocktail for example. All three tasks together, once a month or so, is fine. No harm (but useless) rerunning them many times.
    Litterature:
    The KB article is quite old, it shows only the default 10.2 times and commands:
    - http://docs.info.apple.com/article.html?artnum=107388
    (almost same as 10.3 and 10.4 though)
    What I really would like to learn, is whether the scripts have been modified in the Intel version of Tiger.
    Could you please (or Joseph or somebody else), in Finder, Go To (shiftcommandG) this folder:
    /private/etc/
    see if there is still the same
    /private/etc/periodic
    folder, with the three
    /private/etc/periodic/daily
    /private/etc/periodic/weekly
    and
    /private/etc/periodic/monthly
    scripts?
    (I'm asking because I don't own an Intel Mac myself).
    Next you would Go To (⇧⌘G) this folder:
    /System/Library/LaunchDaemons
    please, see if you find those three files
    /System/Library/LaunchDaemons/com.apple.periodic-daily.plist
    /System/Library/LaunchDaemons/com.apple.periodic-weekly.plist
    and
    /System/Library/LaunchDaemons/com.apple.periodic-monthly.plist
    If they are still there, you can open them (with TextEdit if your Developer Tools are not installed), and read the default times when the tasks are scheduled to run.
    Thanks in advance!
    Axl

  • Exception behind the scenes while trying to paint images

    Hi,
    I am trying to load up an image (bufferedimage) by pasting 2 images one after the other. The response type of the jsp is set to image/jpg. I am able to see the image, but behind the scenes, i get an exception like this
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R java.lang.IllegalStateException: Context has not been prepared for next connection
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.NilSRPConnection.prepareForWrite(SRTConnectionContext.java:593)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.commit(SRTServletResponse.java:303)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.SRTServletResponse.alertFirstFlush(SRTServletResponse.java:227)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flushBytes(BufferedServletOutputStream.java:359)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.ibm.ws.webcontainer.srt.BufferedServletOutputStream.flush(BufferedServletOutputStream.java:343)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at javax.imageio.stream.FileCacheImageOutputStream.close(FileCacheImageOutputStream.java:226)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at com.sun.imageio.stream.StreamCloser$1.run(StreamCloser.java:79)
    [3/7/08 12:51:40:819 EST] 34a16964 SystemErr R at java.lang.Thread.run(Thread.java:570)
    Any ideas here?
    Thanks

    Hello INFINITI11,
    I've build a test machine and I can update the content so the online content doesn't have problem in my mind.
    You may need to check your network setting here because we can see this error:
    "The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."
    You can check your account privilege and check whether you have any policy settings on your OS. You'd better also check that you've disabled all Anti-virus software.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • XML Conversion (what is behind the scene)

    hi friends
    im new to xml, i just know that we get a structured tag text file which is called xml file. i have come to know conversion utility of fmb files to xml and vice versa by using iff2xml90 and ifxml2f90, i used both of them and done successfully.
    now confusion is very basic what is real purpose of fmb to xml converted file in our online application.
    my logistic system is online which i developed using developer suit 9i with 9.0.4 applicatoin server, can i get some sort of advantages or extra benifits of these converted xml files within my application ?????????

    thank u sir for explanation !!!
    its clear to me now, we could say there is no runtime use of xml in our form applications (6i,10g)
    i need little more time of urs
    is there any oracle product which have runtime usage of xml ?
    like Jdeveloper or even oracle database inwhich we can generate xml of our data?
    if yes then HOW ?
    if you could provide any link for detail study or ur comments ?
    tons of thanks in advance
    waiting for ur reply
    regards

  • VERY slow email due to Apple adding ridiculous amounts of html to my email signatures behind the scenes

    I've been having trouble with my computers recently because they are running REALLY slowly and I just couldn't figure it out. I went in the Apple store and they said a hard drive re-boot might be the answer and needless to say I've been putting that off.
    Then I got an email from my web guy to say that my email sig was slowing his computer down(!!) and I needed to change the email signature.
    Now, I have my email signature set up so that it includes the relevant info that I want included so I don't want to delete them BUT I do want them to not be slowing things down.
    I asked him what he meant and here is the code that just one of my email signatures is generating and all I've done is set it up to look nice in the mac mail preferences panel.
    Any ideas on how I can solve this and make it still look nice but not have crazy slowing code would be much welcomed!
    Thank you :)
    Sophie
    For reference here’s a chunk of the code...
    <div apple-content-edited=3D"true">
    <div style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: =
    auto; text-align: start; text-indent: 0px; text-transform: none; =
    white-space: normal; widows: auto; word-spacing: 0px; =
    -webkit-text-stroke-width: 0px; word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div =
    style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; =
    text-align: start; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); letter-spacing: =
    normal; orphans: auto; text-align: start; text-indent: 0px; =
    text-transform: none; white-space: normal; widows: auto; word-spacing: =
    0px; -webkit-text-stroke-width: 0px; word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div =
    style=3D"color: rgb(0, 0, 0); letter-spacing: normal; orphans: auto; =
    text-align: start; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"color: rgb(0, 0, 0); font-family: =
    Arial; font-style: normal; font-variant: normal; font-weight: normal; =
    letter-spacing: normal; line-height: normal; orphans: 2; text-align: =
    -webkit-auto; text-indent: 0px; text-transform: none; white-space: =
    normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; =
    word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><div style=3D"font-family: Arial; font-style: =
    normal; font-variant: normal; font-weight: normal; letter-spacing: =
    normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
    text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
    word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" style=3D"color: =
    rgb(0, 0, 0); font-family: Arial; font-style: normal; font-variant: =
    normal; font-weight: normal; letter-spacing: normal; line-height: =
    normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; =
    text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; =
    -webkit-text-stroke-width: 0px; border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" color=3D"#000A8D" size=3D"3"><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;"><br =
    class=3D"Apple-interchange-newline">Best regards</span></font></div><div =
    style=3D"font-size: 12px;"><font class="3D""Apple-style-span" =
    color=3D"#000A8D" size=3D"4"><br =
    class=3D"khtml-block-placeholder"></font></div><div style=3D"font-size: =
    12px;"><font class="3D""Apple-style-span" color=3D"#000A8D" =
    size=3D"4">Sophie Jewry</font></div><div><font =
    class=3D"Apple-style-span"><br class="3D""Apple-interchange-newline"><span =
    class=3D"Apple-style-span" style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" color=3D"#1265AD" size=3D"5" =
    style=3D"font-size: 25px;">media</font><font class="3D""Apple-style-span" =
    color=3D"#000A8D" size=3D"5" style=3D"font-size: =
    25px;">8</font></span><br><div><font class="3D""Apple-style-span"><font =
    class=3D"Apple-style-span"><div style=3D"font-size: 12px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div><font =
    color=3D"#0e7abb">Tel: 01362 853 424</font></div><div><font =
    color=3D"#0e7abb">Email: <a =
    href=3D"mailto:[email protected]">[email protected]</a></font></=
    div><div><font color=3D"#0e7abb">Gunfield House, 20 Allwood Avenue, =
    Scarning, Dereham, Norfolk NR19 2TF</font></div><div><font =
    color=3D"#0e7abb">www.<span style=3D"text-align: -webkit-auto;"><a =
    href=3D"http://sophiejewry.com">sophiejewry.com</a></span></font></div><di=
    v><br></div><div><font color=3D"#d83893"><b><i>*Winner of the Future 50 =
    Young Social Entrepreneur of the Year Award =
    2013*</i></b></font></div><div><font class="3D""Apple-style-span" =
    color=3D"#555555"><br></font></div></span></div></span></div></span></div>=
    </span></div></span></div></span></span></div></span></div></span></div></=
    span></div></span></div></span></div></span></div></span></div></span></di=
    v></span></div></span></div></span></div></span></div></span></span></span=
    ></span></div></span></div></span><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><font =
    class=3D"Apple-style-span" color=3D"#555555"><div><font =
    style=3D"text-align: -webkit-auto;"><b><a =
    href=3D"http://www.linkedin.com/in/sophiejewry">www.linkedin.com/in/sophie=
    jewry</a></b></font> - Connect on LinkedIn</div><div><span =
    style=3D"text-align: -webkit-auto;"><b><a =
    href=3D"https://plus.google.com/+SophieJewry">https://plus.google.com/+Sop=
    hieJewry</a></b></span> - Connect on Google+</div><div><b><a =
    href=3D"http://www.twitter.com/SophieJewry">www.twitter.com/SophieJewry</a=
    ></b> - Follow me on Twitter</div><div><font style=3D"text-align: =
    -webkit-auto;"><b><a =
    href=3D"http://www.facebook.com/TheBrandKitchen">www.facebook.com/TheBrand=
    Kitchen</a></b></font><font class="3D""Apple-style-span" =
    style=3D"text-align: -webkit-auto;"> - Branding and business =
    tips</font></div><div>Other things to =
    explore...</div></font></span></span></span></span></span></div></span></d=
    iv></span></div></span></div></span></div></span></div></span></div></span=
    ></span></div></span></div></span></div></span></div></span></div></span><=
    /div></span></div></span></div></span></div></span></div></span></div></sp=
    an></span></span></div></span></span></span></span></span></span></div></s=
    pan></div></span></div></span></div></span></div></span></div></span></div=
    ></span></div></span></div></span></div><font color=3D"#555555"><b><a =
    href=3D"http://www.organic-skincare.co.uk">www.organic-skincare.co.uk</a><=
    /b> - Fantastic quality organic products for body, skin and healthy =
    living inside and out</font></div><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><b><a =
    href=3D"http://www.theholisticdirectory.co.uk">www.theholisticdirectory.co=
    .uk</a></b> - Connecting, supporting and promoting holistic =
    professionals</font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"></span></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"></font><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><font =
    color=3D"#555555"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div><b><a =
    href=3D"http://www.mynorfolkguide.co.u">www.mynorfolkguide.co.u</a></b><b>=
    k</b> - Online Norfolk directory, list your business for =
    FREE</div><div><b><a =
    href=3D"http://www.ladiesnetwork.co.uk">www.ladiesnetwork.co.uk</a></b>&nb=
    sp;- Womens' networking =
    group</div></span></span></span></span></span></font></div></div></div></d=
    iv></div></div></div></div></div></div></div></div></div></div></div></div=
    ></div></div></div></div></div></div></div></div></div></div></div></div><=
    /div><span class="3D""Apple-style-span" style=3D"border-collapse: =
    separate; border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: =
    0px;"><br></span></div></span></div></span></div></span></div></span></div=
    ></span></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></div></span></div></span></span></span></span><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><b><i><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;">Important note =
    about proofs, print and payment:</span> </i></b></span><span =
    style=3D"text-align: -webkit-auto; font-style: italic; font-size: =
    11px;">Artwork is charged at =A340 per hour, unless otherwise confirmed =
    in writing.</span><span style=3D"text-align: -webkit-auto; font-style: =
    italic; font-size: 11px;"> </span><font style=3D"text-align: =
    -webkit-auto; font-style: italic; font-size: 11px;">If proofing artwork =
    please check carefully all spellings and content as amendments cannot be =
    made once files have been supplied to the printers. </font><span =
    class=3D"Apple-style-span" style=3D"font-style: italic; font-size: =
    11px;">It is the responsibility of the customer to check proofs for =
    accuracy including contact details. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">All invoices should be paid by =
    return or in any case within 7 days of receipt. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">No material/adverts designed by =
    media8 can reproduced in any other publication without the written =
    permission of the owners or its agents. </span><span =
    class=3D"Apple-style-span" style=3D"text-align: -webkit-auto; =
    font-style: italic; font-size: 11px;">The colour may differ slightly in =
    print due to a difference in screen colour and resolution (Finished =
    print is always inCMYK). </span><span style=3D"text-align: =
    -webkit-auto; font-style: italic; font-size: 11px;">Our Couriers will =
    not(and hence we cannot) take responsibility for items which have been =
    accepted as being in good condition on delivery. Hence please check your =
    delivery carefully BEFORE signing your delivery note. Our courier will =
    NOT ACCEPT responsibility for damaged print if the delivery note has =
    been signed without comment. It is much better to check your goods =
    before signing but if you are unable to check on delivery please write =
    GOODS DAMAGED on the delivery note before signing everytime.</span><span =
    style=3D"text-align: -webkit-auto; font-style: italic; font-size: =
    11px;"> </span><i><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space; display: inline !important;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"display: =
    inline !important;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; =
    display: inline =
    !important;"><br></div></div></span></div></span></span></div><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    text-align: -webkit-auto; border-spacing: 0px;"><div style=3D"word-wrap: =
    break-word; -webkit-nbsp-mode: space; -webkit-line-break: =
    after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; text-align: -webkit-auto; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><div style=3D"word-wrap: break-word; =
    -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><span =
    class=3D"Apple-style-span" style=3D"border-collapse: separate; =
    border-spacing: 0px;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: 0px;"><div =
    style=3D"word-wrap: break-word; -webkit-nbsp-mode: space; =
    -webkit-line-break: after-white-space;"><span class="3D""Apple-style-span" =
    style=3D"border-collapse: separate; border-spacing: =
    0px;"><div><div><div><div><div><div><div><div><div><div><div><div><div><di=
    v><div><div><div style=3D"font-size: 22px;"><span =
    class=3D"Apple-style-span" style=3D"font-size: 12px;"><font =
    class=3D"Apple-style-span" size=3D"3"><span class="3D""Apple-style-span" =
    style=3D"font-size: 11px;">This e-mail (including any attachments) is =
    confidential. If you are not the intended recipient you are prohibited =
    from acting upon, </span></font><font class="3D""Apple-style-span" =
    size=3D"3"><span class="3D""Apple-style-span" style=3D"font-size: =
    11px;">printing, copying or distributing it. If you have received this =
    e-mail in error, please notify the sender immediately by telephone =
    or </span></font><font class="3D""Apple-style-span" size=3D"3"><span =
    class=3D"Apple-style-span" style=3D"font-size: 11px;">by e-mail and =
    delete this e-mail from your system. It is possible for data conveyed by =
    e-mail to be deliberately or accidentally </span></font><font =
    class=3D"Apple-style-span" size=3D"3"><span class="3D""Apple-style-span" =
    style=3D"font-size: 11px;">intercepted or corrupted. We are unable to =
    accept any responsibility for any breaches of confidentiality which may =
    arise through the use </span></font><font class="3D""Apple-style-span" =
    size=3D"3"><span class="3D""Apple-style-span" style=3D"font-size: =
    11px;">of this medium. Whilst we make every effort to ensure that this =
    e-mail is free from viruses, this cannot be guaranteed. We =
    recommend that you scan all e-mails for viruses with appropriate =
    and frequently updated virus checking =
    software.</span></font></span></div></div></div></div></div></div></div></=
    div></div></div></div></div></div></div></div></div></div></span></div></s=
    pan></div></span></div></span></div></span></div></span></span></div></spa=
    n></div></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></span></span></div></span></div></span></div></span></div></spa=
    n></div></span></span></div></span></div></span></div></span></div></span>=
    </div></span></div></span></div></span></div></span></div></span></div></s=
    pan></div></span></div></span></div></span></span></span></i></div></span>=
    </div></span></div></div></font></font></div></font></div></span></div></s=
    pan></div></span></div></span></div></span></div></span></span></div></spa=
    n></div></span></div></span></div></span></div></span></div></span></div><=
    /span></div></span></div></span></div></span></div></span></div></span></d=
    iv></span></span></span></span></div></span></div></span></div></div></div=
    ></div></div></div></div></div></div></div>
    </div>

    Make your signature text only, see if that makes a difference.

  • No duplicates in my Itunes library, but every song is duplicated in my pc behind the scenes.  Any ideas?

    I have a large Itunes library of 16,000+ songs and when I am in my Itunes library, there are no duplicates.  But, in my pc, there are duplicates of every song in different file folders.  Does anyone have this issue?

    Everything is synced through itunes.  It is not stored in itunes.  itunes is simply a counduit through which photos are synced.
    "And a friend mentioned that to move photos I would need to set up a separate ITunes account."
    This does not make sense.  Your itunes accoutn whould have no impact on your pics.
    Still not sure what your question is.  Please explain what the issue is and what you are trying to accomplish.
    You remove photos from iphone the same way you put them there.  the sync process.  Open itunes. Connect iphone. Go to the photo tab.  Select what you want to be on the iphone. Sync

  • SharePoint 2013 visual upgrade: Behind the Scene

    Hello,
    I recently migrated site collection from SharePoint 2010 to SharePoint 2013. But is not visually upgraded yet. I wanted to create evaluation site collection before actual upgrading. My questions are:
    1) Will it create a new Web application?
    2) Will it extend a the existing web application?
    3) will it create only a new site collection? If yes, will the size of content database become double?
    I am worried about the size of content database, as my DB is almost 50 GB and haven't much space left.
    any help would be really appreciated.

    Hi Rizwan,
    Evaluation Site Collections is a new feature in the SharePoint 2013 upgrade story. Evaluation Site Collections lend site collection administrators the ability to try out the 2013 version of their site collection before actually upgrading the production site
    collection’s UI and content.
    An upgrade evaluation site collection creates an upgraded version of the site in a new, separate copy of the site that is running on SharePoint 2013. Unlike visual upgrade in SharePoint Server 2010, the upgrade evaluation site collection is a complete copy
    of the site collection, separate from the original. Actions taken in the upgrade evaluation do not affect the original site.
    Evaluation site collections have a default expiration period of 30 days. And the evaluation site collection will also automatically be deleted when its parent production site collection is upgraded.
    More information, please refer to the links:
    http://sharepointengineer.com/2012/11/15/sharepoint-2010-to-2013-upgrade-step-by-step-2/#_Toc340767198
    http://blog.fpweb.net/sharepoint-2013-evaluation-site-collections/
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How do "Auto-detect proxy settings for this network" and "Use system proxy settings" work behind the scenes?

    How can I see what the proxy firefox actually uses when I check either of these two options?
    Does it take it from Internet Explorer?
    Are they stored somewhere in the registry?

    Hi conectionist,
    This is taken if there is a proxy set up in your network settings on your OS. If you would like to test there may be an add on:
    *[https://addons.mozilla.org/en-US/firefox/addon/smart-ip-connection-info/?src=search]
    Please feel free to search to find a better one if necessary.

  • Connect to Discoverer behind the scenes

    From my application I want the users to directly connect to the Discoverer without showing them the connection page.
    I plan to use webservices api to connect to Discoverer and login.
    Now how do I let the client browser connect to discoverer, how do I let Discoverer know that I have been authenticated?
    Does Discoverer use any cookies.
    Would not want to do a POST operation.
    I am using private connections.
    Edited by: user8810024 on Apr 13, 2011 11:31 AM

    Hi Rod,
    So I would create a condition that contains a condition on the left side:
    put the entire condition on the left side like this?
    CASE WHEN DECODE(Hold desc,'HIPAA',999,NULL,0,500) = MAX(DECODE("Hold desc",'HIPAA',999,NULL,0,500)) OVER (PARTITION BY Student.Id ) THEN 1 ELSE 0 END
    = 1
    I am a little confused:
    a) Does this condition, simply control whether the calculation shows in the query?
    b) or Does the condition also do the logic of the condition
    to select rows that are = to the max(hold desc) for the student id?
    c) If yes to (b) , then I should delete my existing condition of:
    DECODE(Hold desc,'HIPAA',999,NULL,0,500) = MAX(DECODE("Hold desc",'HIPAA',999,NULL,0,500)) OVER
    (PARTITION BY Student.Id )
    d) If yes to (c), then I always want this condition checked off, bec it contains the filtering logic, so how could
    I ever uncheck this condition so that calc should not show. If I uncheck it then the filtering would not run?
    I am puzzled ... can you pls clarify, tx, s

  • Visit A Website Behind The Scenes In Adobe Air Application...

    Hi all,
    I am needing to find a way in Actionscript 3 for a Adobe Air application to visit a website url (ex. example.com) in the background without Adobe Air opening up a web browser.
    After the website has loaded in the background, I would like to get all the URL link that the Adobe Air application may see. For example, maybe when you visit "example.com" it redirects you to "google.com", so I want my application to send me back whatever URL it sees after it loads the page.
    Can this be done, and is there any sample code anywhere?
    Thanks guys!

    I think you can get the information you want by using URLLoader with a listener for HTTP_RESPONSE_STATUS and check the responseHeaders and responseURL properties:
    HTTPStatusEvent - Adobe ActionScript® 3 (AS3 ) API Reference
    -Aaron
    http://abeall.com

  • What is lightroom doing behind the scenes? Can't figure it out

    Hi,
    Not sure if this is a stupid question or not... I've prowled through some FAQ's and can't find an answer so I'll just post this and see if any of you have an answer.
    This might be because I'm using the trial version, but I can't see how Lightroom 'saves' changes to your photos. I've gone through and made some color corrections to some photos, added keywords, but when I go to the folder they're in, the files aren't changed at all, even after exiting and reopening Lightroom. I guess this is a 'feature' of Lightroom's non-destructive editing, but I can't figure out how you're supposed to get your changes made. You don't have to go through the 'print' or 'web' tabs to export images, do you? Or do you need to export images one by one and then deal with copies of each image (ie, balancing the Lightroom'ed files vs. the originals)?
    Also, try as I might I can't seem to get my keyword updates for images to be reflected in Windows when I right-click and go to properties. It's important to me that Lightroom be able to edit keywords in the actual file, and not just maintain a little library of keywords per image somewhere locally like Picasa did. The reasons are numerous, but include the fact that I'd like to be able to move images around from place to place and have the keywords stick with them.
    Which also brings up the question of where Lightroom's database of keyword synonyms exist at. I'm guessing it's all in one giant file somewhere on my computer? And if that's the case, then when I edit keywords on my laptop and move them to my desktop, the desktop won't recognize the keyword synonyms? I'll need to manually sync Lightroom databases on the two machines every so often?
    Sorry if these are silly questions, but they feel like basics to me and I can't see any obvious mention of these in the FAQ's or manual. If it's located somewhere obvious in the manual then you can just let me know that, but at this point I'd kind of prefer if someone who knows can just give me a yes/no.
    Thanks so much,
    --Allen

    >Remember though that the color corrections, exposure, etc. just get saved as instructions in the file itself.
    Metadata and parametric (develop) settings are stored in Lr's database. This information is only written to disk -- either within TIF, PSD, JPEG, or DNG files, or a sidecar XMP file for proprietary raw files -- when preferences are set to "Automatically write changes to XMP", or you explictly write using the Metadata>XMP menu.
    When you export an image keywords are always exported as well. The OP stated something about Windows file properties not showing keywords. I have no idea what convention Microsoft uses for this information but it is non-standard. For example the free image viewer Irfanview shows this IPTC data just fine.

  • What is behind the scenes of "Automatic Discovery of Cluster Members?"

    Do any of you know the basic mechenism ( or concept ) of authomatic discovery of cluster members?
    And how can we be confident that an application deployed anywhere on the network (LAN,WAN, or the Internet) can join a cluster?
    Sorry for this clumsy question, but I realy need to know this.
    Thanks in advance!
    Scott

    Hi Scott,
    Coherence uses a protocol called TCMP which is described in the following Wiki article:
    http://wiki.tangosol.com/display/COH32UG/Network+Protocols
    By default, multicast is used to discover if a cluster is already running that the new member may join.
    In order to test multicast in your environment, you need to run the multicast test:
    http://wiki.tangosol.com/display/COH32UG/Multicast+Test
    Some environments don't allow multicast or some switches don't handle multicast very well, in which case you'd need to run using WKA (Well Known Address):
    http://wiki.tangosol.com/display/COH32UG/well-known-addresses
    Regards,
    Jon Hall.
    p.s. once you've confirmed that clustering is taking place (either using the default of multicast or using WKA), then you should run the datagram test to test your network's performance:
    http://wiki.tangosol.com/display/COH32UG/Datagram+Test
    Also, check out the production checklist as this has lots of really good information in it that will be useful going forward:
    http://wiki.tangosol.com/display/COH32UG/Production+Checklist

Maybe you are looking for