Is there a way to mark my place in code view?

Hi -
My favorite text editor, BBEdit, has a way to set a marker in a text file so that I can jump back to that spot by selecting it from a menu.
Now I'm using DW CS5 and scrolling up and down on the page is making me crazy.  I'm hoping DW has the same "set marker" feature feature somewhere.
Can someone tell me if it exists and where it is?
Thanks
JL

Insert comments into your code.  Use Find (Ctrl+F), current document, source code to jump back to where you need to go.
          /**this is a CSS comment**/
          <!--this is an HTML comment -->
          //this is a JavaScript comment//
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    Is there a way to move a group of tabs to a new window? I know how to move one tab to a new window, but is there a way to mark a group of tabs and move them to a new window?

    * Tab Mix Plus: https://addons.mozilla.org/firefox/addon/tab-mix-plus/

  • Is there a way to mark favorites radio stations?

    Whether I'm using the ATV Radio app or iTunes radio playing to ATV, it seems I have to navigate to my favorite stations each time.  Is there a way to mark your favorite radio stations to make it easy to flip around?
    Thanks.

    Although I make great use of Apple TV, iPeng handles radio and favourites (whether radio stations, playlists, albums or songs) very much better.
    In my case, I use iPeng to direct my tunes, radio, etc., through a Logitech Squeezebox, but there some options to use iPeng to play through Apple TV via an iPad or iPhone, although I've found this not as fast or responsive as through the Squeezebox.
    Steven

  • My iPhone just loaded 1600  emails dating back over two years from one of my accounts. Is there a way to "mark all as read"?

    My iPhone just loaded 1600  emails dating back over two years from one of my accounts. Is there a way to "mark all as read"?

    Your Comcast accounts are POP (unless you enrolled in the Comcat Beta test of Imap) so they won't sync at all. Either enroll in the Beta test or don't use Comcast.
    Your iCloud account is Imap and should sync just fine, unless you have set it up incorrectly.

  • Is there a way to mark an iMessage or text message as 'unread' after I read it?

    Is there a way to mark an iMessage or text message as a Unread, after I read it?
    for Iphone.

    imessage will only send as a SMS if imessage is unavailable otherwise imessage is used to send message between to Apple devices.

  • Is there a way to have more than one Query view in the same workbook?

    Is there a way to have more than one Query view in the same workbook?
    BEx allows us to insert Queries into workbooks, but not saved views.
    I can open a view in excel & then save it as a workbook....but after that there is no way to add another view to the same excel. If I open a new view, it opens in a new Excel.

    Hi
        when u open some query in BEx analyser,u can save it as a query view as well as workbook.The difference is, workbook is if u work with the design mode which will be in the left side of ur screen and query view is wen u save after drill downing some char or key figures from a intial screen wen u execute query in BEx analyser

  • Is there any way i can let another iphone user view my recieved and sent messages?

    Is there any way i can let another iphone user view my recieved and sent messages?

    Of course. Just show them your phone screen, and let them browse through your messages - the same way you would do so yourself.

  • Is there a way that I can add tracking code (like google analytics) to a Single Edition app?

    Is there a way that I can add tracking code (like google analytics) to a DPS Single Edition app? If not, does the apple app store offer any analytics for a DPS Single Edition app after it is published there?

    Take a look at a previous thread on this topic: http://forums.adobe.com/message/5099353

  • Is there any way to mark messages forwarded by a rule with that little "forwarded" arrow?

    Normally, after forwarding an email, a little arrows appears next to the message reminding me that the message was forwarded. However, when I set up a rule to forward messages, those little "forwarded" arrows don't show up. Why is this?
    Is there any way to automatically mark a message as forwarded?

    I have considered adding a flag as you suggested, but one of the things I really like about the "forwarded" arrow is that, when clicked, it shows me the forwarded message and to whom it was forwarded.
    I've also noticed that the same rule, when I select "Apply Rule", does in fact mark those as forwarded with the arrow, but when I click those arrows, it can't find the message. And then, just like before, any new messages that I receive don't get marked. Just seems odd to me. Wish I didn't have to use the flag workaround.

  • Views for list web parts. Is there a way to allow users to change the view for a list web part without being redirected?

    Hi,
    I added a list view web part into a SharePoint 2013 page and it  is working as expected, except for one thing.
    I have enabled the option for the user to change the view for the web part. However when the user changes it, the user is redirected away from the page containing the web part, to the URL of the list itself.
    Is there a way to circumvent this issue so when the user selects a different view it updates the listing in the web part itself, rather than the user being redirected?
    Thanks in advance for the help.
    Regards,
    P.

    Hi,
    Please understand that one page can only display one view. You could find it out by observing the Address in browser when switching among different views for a list.
    If you would like to change the view of a list web part, you could go to web part propertites > Select view and configure it.
    In addition, here is a thread with similar requirement that might help:
    http://social.technet.microsoft.com/Forums/en-US/18dba190-5ee2-4b50-b005-1360d862f4ba/how-can-end-user-change-the-view-in-a-list-view-web-part?forum=sharepointgeneralprevious
    Regards,
    Rebecca Tu
    TechNet Community Support

  • IS there any way to pass a value in the view as a variable

    Hi
    I have 2 views and 1 view on top of them that calls the 2 views e.g.
    View1
    select ename, deptno, date from emp;
    View2
    select sal, date from salary;
    view3
    select v1.ename, v1.deptno, v2.sal from view1, view2 where date = SOME VARIABLE;
    sql query
    Select * from v3 where date='10-AUG-2007'';
    ITs taking a while is there any way that I can define the V3 as follows
    view3
    select v1.ename, v1.deptno, v2.sal from view1, view2 where v1.date = SOME VARIABLE and v2.date=SOME VARIABLE;
    and then at the sql plus level can i use it like
    I have 2 views and 1 view on top of them that calls the 2 views e.g.
    View1
    select ename, deptno, date from emp;
    View2
    select sal, date from salary;
    view3
    select v1.ename, v1.deptno, v2.sal from view1, view2 where date = SOME VARIABLE;
    sql query
    Select * from v3 where date='10-AUG-2007''; can this date be passes as a variable in side the view definition.

    Setting up a view which contains a substiutution variable

  • Is there a way to show album year in "albums view" in iTunes?

    I have around 1500 albums and I like viewing them all in my albums view with the cover showing. I have sorted them by year which works, but when you are scrolling through them all the years are just bunched together (they are in order though). In previous versions of itunes I would be able to see "2013" and then all albums from that year below... then "2014" then all albums below etc. If I scroll through all my albums back to 2003 for instance, its hard for me to tell what year I am in. So is there a way to get the year to show? I know I had this in the past working, but maybe this feature was removed in itunes 11. thanks for any input!!

    Thanks! Header was the word I was looking for. Maybe they will bring this feature back in an update or in Itunes 12.
    Thanks!

  • Is there a way to save data to just one view in Flex Mobile applications?

    I am having trouble handling data between views in a Flex Mobile application that I am writing. I know how to pass data from one view to another, but I was wondering if there is a way to save that data to a view, then get more data from another view (in this case it would be the same view that the original data came from) and put that data on the same view without overwriting the original data. I would be glad to post some code if anyone needs to see it.

    I think we realise that this is the same question as the other thread.

  • O, Is there a way to fix grey ghosted template code on a html page?

    Hello, Is there a way to fix grey ghosted template wrong placed code on a html page in DWCS6? I have about 15 pages out of about 900 that need the same fix. Only one template is for these 15 pages and it  looks fine but won't attach to pages because of the error on line1.
    The first line below is the error problem and also below is the error when I try to attach the Template.
    (error problem)  <!-- InstanceBegin template="/Templates/Cotton_Silk.dwt" codeOutsideHTMLIsLocked="false" --><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="css/single.css" rel="stylesheet" type="text/css" />
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <head>
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <meta name="title" content="Luna Luz Silk Cotton and Cotton Lycra Button Front Dress  - TodaysClothing.com" />
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXX
    (error)    not updated, error in template or instance file

    Hello, Is there a way to fix grey ghosted template wrong placed code on a html page in DWCS6? I have about 15 pages out of about 900 that need the same fix. Only one template is for these 15 pages and it  looks fine but won't attach to pages because of the error on line1.
    The first line below is the error problem and also below is the error when I try to attach the Template.
    (error problem)  <!-- InstanceBegin template="/Templates/Cotton_Silk.dwt" codeOutsideHTMLIsLocked="false" --><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link href="css/single.css" rel="stylesheet" type="text/css" />
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <head>
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <meta name="title" content="Luna Luz Silk Cotton and Cotton Lycra Button Front Dress  - TodaysClothing.com" />
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXX
    (error)    not updated, error in template or instance file
    in Dreamweaver support forum • Reply • Like Show 0 Likes(0)

  • Is there a way to see album art in Song View?

    I am constantly trying to clean up new tracks as I bring them in.  Is there a way to view the Art for albums/tracks in Song View?  Also, is there a way to "group" tracks by album in this view like iTunes 10 did?  Without visual grouping it makes reading tracks, to verify the album is complete, a real pain.

    No, there is no way to quickly preview artwork of selected songs.      You have to commit with "Get Info".      I agree, the lack of a preview window makes managing the library far more tedious.      You can't trust the artwork in "Album" view because iTunes seems to pull that from the cloud, artwork you see may not embedded in the song.   
    This was the main reason I switched back to iTunes 10.7.     The other reason was the inability to open multiple windows.    I was trying to create a playlist of the songs on my daughters's iPod touch, and ended up having to create a screenshot of the iPod.   Convoluted workarounds for tasks that used to be done in one click is called "progress".

Maybe you are looking for

  • I just restoreed my iPhone 3GS ,

    i just restored my iphone 3gs for an update and when i turned it on nothing was on it just my contacts . My music is all in my library on the computer but it won't sync onto the phone , why wont it sync ?!?!?!?!?!?!?!?!?! I need help now !

  • CMS-Transport Studio: Link Transport Organizer is disabled

    Dear Experts! When I using Change Management Service- Transport Studio, I see that the link Transport Organizer is disabled with information " Change and Transport System not configured for the selected Track" , I already config CMS and TMS as the do

  • Software update freeze trying to update to IOS 6

    After attempting to update my Ipad 2 with IOS6, I am left with my ipad in recovery mode. Itunes recognises the ipad once plugged in via USB. It detects its in recovery and suggest a restore. I click to restore and update. All is well it extracts the

  • BPM -- Unable to deliver event 'RECEIVED' of object

    Hi XI Experts, I have completed a scenario depicting 'BpmPatternCollectMessage', where in IP is going to run with a infinite loop and when a Stop message is sent, IP should stop and tranform the messages collected to send it to target. I have sent st

  • I'm doing my FOURTH restore since updating to 2.0.1

    I am in the middle of my FOURTH restore since "updating" to 2.0.1. Sure 2.0 was buggy, but 2.0.1 is a nightmare for me! I can't add or delete applications on my iPod Touch because the App Store just freezes and then when I wait an hour and force it t