Urgent Help With Connections File Needed Please

Hello All!
I am getting the following error when I attempt to test my
live site. I am testing database connectivity within my site that
is hosted by GoDaddy. All pages are ASP and the database is stored
in the root directory in GoDaddy's folder called "access_db". The
folder has read/write access.
Here is the error:
Microsoft JET Database Engine error '80040e4d'
Cannot start your application. The workgroup information file
is missing or opened exclusively by another user.
/sitename/requestquote/index.asp, line 130
Here is the code from the connections file:
<%
' FileName="Connection_ado_conn_string.htm"
' Type="ADO"
' DesigntimeType="ADO"
' HTTP="false"
' Catalog=""
' Schema=""
Dim MM_connNAME_STRING
MM_connNAME_STRING =
"Provider=Microsoft.Jet.OLEDB.4.0;DataSource=username\access_db\filename.mdb;UserId=usern ame;Password=password;"
%>
The error above refrences "/sitename/requestquote/index.asp,
line 130", and here is the code:
rs_quote.ActiveConnection = MM_connNAME_STRING
Please help.
Thanks - Matt

Sorry Tim? This is Dave. Did you read what said? I'm not
Matt.
Dave
"TC2112" <[email protected]> wrote in message
news:[email protected]...
> It could be, you'd have to check in the control panel to
make sure
> permissions are set to read and write.
> Have you tried changing the path in your connection
string to the GoDaddy
> path and uploading the file?
> The info I posted tells you how to find out what the
path on GoDaddy is.
>
> Tim
>
>
> "Baxter" <baxter(RemoveThe :-)@gtlakes.com> wrote
in message
> news:[email protected]...
> > Tim,
> > Very good reply! I have no experience with GD other
than the complaints
I
> > have read here about connections to databases etc.
I think that if his
> > connection test is ok that it has to be a
permissions issue? What do you
> > think?
> > Dave
> > "TC2112" <[email protected]> wrote in message
> > news:[email protected]...
> >> Hello,
> >>
> >> Sorry if some of this is repetitive in respect
to what others have
> >> advised
> >> in this thread.
> >> It's an answer I gave someone with similar
problems a while ago.
> >> It does answer your question about the
successful path on your local
> > server
> >> being different than the path on GDs server.
> >> There are also instructions on how to find the
path on GD's server if
> > needed
> >> for DNS-Less connection.
> >>
> >>
> >> Option 1:
> >> You can try using a map path function like this
in your connection
> >> string:
> >> access_db is the folder the database is in and
mydatabase.mdb is the
> > access
> >> file.
> >> Substitute your names.
> >>
> >> STRING = "Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=" &
> >> Server.MapPath("access_db") &
"\mydatabase.mdb;User Id=admin;Password="
> >>
> >> -or-
> >>
> >> Option 2:
> >> You could try an OLEDB DSN-Less connection
instead of using a DSN. It's
> > not
> >> hard to do.
> >>
> >> Step 1 is to figure out the location of the
root directory on the
host's
> >> server..That's very easy to do yourself.
> >>
> >> Just make an asp page (I named mine
"findit.asp"), and put the
following
> >> code between the <body> tags, like so:
> >> <body>
> >> <%
> >> Response.Write("The location of this page
is:<br>")
> >>
Response.Write(Request.ServerVariables("PATH_TRANSLATED") &
"<br>")
> >> Response.Write("The location of my root
directory is:<br>")
> >> Response.Write(Server.MapPath("\"))
> >> Response.Write Path
> >> %>
> >> </body>
> >>
> >>
> >> Upload it to the same location as your site's
home page.
> >> Once your new asp page is uploaded, just
navigate to that page in your
> >> browser.
> >>
> >> For a site on GD the "findit.asp" page displays
something like this:
> >>
> >> The location of this page is:
> >> d:\hosting\mysite\findit.asp
> >> The location of my root directory is:
> >> d:\hosting\mysite
> >>
> >> Now that you know the root directory location
on their server, you can
> >> figure out the path to your database.
> >> Let's say that the folder your database is in
is named _private, and
it
> >> happens to be in the root
> >> directory along with your home page.
> >>
> >> Next, just add the database folder name
(_private) and the database
> >> inside's name (mydatabase.mdb) to the root
directory location:
> >>
> >> d:hosting\mysite\_private\mydatabase.mdb
> >>
> >> That's your Data Source path.
> >>
> >> The connection string would look something like
this:
> >>
> >> = "Provider=Microsoft.Jet.OLEDB.4.0;Data
> >>
Source=d:hosting\mysite\_private\mydatabase.mdb;User
ID=;Password=;"
> >>
> >> (the code above may appear wrapped (two lines)
in the forum/ng but it's
> > one
> >> line with no return within)
> >>
> >> IMPORTANT: If you are using a local testing
server, make a copy of your
> >> connection asp page as a backup.
> >> The reason? The connection information you are
going to put in this
file
> >> will only work on the host's server.
> >> Once you upload the new connection.asp page
with the changes for the
> >> host,
> >> you'll need to change your local copy back to
your local connection so
it
> >> will work on
> >> your local testing server.
> >>
> >> Upload to server.
> >>
> >> Please note: From now on, when you upload (or
"put" if you're using DW)
> >> files that refer to your connection asp page
you're going to get a
> >> warning
> >> that your connection asp on the host is
different than your local copy.
> >> Always say "No" to updating it, or you'll
replace the GD DSN-Less
> > connection
> >> with your local one.
> >>
> >>
> >> Did you set the appropriate read/write
permissions on the
> > directory(folder)
> >> your database is in?
> >> You can do that in GD's control panel.
Hosting> Select your site >
Manage
> > to
> >> open it.
> >>
> >> I hope this helps.
> >>
> >> For what it's worth, I only use GD for domain
names now.
> >> I had numerous problems with some sites hosted
there, switched them to
> >> HostMySite and haven't had any.
> >>
> >> Take care,
> >> Tim
> >>
> >>
> >>
> >>
> >>
> >> "Baxter" <baxter(RemoveThe
:-)@gtlakes.com> wrote in message
> >> news:[email protected]...
> >> > Baxter - I get "Connection was Made
Successfully" if connection to
the
> >> > database was made Successfully not sure
what's going on here? When
you
> >> > look
> >> > at your site files in Dreamwerer on the
server is there a folder
named
> >> > access_db? If so is your data base in that
folder? The database needs
> >> > permissions set to read and write to that
file. Have you checked
> >> > permissions
> >> > on the site? does GD give you a control
panel so that you can set the
> >> > permissions your self? I have never used
GD but have seen where
people
> >> > have
> >> > had lots of problems with them when using
a scripting language. I
don't
> >> > know
> >> > what else it could be at this point.
> >> > Dave
> >> > "mtrueblood"
<[email protected]> wrote in message
> >> > news:[email protected]...
> >> >> Baxter - I get "Connection was Made
Successfully" with the
credentials
> >> >> you
> >> > gave
> >> >> me. My site works just fine on my
local machine with
> > access_trueblood.dsn
> >> > (it
> >> >> also worked with the dsn I initally
created for the site). All pages
> >> > display
> >> >> and I get no errors. I think where the
issue may be, now I am
guessing
> >> > here, is
> >> >> that my connection refrences a
database located in the folder
> >> >>
C:\Users\Administrator\Websites\Sitename\access_db, but once I
upload
> > my
> >> > site,
> >> >> the database still sits in access_db,
but the root folder possibly
has
> >> > changed
> >> >> (maybe causing the connection to
fail).
> >> >>
> >> >> Dooza - I don't understand how I can
use "c:myDsnFile.dsn", when
once
> > I
> >> > upload
> >> >> my site, "c:myDsnFile.dsn" would then
not be the location of my dsn.
> >> >> "c:myDsnFile.dsn" refrences a file on
my computer. I am using an
> >> >> online
> >> > hosting
> >> >> company. Am I not understanding you
correctly? See note above. I did
> > use
> >> > your
> >> >> information and got the following
browser error:
> >> >>
> >> >> Microsoft OLE DB Provider for ODBC
Drivers error '80004005'
> >> >> General error: Invalid file dsn ''
> >> >> /sitename/contactus/index.asp, line
130
> >> >>
> >> >> line 130 -
rs_contactus.ActiveConnection = MM_connTrueblood_STRING
> >> >>
> >> >> I am researching on how to do a
dsn-less connection, unless I can
get
> >> > this
> >> >> figured out.
> >> >>
> >> >> Thanks - Matt
> >> >>
> >> >
> >> >
> >>
> >>
> >
> >
>
>

Similar Messages

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Urgent help with jar file

    I'm writing a program in VB that calls on a JAR file. It has been working great for weeks. Last night, I moved the JAR file to a new location on my machine, and it suddenly stopped working at all.
    I know nothing about Java. Do I need to recompile the file? I tried moving the whole directory back to its original location but it didn't help.
    Thanks in advance.

    Dude I'm telling you straight up, the program has a bug. The evidence is in the error message. Maybe the bug was not manifested before, but it was there.
    Do you have access to the source? Do you know how to compile it? You should recompile it with the -g flag to include debug information. Then the error message will include a method name and line number for the offending portion of code. If you're not able to figure it out yourself, you could post that portion of code here for someone to comment on.

  • Help with (Error-1) needed please

    OK Here goes...... I setup a new iMac for my wife, (In the process I Had to replace the hard disk in her old iMac) Which I took for myself. Now I basically used carbon copy cloner to create the new machine Therefore they probably have the same machine name or something. I set up my account, and installed My software, etc...
    Heres the problem: Her machine can backup to the 1 TB Time Capsule no problem, but when I try I get This message:
    The Backup disk image "/Volumes/Time Capsule/._Lisa ****'s Computer_001b63976362.sparsebundle" could not be accessed (error -1_).
    Is there a way to change this machines Name or ID somewhere in the preferences or at the terminal?
    Please help. Thanks

    I'm not exactly clear on what you did.
    Her iMac has a new internal HD, with a "clone" of your Mac, and can back up ok, right?
    Your Mac (also an iMac?) can no longer back up? Did you install her old internal HD in your Mac?
    Time Machine keeps track of which computer is which by a hardware identifier, not the Computer Name. But for your own purposes, you might want to change one or both Computer Names, via +System Preferences > Sharing.+ See #P1 in [Using Time Machine with a Time Capsule|http://web.me.com/pondini/TimeMachine/TimeCapsule.html] (or use the link in *User Tips* at the top of this forum), for details and limitations on the format of the names. (Sometimes Time Machine will change the name of the sparse bundle on the first backup after you do that, sometimes it won't.)
    Time Machine puts each Mac's backups in a separate sparse bundle, so there should be two on your Time Capsule. The one made under Leopard will include the hardware address in the name; the one made under Snow Leopard won't.
    If you double-click the Time Capsule in a Finder window's sidebar, then click the Data folder, you should see something like this (in +Column View):+
    |
    You may need to just select the proper sparse bundle via +Time Machine Preferences.+
    If that doesn't help, try repairing your sparse bundle, per #A5 in [Time Machine - Troubleshooting|http://web.me.com/pondini/Time_Machine/Troubleshooting.html] (or use the link in *User Tips* at the top of the +Time Machine+ forum).
    If that doesn't work, please correct anything I misunderstood, or if you see something different than the sample.

  • Urgent help with Index page needed

    Can anyone help? I use Dreamweaver 8 to modify and update my
    work's website and I've come across a very strange problem that I
    haven't seen before. I amended a news page, entitled 'news.html'
    and uploaded it as normal last week. I also put a few new pictures
    on the index page and did the same. It was fine at that point,
    however having looked at the page four days later, the news page
    now shows as the home page when you visit the site. It isn't
    calling itself the index page as the browser still shows as the
    page as 'news.html'.
    But the strange thing is, when you first go to the site or
    click the homepage from an internal page, you get a very quick
    glimpse of the original index page before the news page replaces
    it. Almost overwrites it.
    VERY confused. Have tried re uploading the index page and am
    running out of solutions. Any help most welcome.

    On Wed, 21 Feb 2007 11:54:52 +0000 (UTC), "Rach JH"
    <[email protected]> wrote:
    >Can anyone help? I use Dreamweaver 8 to modify and update
    my work's website and
    >I've come across a very strange problem that I haven't
    seen before. I amended a
    >news page, entitled 'news.html' and uploaded it as normal
    last week. I also put
    >a few new pictures on the index page and did the same. It
    was fine at that
    >point, however having looked at the page four days later,
    the news page now
    >shows as the home page when you visit the site. It isn't
    calling itself the
    >index page as the browser still shows as the page as
    'news.html'.
    >
    > But the strange thing is, when you first go to the site
    or click the homepage
    >from an internal page, you get a very quick glimpse of
    the original index page
    >before the news page replaces it. Almost overwrites it.
    >
    > VERY confused. Have tried re uploading the index page
    and am running out of
    >solutions. Any help most welcome.
    URL?
    Win
    Win Day, Wild Rose Websites
    http://www.wildrosewebsites.com
    [email protected]
    Skype winifredday

  • Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    Hi there, I am trying to connect to my server at work from home using a vpn connection. It connects fine and the time ticks along, but when i click go - connect to server, it comes up with connection failed. Please help!

    ... when i click go - connect to server, it comes up with connection failed.
    If you're trying to connect to a Bonjour server on the remote network, that won't work over a layer 3 VPN. Use something like Hamachi or one of the SSH-tunnelling Bonjour proxy apps for that.

  • I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    I have Mac mini and there is partition of boot camp but some miss understanding the osx 10.8.2 is deleted and while I m going to recovery mode the portition can not removing and the also cant repaired what I do I need urgent help ???? Please ?????

    Do you have a Time Machine backup or clone?  If not,
    all is lost if you have in fact deleted your OSX partition
    and you will have to do a reinstall from Recovery HD
    and install all else.

  • Can some help with CR2 files ,Ican`t see CR2 files in adobe bridge

    can some help with CR2 files ,I can`t see CR2 files in adobe bridge when I open Adobe Photoshop cs5- help- about plugins- no camera raw plugins. When i go Edit- preference and click on camera raw  shows message that Adobe camera raw plugin cannot be found

    That's strage. Seems that the Camera Raw.8bi file has been moved to different location or has gone corrupt. By any chance did you try to move the camera raw plugin to a custom location?
    Go To "C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS5\File Formats" and look for Camera Raw.8bi file.
    If you have that file there, try to download the updated camera raw plugin from the below location.
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5371&fileID=5001
    In case  you ae not able to locate the Camera Raw.8bi file on the above location, then i think you need to re-install PS CS5.
    [Moving the discussion to Photoshop General Discussions Forum]

  • Help with connecting Nintendo dsi to internet

    I really need some help with connecting my daughters nintendo dsi to the internet, I have tried everything but just can't get it to work. Would really appreciate any advice....

    Hi sandy and welcome
    Have a read http://bt.custhelp.com/app/answers/detail/a_id/11263/c/346%2C502%2C504/kw/nintendo%20ds/r_id/125731
    Note: The Nintendo DS only supports either no security or WEP security!!
    -+-No longer a forum member-+-

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Help with connection flash builder 4.5 to remote php database

    help with connection flash builder 4.5 to remote php database

    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='.;C:\php5\pear;D:/webserver/apache2/htdocs/ZendFramework/library') in D:\webserver\apache2\htdocs\giga\first-debug\gateway.php on line 27

  • Need some URGENT help with 3 DVD mastering issues PLEASE! :

    Hi there,
    Firstly, I am running DVD SP 3.0.2 on Mac OS 10.4.7 on a G5 Dual 2 GHz 3Gb Ram plenty of HD space...
    I am creating a DVD with: An intro sequence, a main menu, 4 sub menus, and 4 sections with around 12 chapters each.
    I am having some big problems, and a pretty stuck. I will lest them separately below, numbered. If you are able to help, please refer clearly to which number you are helping with. Any help is MUCH appreciated! Many thanks!!
    1. Each of the 5 menus (1 main, 4 sub) have a background video, and a separate audio track. I added the background videos by simply dragging them to the assests panel, then from there onto the menu editor window. They are created in FCP and are properly encoded. However, when I click the motion button, or use the simulator, the videos do not show up. The music plays, but all i see is plain black.
    What is going on?!?!?!
    2. I am really struggling with rollover buttons. I have custom created buttons, and I wand them to have a soft red glow around them when hovered over. HOW ON EARTH DO I ACTUALLY DO THIS??
    The buttons are in photoshop so can be exported with/without background/glow in any format.
    3. Is it possible, once I have got the above rollover working, to have an image to the right hand side of my buttons which changes with the the button rollover. i.e. hover over button 1, see image 1. hover over button 2, image changes to image 2.
    PLEASE PLEASE give any help you can, I have a deadline coming up and am quite stumped. Thanks again!!

    I am still having problems regarding issue Number 1. PLEASE ANYONE HELP?!
    Sorry, I'm not sure about the motion menus. I avoid those whenever possible. But you might click on the menu in the storyline tab (whatever it's called -- the hierarchical view with the disc, tracks, slideshows, etc.) and look at the properties and see if there's anything you have to enable specifically for motion. And be sure the motion button is on on the main display/preview area, but it sounds like you already know how that works.
    For your information, here is a screen grab of the menu I am trying to create:
    http://www.redhavoc.co.uk/stuff/menu.jpg
    I think it is obvious that when a button is hovered over, I want it to glow red, and the image to the right will change to match the respective button.
    IS THIS GOING TO BE POSSIBLE????
    Yes.
    First, your menus have to be layered menus. Unfortunately, there's no way to convert non-layered menus to layered menus, so if you already have non-layered, you'll have to just delete them and create new layered menus. The button (and menu item) to create a layered menu should be right by the normal new-menu item.
    Next, the graphical work is all in Photoshop.
    Side tip: You may already know this, but I found it's best to use 640x480 for the Photoshop document. When I do text and leave it as a text object in the Photoshop file, it resizes poorly in DVDSP. So this ends up being another 720x480 vs. 640x480 square/rectangular pixel conversion thing. DVDSP plays in the 640x480 world, at least as far as the designer can see. So I keep my images at 640x480, and it doesn't have to resize, and everything looks right.
    Moving on... Set up your basic background, the part that won't change (or will have other things covering it, like for your square image).
    Then put in all the buttons and images you'll be using, each part in a separate layer. This could have fifteen buttons (you have five buttons, and there can be three versions for each -- inactive, selected, and activated versions) and five or six square images (you said one for each button, and you might want a blank default if, say, you want to add a "back" button on the menu and want some blank or default image for the square when they're on the "back" button).
    Sometimes people don't bother with a separate "active" button state, but you usually want some visual feedback that they clicked the button. Also, I usually just build the default (unselected) button into the background; that's less hassle later on, and it will just draw the selected or activated buttons over that when the user is on that button.
    Line up all your buttons and images. All the square images lined up perfectly on top of each other, all the buttons in the right places (so you'll have three buttons stacked on top of each other in each spot). Give each layer a short but quickly recognizable name, and line them up in a consistent order. (button1-default, button1-selected, button1-active, button1-squarepicture, then button2-default, ... etc.) Photoshop and DVDSP don't care, but it makes it easier for you later.
    Note that earlier versions of DVDSP won't show Photoshop layer effects. (They handle layers, just not the effects, like inner glow, outer bezel, etc.) I don't remember when they changed this, but I think it was version 4.something. So if you're using that method to make your buttons glow, you may have to flatten each selected or active button layer, and you may even need to create a dummy blank layer underneath it first to give it something to flatten onto.
    Save the file as a standard Photoshop file (.psd). Drag the file onto your DVDSP layered menu and set it as the background.
    Now, in DVDSP, create all your buttons. Just drag boxes over/around the button pictures you have. Feel free to make them extra-big; users won't see the actual area you've selected, and bigger areas makes it easier for people to hit them if they're using a mouse on a computer to watch the DVD. You can point the buttons to their targets now if you want, and set the end jumps on the tracks if you want. (I tend to set the end jumps on the tracks so they automatically select the button for the next track.)
    Now's the fun part, since it will actually hook everything up and should be easy if your naming layer order were consistent. Click on the layered menu (in that hierarchical view) and look at the properties window. (Sorry I can't remember the technical names for all these windows; I'm doing this all from memory. So feel free to ask more questions if you can't find what I'm talking about.) One of the properties tabs should have a grid of checkboxes with a list of your layers. Make sure the background is checked for all of the states. Then check the layers you want to show for each button state, as well as the corresponding square image to show for each.
    Again, I'm doing this from memory, and I can't remember exactly how things are listed in that grid. But I remember it keeps your layers in the same order you put them in the Photoshop file and shows you those names, so it should make it easy to go down the list and check the right boxes.
    And another side tip: You can update the Photoshop file, but once you've put it in DVDSP, if you change the layer order, it will screw up the check boxes you checked. It always shows you the layer names correctly, but it keeps the checkboxes in DVDSP simply assigned to the layer number, so the fifth layer will keep the same checkboxes even if you juggle them so some other layer is now the fifth layer. So if you do juggle the layers in Photoshop, go back and fix the checkbox list in DVDSP.
    I put a sample Photoshop file based on yours in
    http://dan.black.org/layered-menu-sample.psd
    It's quick and dirty, but shows the layer layout, and you should be able to drop it on DVDSP to play with. (I also won't leave it there forever, maybe a few weeks, so anybody reading this in a month or more probably will get a 404 for that url.)
    Again, doing this from memory, so feel free to ask if anything doesn't work or doesn't make sense.
    G4/dual867   Mac OS X (10.4.5)   2GB/0.8TB

  • Need some help with the colour profile please. Urgent! Thanks

    Dear all, I need help with the colour profile of my photoshop CS6. 
    I've taken a photo with my Canon DSLR. When I opened the raw with ACDSee, the colour looks perfectly ok.
    So I go ahead and open in photoshop. I did nothing to the photo. It still looks ok
    Then I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    And the colour started to get messed up.
    And the output is a total diasater
    Put the above photo side by side with the raw, the red has became crimson!!
    So I tried the other option, Use the embedded profile
    The whole picture turns yellowish in Photoshop's interface
    And the output is just the same as the third option.
    Could someone please guide me how to fix this? Thank you.

    I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    always use the embedded profile when opening tagged images in Photoshop - at that point Photoshop will convert the source colors over to your monitor space correctly
    if your colors are wrong at that point either your monitor profile is off, or your source colors are not what you think they are - if other apps are displaying correctly you most likely have either a defective monitor profile or source profile issues
    windows calibrate link:
    http://windows.microsoft.com/en-US/windows7/Calibrate-your-display
    for Photoshop to work properly, i recall you want to have "use my settings for this device" checked in Color Management> Device tab
    you may want to download the PDI reference image to check your monitor and print workflows
    and complete five easy steps to profile enlightenment in Photoshop
    with your settings, monitor profile and source profiles sorted out it should be pretty easy to pinpoint the problem...

  • Need urgent help with exporting movie

    I have a simple 7-minute project on FCP 7 that consists of still images from the internet and hand drawn images with a few animated elements.
    It has only one audio track and two video tracks. I am using PAL DV size format. I am in the UK.
    I exported it using quicktime conversion with H264 compression and good quality and the final file size was 125MB.
    My urgent problem is that I need to upload this file to a university website for an online course in two days, and their file size limit is 50 MB.
    I need to make sure that the teacher can play the file, and I need to get it down to a smaller file size for uploading.
    I have tried all sorts of exporting from FCP. I tried avi, m4v (the setting said ipod and it produced the m4v file), and quicktime mov at different sizes like 1/4vga size. The best file size was 29 mb for the m4v ipod export, and 98mb for the qt mov file exported at medium quality. The avi file grew to 1.2gb!
    I don't know if the m4v file is playable on the system that the teacher uses (she is on a windows computer).
    Can anyone please give me some specific advice on how to create a smaller video file that is more universally compatible?
    I have access to all of the FCP 7 suite and the Adobe CS6 suite which includes Premiere Pro, Prelude and Adobe Media encoder, if that helps.
    Thanks a lot for any advice.

    Jonathan Rooper wrote:
    Hi Luis
    The advice you've been given is good for helping you to get a good quality video at a reasonable file size.
    But it may be worth thinking more about which format will certainly play on your teacher's PC.  The most likely player on any PC is Windows Media Player, which tens to be installed by default.
    The most likely video to be viewed on a PC is one from YouTube...  andH.264 is supported on all "modern" PCs.  QuickTime Player is free and very available.
    A disadvantage for Mac users is that yoou'll ned the Flip4Mac plugin to create WMV movies.  I think the cheapest paid version of Flip4Mac costs around £30. 
    All you need on a Mac fis the free Flip4Mac player.
    If you get that, and choose the web high I quality setting, you should have a file within 50MB that plays reliably and looks OK.  (A cheaper way of doing this, if you have access to a PC, is to use the free Windows Media Encoder).
    Best of luck
    Jonathan

  • Need help with threads?.. please check my approach!!

    Hello frnds,
    I am trying to write a program.. who monitors my external tool.. please check my way of doing it.. as whenever i write programs having thread.. i end up goosy.. :(
    first let me tell.. what I want from program.. I have to start an external tool.. on separate thread.. (as it takes some time).. then it takes some arguments(3 arguments).. from file.. so i read the file.. and have to run tool.. continously.. until there are arguments left.. in file.. or.. user has stopped it by pressing STOP button..
    I have to put a marker in file too.. so that.. if program started again.. file is read from marker postion.. !!
    Hope I make clear.. what am trying to do!!
    My approach is like..
    1. Have two buttons.. START and STOP on Frame..
    START--> pressed
    2. check marker("$" sign.. placed in beginning of file during start).. on file..
         read File from marker.. got 3 arg.. pass it to tool.. and run it.. (on separate thread).. put marker.. (for next reading)
         Step 2.. continously..
    3. STOP--> pressed
         until last thread.. stops.. keep running the tool.. and when last thread stops.. stop reading any more arguments..
    Question is:
    1. Should i read file again and again.. ?.. or read it once after "$" sign.. store data in array.. and once stopped pressed.. read file again.. and put marker ("$" sign) at last read line..
    2. how should i know when my thread has stopped.. so I start tool again??.. am totally confused.. !!
    please modify my approach.. if u find anything odd..
    Thanks a lot in advance
    gervini

    Hello,
    I have no experience with threads or with having more than run "program" in a single java file. All my java files have the same structure. This master.java looks something like this:
    ---master.java---------------------------------------------------
    import java.sql.*;
    import...
    public class Master {
    public static void main(String args []) throws SQLException, IOException {
    //create connection pool here
    while (true) { // start loop here (each loop takes about five minutes)
    // set values of variables
    // select a slave process to run (from a list of slave programs)
    execute selected slave program
    // check for loop exit value
    } // end while loop
    System.out.println("Program Complete");
    } catch (Exception e) {
    System.out.println("Error: " + e);
    } finally {
    if (rSet1 != null)
    try { rSet1.close(); } catch( SQLException ignore ) { /* ignored */ }
    connection.close();
    -------end master.java--------------------------------------------------------
    This master.java program will run continuously for days or weeks, each time through the loop starting another slave process which runs for five minutes to up to an hour, which means there may be ten to twenty of these slave processes running simultaneously.
    I believe threads is the best way to do this, but I don't know where to locate these slave programs: either inside the master.java program or separate slave.java files? I will need help with either method.
    Your help is greatly appreciated. Thank you.
    Logan

Maybe you are looking for

  • Load Balancing, Server and / or Client ?

    Hi I am experiencing a problem with the connection pooling in odp.net. I have a simple test app that creates a connection, executes a query, populates an object then closes the connection. I have found that when I have client side load balancing on v

  • HT204053 Accounts linked together and we don't want to be!

    My teen  (L) daughter's girlfriend (J) is getting my contact updates on her iPhone; her boyfriend (D) uses one of her old phones and I got some of his photos; I think the girls used my iTunes account 2 years ago and connected us, but can't find setti

  • My BBM wont connect to the internet, even though I have a strong internet connection.

    Hello!My phone is an Iphone 5 My BBM was working fine until the end of the day, where it would say that it was still "connecting" to my internet, even though I had strong wi-fi. I left it for 45 minutes and it was still connecting. Also, when i was s

  • Slideshow using dreamweaver CS6

    Have received advice here and created a slideshow using jQuery Cycle2. Loaded own images and working fine on a dreamweaver blank page. When I load onto a fill page as a banner heading the slideshow reverts to 3 or 4 separate images. Any ideas please?

  • To view the content from DMS

    Dear folks,   I uploaded some document in Content Server repository. How want to view what are the document , are stored in DMS ? Pls need solution.