Need help with home page url?

So what I'm having problems with is getting my homepage url to say http://www.santoroman.com instead it is saying http://www.santoroman.com/site/home.html
I have read through a bunch of the threads and done some trial and error but nothing seems to come through correct. My host is 1and1 and I use fetch to load everything up. Help me fellow mac nerds! I'd really like to get this solved within a few day.
I just want people to be able to type in www.santoroman.com instead of all the other crap as well.
Thanks

So I have the new folder published on my desktop named "site" and I see the other fold that says "index.html" with the safari logo in the middle. Just drag and drop the 2 into fetch and publish?
Yes. index.html is not a folder of course, it is a file.
Should I name the other folder as: www.santoroman.com or can I leave it as site?
You must leave it as site.

Similar Messages

  • Help with home page link

    Hi
    Does anyone can help me ?
    I created a web and now I am creating a second folder/ file. How can I link this second folder to the home page placed in first folder ?
    Sorry for my English

    Hi Cari
    Tanhks for you help.  This open my mind, you mean  I need to have two website to this ?
    I ask you this because I have only one website. the acces to my site is only through customer site. I mean I give him the right link  (one link for Company A and another link for company B, both coming from site), do you understand what I mean?
    The point I do not understan is if I save file web A, as  Web B and then I change page names, master and so on, and the I up load, why does muse overwrite in file A when pages are different name !!!!
    The point is Muse does not allow to copy / paste !!!
    Any idea Cari
    Regards from Buenos Aires
    Felix Cano Montoya
    [email protected]
    El 11/4/2015, a las 23:21, Cari Jansen <[email protected]> escribió:
    Help with home page link
    created by Cari Jansen <https://forums.adobe.com/people/Cari+Jansen> in Help with using Adobe Muse CC - View the full discussion <https://forums.adobe.com/message/7430081#7430081>
    I'm not sure I've got a grasp on the issue you are having but let me give it a try
    Website A is finished and you have uploaded it to the Internet, so it is LIVE.
    You make a copy of Website A, and call it Website B, then make all required changes.
    IF you uploaded Website B, then it is likely you will overwrite Website A. You must instead, upload Website B as a separate Website.
    To publish to a new site:
    Click Publish.
    Then click the expansion triangle left of Options.
    Change Publish To setting to New Site
    fill out rest of required details, and click OK to publish.
    You'll now have two separate web-sites.
    If you need to link between them, use absolute hyperlinks (the full URL).
    Hope this helps.
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7430081#7430081 and clicking ‘Correct’ below the answer
    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:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7430081#7430081
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Help with using Adobe Muse CC by email <mailto:[email protected]> or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=47 61>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624 <https://forums.adobe.com/thread/1516624>.

  • Need help with home work see what you got

    1. The MEMBERS table has the phone number broken into three fields:
       CountryCode - e,g., '1' for the United States
       AreaCode - e.g., three digits for the United States
       Phone - e.g., 7 digits, with or without a dash between the first three digits (Exchange) and last four digits (Line)
       Any or all of the fields may be missing (null) or blank or contain only spaces.
       Write a T-SQL statement to concatenate the three fields into a complete phone number
       with the format: CountryCode(AreaCode)Exchange-Line, e.g., 1(816)123-4567
       If no Phone is present, return a blank string.
       If no area code is present, return only the Phone number. Do not return an empty pair of parentheses or the CountryCode.
    2. The PERSON_CAMPAIGN table contains a row for each war/conflict the member served in. A member may have served in multiple conflicts
       For this purpose, each row contains:
       PersonID - unique member identifier
       Campaign - name of war/conflict
       Write a T-SQL statement to return one row per member with all campaigns concatenated into a single field and separated by commas
       E.g., PersonID    Campaigns
             12345678    Global War on Terror, Iraq, Afghanistan
    3. The MEMBER_STATISTICS table contains one row per post.
       For this purpose, each row contains the post's:
       Division - a way of grouping posts by their member size
       Department - the state in which the post is located
       PostNumber - unique post identifier
       Reinstated - count of members whose annual subscription had lapsed for at least two years but who have now subscribed for the current year
       Write a T-SQL statement to determine the top ten posts in each division based on the number of reinstated members, with a minimum of 50 reinstated members.
       Rank them by highest to lowest reinstated count.
       Return their Division, Rank, Department, PostNumber, Reinstated

    I got 3 home work questions think i have the first two need help with the last one please.
    Kinda stuck on #3 hard I can see data not sure witch to sum or count?
    1. The MEMBERS table has the phone number broken into three fields:
       CountryCode - e,g., '1' for the United States
       AreaCode - e.g., three digits for the United States
       Phone - e.g., 7 digits, with or without a dash between the first three digits (Exchange) and last four digits (Line)
       Any or all of the fields may be missing (null) or blank or contain only spaces.
       Write a T-SQL statement to concatenate the three fields into a complete phone number
       with the format: CountryCode(AreaCode)Exchange-Line, e.g., 1(816)123-4567
       If no Phone is present, return a blank string.
       If no area code is present, return only the Phone number. Do not return an empty pair of parentheses or the CountryCode.
    ANSWER******************
    Notes: created a funtion to format the phone 
    Then used the this function in a select to concatenate Phone 
     CREATE FUNCTION dbo.FORMATPHONE (@CountryCode int, @AreCode int, @Phone VARCHAR(14))
    RETURNS VARCHAR(14)
        AS BEGIN
           DECLARE @ReturnPhone VARCHAR(14)
           DECLARE @NewPhone VARCHAR(14)
    -- Note case sets newphone to null if phone null or '' also to see if phone has '-' in it if not inserts into newphone
           case 
                when @Phone is null or @Phone  = ''
                   Then SET @NewPhone = Null
                when @Phone = substring(@Phone,4,1)='-'
          Then SET @NewPhone = @Phone 
           else  
                SET @NewPhone = substring(@Phone,1,3)+'-'+ substring(@Phone,4,4)
           End     
           case 
                when @NewPhone is null then SET @ReturnPhone = @NewPhone            
           elese case
                    when @AreCode is null or @AreCode = '' then SET @ReturnPhone = @NewPhone
                 else 
          SET @ReturnPhone = @CountryCode + '(' + @AreCode + ')' +  @NewPhone
                END
           END
        RETURN @ReturnPhone 
    END
    select dbo.FORMATPHONE(CountryCode,AreCode,Phone)
    from MEMBERS 
    2. The PERSON_CAMPAIGN table contains a row for each war/conflict the member served in. A member may have served in multiple conflicts
       For this purpose, each row contains:
       PersonID - unique member identifier
       Campaign - name of war/conflict
       Write a T-SQL statement to return one row per member with all campaigns concatenated into a single field and separated by commas
       E.g., PersonID    Campaigns
             12345678    Global War on Terror, Iraq, Afghanistan
    ANSWER******************
    SELECT      PersonID,
                STUFF((    SELECT ',' + Campaign AS [text()]
                            FROM PERSON_CAMPAIGN 
                            WHERE (PersonID = Results.ID)
                            FOR XML PATH('') 
                            ), 1, 1, '' )
                AS Campaigns
    FROM  PERSON_CAMPAIGN Results
    3. The MEMBER_STATISTICS table contains one row per post.
       For this purpose, each row contains the post's:
       Division - a way of grouping posts by their member size
       Department - the state in which the post is located
       PostNumber - unique post identifier
       Reinstated - count of members whose annual subscription had lapsed for at least two years but who have now subscribed for the current year
       Write a T-SQL statement to determine the top ten posts in each division based on the number of reinstated members, with a minimum of 50 reinstated members.
       Rank them by highest to lowest reinstated count.
       Return their Division, Rank, Department, PostNumber, Reinstated

  • Need help stopping home page from appearing

    Hello:
    I've designed and programed the site www.pawsandclawspets.com
    but I can't figure our how to keep the home page from flashing when
    going from one page to the next. I have all my movies loading onto
    a level above it and don't want to hide the home page entirely as I
    am using the nav at the top on all the pages.
    Any thoughts?
    Thanks!

    boss33 wrote:
    > Hi pple, need help here.
    >
    > Trying to make a site that uses scriptaculous and a few
    other scripts like
    > prototype and a few more.
    >
    > The thing is I can't seem to get the first image to
    randomize on the site. So
    > I've decided to discard that idea and move over to
    making the home page one of
    > my other pages specifically the "beauty" or as I call it
    the art page.
    >
    The first image on your page is this:
    <img id="logo" src="
    http://test.inspiringmen.com/images/logo.png"
    ... />
    onload=function(){
    var imgs=[
    "/images/logo.png",
    "/images/another.png",
    "/images/yetanother.jpg",
    "/images/onemore.jpg"];
    document.getElementById("logo").src=imgs[(+new
    Date())%imgs.length];
    This assumes that the "images" folder is at the root level of
    your site.
    You may add or remove image paths from the "imgs" array at
    will.
    Mick

  • Need Help With Home Please

    If anyone here is good with Java, I need serious help with my homework, please give me your instant messenger screen name and we can chat, thanks alot!!
    Angela

    I don't understand how people get themselves into
    these situations as school, if you don't want to learn
    it don't sign up for the class.....You never got yourself into this situation.... I think everyone has on occassion.
    My very first "serious" university program was to solve a second order, non-linear differential equation using the Runge-Kutta method. This is NOT the easy way to learn a computer language and I have to admit I did take "shortcuts" using more experienced people than me.
    That was before the web though...
    God am I really that old?

  • Need help with contacting HTTPS URL

    Hi,
    I am new bie to Java Security. I do not know where to start off with. Here is the requirement.
    I need to contact an HTTPS URL and this URL gives me output which is encypted data.
    I have to save this ecnrypted data into a file and I have the KEY to decrypt the data.
    I have tried several ways (all listed below) to get it working. But I am not successful. I get
    "javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: No trusted certificate found"
    Can you guys give me some insight on how to proceed?
    Thanks
    Mathew
    import java.util.*;
    import java.text.*;
    import java.net.*;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.security.Permission;
    import javax.net.ssl.HttpsURLConnection;
    import java.security.*;
    import java.security.cert.*;
    import javax.net.ssl.*;
    import java.io.*;
    public class temp
         protected BufferedReader messageResponseReader;
         private static final String CERTIFICATE_TYPE = "SunX509";
         private static final String KEYSTORE_TYPE = "JKS";
         private static final String SSL_PROTOCOL = "TLS";
         private static final String CERTIFICATE_FACTORY_TYPE = "X.509";
         public static void main(String args[])
              try
                   try{
                             temp tmp = new temp();
                             String url = "https://test.mysite.com/one/perform.jsp?mode=get&check=true";
                             tmp.sendRequest(url);
                        }catch(Exception e)
                             e.printStackTrace();
              catch(Exception e){
                   e.printStackTrace();
    public String sendRequest(String urlString) throws Exception
    StringBuffer response = null;
    BufferedReader messageReader = null;
    try
                   String username = "user";
                   String password = "pwd";
                   String encoding = new sun.misc.BASE64Encoder().encode("username:password".getBytes());
                   //java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
                   //System.setProperty("java.protocol.handler.pkgs", "com.sun.net.ssl.internal.www.protocol");
                   // Needed for validation of the server certificate
                   //System.setProperty("javax.net.ssl.trustStore","C:\\cert\\key.txt");
                   // Needed for providing a clint certificate for client authentication
                   //System.setProperty("javax.net.ssl.keyStore","C:\\cert\\key.txt");
                   //System.setProperty("javax.net.ssl.keyStorePassword","te5t1ng");
                   //System.setProperty("ssl.SocketFactory.provider", "com.sun.net.ssl.internal.ssl.Provider");
                   KeyStore ks;
                   ks = KeyStore.getInstance("JKS");
                   CertificateFactory cf = CertificateFactory.getInstance(CERTIFICATE_FACTORY_TYPE);
                   TrustManagerFactory tmf = TrustManagerFactory.getInstance(CERTIFICATE_TYPE);
                   KeyManagerFactory kmf = KeyManagerFactory.getInstance(CERTIFICATE_TYPE);
                   FileInputStream fis = new FileInputStream("C:\\cert\\key.txt");
                   BufferedInputStream bis = new BufferedInputStream(fis);
                   Collection c = cf.generateCertificates(fis);
                   Iterator i = c.iterator();
                   while (i.hasNext()) {
                   java.security.cert.Certificate cert = (java.security.cert.Certificate)i.next();
                   System.out.println(cert);
                   ks.load(null, null);
                   X509Certificate the_cert = (X509Certificate)cf.generateCertificate(bis);
                   ks.setCertificateEntry("server_cert",the_cert);
                   tmf.init(ks);
                   ks = KeyStore.getInstance(KEYSTORE_TYPE);
                   ks.load(null, null);
                   the_cert = (X509Certificate)cf.generateCertificate(new FileInputStream("key.txt"));
                   ks.setCertificateEntry("client_cert",the_cert);
                   kmf.init(ks, null);
                   SSLContext ctx = SSLContext.getInstance(SSL_PROTOCOL);
                   KeyManager[] km = kmf.getKeyManagers();
                   TrustManager[] tm = tmf.getTrustManagers();
                   ctx.init (km, tm, null);
                   HttpsURLConnection.setDefaultSSLSocketFactory(ctx.getSocketFactory());
    urlString = urlString.replaceAll(" ","%20");
    URL url = new URL(urlString);
    //HttpsURLConnection urlCon = (HttpsURLConnection)url.openConnection();
    HttpURLConnection urlCon = (HttpURLConnection)url.openConnection();
    //com.sun.net.ssl.HttpsURLConnection urlCon = (com.sun.net.ssl.HttpsURLConnection)urlCon;
    /*urlCon.setRequestProperty("Host", url.getHost());*/
    urlCon.setDoOutput(true);
    urlCon.setDoInput(true);
    urlCon.setRequestMethod("POST");
    urlCon.setUseCaches (false);
    urlCon.setAllowUserInteraction(true);
    urlCon.setInstanceFollowRedirects(true);
    urlCon.setRequestProperty ("Authorization", "Basic " + encoding);
    //Permission permision = urlCon.getPermission();
    //System.out.println("permission name:"+permision.getName());
    urlCon.connect();
    //messageReader = new BufferedReader(new InputStreamReader(urlCon.getInputStream()));
    //response = new StringBuffer();
    //String line;
    //while((line = messageReader.readLine()) != null){
    // response.append(line);
    // response.append("\n");
    catch (Exception e) {
    e.printStackTrace();
    throw e;
    return "testing";

    sorry for the junk data.. Need to post it again

  • Need help with home ad rotator webapp please

    i am trying to add text below the header in this home page ad rotator
    this is where i set up the ad rotator. shouldn't that description text be showing up underneath the word "synergies?"
    can you tell me what i am doing wrong? i am completely lost on this one.
    thanks!

    Hello again,
    It's a css issue: one of the margin values is set to 415 px (.intro-a div.two ul.items li span)
    http://screencasteu.worldsecuresystems.com/AP/2013-06-20_1031.swf
    Kind Regards,
    Alex

  • Need help with unblocking a url in firefox

    I blocked an image in photobucket storing site and found that instead of one particular image I had block the url http://s208.photobucket.com/home/Gibelgirl/index while in Firefox and while images are in there I can not see them. This only happens in F irefox as in other browser there is no problem. Photobucket has informed me that I have blocked the site with the FireFox browseer. Can you tell me how to unblock please as I need these images. Thanks JanUK

    If that didn't help then:
    *Open the <i>Media</i> tab of the "Page Info" window.
    *Select the first image and scroll down though the list with the Down arrow key.
    *If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • Need help with SWF page transitions please :)

    I am having an issue recreating something I have seen on
    other flash sites... (For example on 2Advanced.com) It is hard to
    explain but I will do my best. I am advanced in design, layout,
    tweening, and am a beginner to intermediate action scripter. So
    even if your solution is a point in the right direction to some
    code I could pick up and noodle around with that would be great.
    That having been said, on to the issue, it's a 2 parter:
    Part 1:
    I have a Master FLA (or SWF) containing navigation that loads
    secondary SWF pages into movie clip containers for the 5 additional
    pages of the site. These load above the Master movie clip masking
    it (Navigation floats above) so the loaded pages are sandwiched in
    between.
    View page in it's current state here:
    http://sky.prohosting.com/tk421808/rwip/gallery_MAIN.html
    This works ok right now, but I have the SWFs replacing one
    another in one single movie clip container. What I would like to do
    is similar to shuffling 5 cards... if you want the 4th card down
    you pull it out, it goes to the top and slides over the last
    visible card on top. So I would like the first page clicked to
    slide in covering the master MC, the second page clicked, to slide
    in covering that one, and so on and so forth. This would be easy if
    the pages were linear, then I could just stack the movie clips, but
    since the user will click out of order I need a way to load one
    into MC_2 (on top), Then when another is clicked have the MC_2 SWF
    move down a level (Swap MC?) to allow the second to slide in above,
    and then delete the movie that has moved down into level one
    (Bottom) then have this repeat when another movie is clicked. This
    way it will look like the page you clicked is always sliding in
    over the one you are leaving.
    Part 2:
    I have no idea how to do this next part but... I believe it
    involves a gotoAndPlay. I would like to have animation in the movie
    that is unloading after the button for the next page to load is
    clicked... in other words, you have loaded a page, you click on
    another link, and before the new external SWF page loads, the
    current performs a gotoAndPlay where I have animated some
    de-constructing swipes that remove the text, shapes holding the
    text, and the image. ONLY THEN does it start to load the movie for
    the link it selected. I think what I am trying to ask here is how
    does it carry the link through the unloading animation until it's
    done and then execute the loading of the new external SWF of the
    link they just clicked?
    I pray this makes sense... If not I would be happy to explain
    further. :) Thanks in advance for any help!

    >> I have no idea how to do this next part but... I
    believe it involves a
    gotoAndPlay. I would like to have animation in the movie that
    is unloading
    after the button for the next page to load is clicked... in
    other words,
    you
    have loaded a page, you click on another link, and before the
    new external
    SWF
    page loads, the current performs a gotoAndPlay where I have
    animated some
    deconstructing swipes that remove the text, shapes holding
    the text and them
    the image, and ONLY THEN does it start to load the movie for
    the link it
    selected. I think what I am trying to ask here is how does it
    carry the
    link
    through the animation until it's done and then execute the
    loading of the
    external SWF of the link they just clicked?
    <<
    You don't use frames. I'd probably use Fuse for this - which
    is a sequencing
    engine. (www.mosessupposes.com) You can call a function when
    the sequence is
    done animating - using what's known as a callBack function.
    That'd be the
    best way, IMO.
    For part one, you could either place mutliple empty movie
    clips, or just
    create them using createEmptyMovieClip - which is a MovieClip
    method, and
    then load your swfs into them with MovieClipLoader. You can
    use swapDepths
    for layer control, in order to have any given clip move above
    another, layer
    wise.
    Dave -
    Head Developer
    http://www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

  • Need help with 'Output Folder URL'

    How can I compile my application and have it get posted on a
    server?
    When I create a project, in the “Flex Build Path”
    I add my server URL in the 'Output Folder URL' field. But when I
    Run my project, it doesn't even seem to attempt to push any files
    to the server. It just brings up my browser with the path to it,
    which it obviously gets a 404 error. And its going to need a
    username and password to post files to a server. Where would I
    assign theses value to Flex Builder?

    After I installed Apache Ant and tinkered with it for about 5
    hours, I have what initially wanted. The code below will compile,
    copy and launch. I also made a splash logo that appears when its
    building. Ant is a nice utility for automated development.
    Ref:
    http://blog.jodybrewster.net/2008/04/09/installing-ant-in-flex-builder-3/
    http://ant.apache.org/manual/tasksoverview.html
    <project name="buildXIFF" default="main">
    <property name="compiler" value="C:\Program
    Files\Adobe\Flex Builder 3\sdks\3.2.0\bin\mxmlc.exe"/>
    <property name="firefox" location="C:\Program
    Files\Mozilla Firefox\firefox.exe"/>
    <property name="projectURL" value="
    http://vmwinserver2003/flex/tests/XIFF/XIFF.html"/>
    <property name="baseDirectory"
    value="Z:\Documents\Programming\Flex\Tests\XIFF"/>
    <property name="baseServerDirectory"
    value="Y:\flex\tests\XIFF"/>
    <target name="main">
    <splash
    imageurl="file:${baseDirectory}/build/FxAntBuildLogo.png"
    showduration="2000"/>
    <antcall target="compile" />
    <antcall target="copy" />
    <antcall target="launch" />
    </target>
    <target name="compile" description="Build XIFF
    project">
    <echo>Building files in bin directory in
    repository</echo>
    <exec executable="${compiler}">
    <arg line="-file-specs '${baseDirectory}/src/XIFF.mxml'
    "/>
    <arg line="-output= '${baseDirectory}/bin-debug/' "/>
    </exec>
    </target>
    <target name="copy" description="Copy XIFF bin directory
    to server">
    <echo>Copying bin directory from repository to server.
    Overwriting all files in destination directory.</echo>
    <copy todir="${baseServerDirectory}" overwrite="true">
    <fileset dir="${baseDirectory}/bin-debug/"/>
    </copy>
    </target>
    <target name="launch">
    <echo>Launching browser, URL is the project's html
    page on the server.</echo>
    <exec executable="${firefox}" spawn="true">
    <arg value="${projectURL}"/>
    </exec>
    </target>
    </project>

  • Need help with automatic page when a box is filled with a letter

    I use the Adobe Livecycle Designer 8.0, version 8.0.1291.1.339988.
    I'm trying to make a test for cars in Livecycle, where the car is tested and then there should be a box after every kind of test such as: Brakes front, brakes back, parking brakes, lights, engine, oillevel, exhaust system, clutch and so on..
    When a specific letter is written in the box a page should pop-up where the tester can write what the problem is. And then afterwards continune with the rest of the test.
    In the box, there should be four choices, a G, R and A. When there's a G there shouldn't pop-up a page, because that part is fine. But when there's a R (reparation) and an A (remark), this page should pop-up with the text of what part of the car it is and a text-field where the mechanic that tests the car can write what needs reparing or what's a remark.
    Can anyone help me? I really would appriciate it!
    Jacob Langer

    To support what King_Penguin has provided, here is a support document that describes the steps to take with a device in Recovery Mode. If you can't update or restore your iPhone, iPad, or iPod touch - Apple Support

  • Need help with Separator page

    I need some help to figure out a couple of things about separator pages on HP printers.
    The company that I work for has quite a few HP printers on Windows Server 2012/R2, so we use the Universal PCL6 drivers on all of them to have some consistency.
    The last few days I've been messing around with the standard windows separator page (sysprint.sep). I have managed to modify it almost to my liking, by including contact details to IT support etc.
    I also added 2 company logos to it with postscript. These display fine if i make the file a .ps file and open it with a viewer such as Evince, but when i revert the file back to a .sep file and set it as the Separato Page for my printer the images do no
    print anymore (everything else prints just fine). Do you guys know if i am even able to print postscript images as part of a Separator Page?
    My other question is, does anyone know of any way that i can obtain the Printe's Name to insert into the Separator Page? I could only find commands for Username, Domain, JobID, Date and Time.
    Thanks in advance for any help,
    Stefano

    The advantage of the 'F' command ('\F' in your case) is that you can 'import' a raw PostScript file and not have to worry about having each line preceded by a 'L' command.  The 'F' file can contain arbitrary PostScript, not just the images,
    so you can position your images however you like.  If you really want to simplify things, the .sep file can literally be just the two lines:
    /Fpath-to-real-sep-page-in-raw-postscript-format
    and then you no longer have to mess with the .sep page formatting requirements as the 'real sep page file' is just raw PostScript.
    One possible reason why the image is not printing is that the hex-format image data lines may be too long for the 'L' command.  You could try breaking them into more lines.  PostScript itself doesn't care how many lines it takes.  The
    line length is a non-issue if you use the 'F' command (for just the image data or for the entire sep page).
    Why do you want the printer's name?  It's usually pretty obvious (to the end user) which printer is being used because it's where the printed output resides. :-) There are ways to 'store' a 'name' in the printer itself and the sep page can
    then pull that name from the printer, but if the printer is reset it can lose that 'name'.  You can also hardcode the name in the .sep file itself, but that means you'd need a unique .sep file for each print queue.

  • Need help with create page based on template

    I created a template on my class computer and i created few
    pages based on it.
    Today i moved all the file&folders to my private
    computer, and when i tried to create a new page based on the
    template I got a messege:
    Error accessing file: "c:\sigal\....\template_site.dwt"
    sharing violation (error code 32)
    What is wrong? What do I have to do?
    Can anybody help me please???
    10x

    Please respond to your reply on the DW forum.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "michal2401" <[email protected]> wrote in
    message
    news:eds23r$nhp$[email protected]..
    >I created a template on my class computer and i created
    few pages based on
    >it.
    >
    > Today i moved all the file&folders to my private
    computer, and when i
    > tried to
    > create a new page based on the template I got a messege:
    > Error accessing file: "c:\sigal\....\template_site.dwt"
    sharing violation
    > (error code 32)
    >
    > What is wrong? What do I have to do?
    >
    > Can anybody help me please???
    >
    > 10x
    >
    >
    >

  • Need help with in page hyperlinks

    I am using dreamweaver mx and I have a page in my website
    where there are about 50 names in a column on the left. I would
    like to be able to click on each name and in the middle and right
    side of the page the pics of the pople and a short bio pop up. Is
    there a way I can do this without having to create a page for each
    individual person?
    Thanks

    It's called a DISJOINTED ROLLOVER. You'll fine a lot of
    tutorials online if
    you search for it, but here's one to get you started:
    www.dwfaq.com/tutorials/basics/disjointed.asp
    Mad Dog
    bonnymac wrote:
    > I am using dreamweaver mx and I have a page in my
    website where there
    > are about 50 names in a column on the left. I would like
    to be able
    > to click on each name and in the middle and right side
    of the page
    > the pics of the pople and a short bio pop up. Is there a
    way I can
    > do this without having to create a page for each
    individual person?
    >
    > Thanks

  • Need help with the get url feture

    i can't get a html file from the web into flash if some one
    could help me that would be nice

    You can't get an html file "into" Flash. Are you talking
    about opening an html document (website) from a button within
    Flash? The action script is (place this on the button symbol)
    on(release){
    getURL("
    http://www.someWebsite.com","_blank");
    }

Maybe you are looking for

  • All the white areas of my display are a rapidly flashing pink grid! What did I knock loose?

    I have a mid-2010 Macbook Pro 15-inch. I installed a Seagate 1TB SSHD into the optical drive slot a few months ago. It stopped working so I removed for return. I closed the thing up, turned it on, and suddenly (almost) all white spaces on my screen a

  • Can you run Embedded PL/SQL Gateway and Oracle HTTP Server at the same time

    Hi, I know this will sound a bit odd but their is a business case for asking this. Can you run APEX via the Embedded PL/SQL Gateway and the Oracle HTTP Server at the same time? Would their be any security/stability/etc issues I'd need to worry about?

  • Import GeoRaster with different SRID

    Hi, I use the importFrom command to import TIF file into georaster table. I have raster files that's in two different SRID, 4267 NAD27 and 4269 NAD83. I have to use the georaster column in a sdo_relate query like the following. select a.georid from g

  • Condition types for Import

    For import pricing the conditions what i am going to use is Zcus, for customs duites ZCHA for CHA charges ZTPC for Transportation charges from port to our company premises only these conditions were there apart frm basic price and discount....... All

  • Getting data out of Oracle to SQL Server 2005

    Hello, I am new in Oracle and I have this question. I need to transfer lots of data frequently at day from a large Oracle DB to a SQL Server 2005 Database. Could you tell me what tools (including PL/SQL) ORACLE offers to reach this goal? *.Dat files