Spry assets folder needed! but not using any spry widgets, help totally stressed out?

l keep trying to set up a new site on CS 5.5 only to keep being told l need a spry assets folder, l have created my own folder named assets folder within my site folder,l have done a seperate folder ,l have looked through all files cannot find any other folders named this. l have downloaded sample files from Adobe & it still hasn't worked. What an earth can l do l'm sure its something silly as you probably guessed l'm a bit of a novice but this is driving me crazy & why do l need a spry assets folder when l'm not using any spry widgits. Any advice or solutions would be great.
Thank You for your time.

Whenever I set up a new site, I use a "default" setup I learned from Lynda.com.
First a folder with the site name.
Inside that a folder named "www"
Inside that five folders named:
"css" <-for stylesheets other than SpryAsset css
"files" <- for anything that that doesn't go elsewhere
"images" <-for all site images other than SpryAsset images
"scripts" <-for javascript files other than SpryAsset scripts
"SpryAssets" <-Note the capitalization and that it's all one word. DW is VERY picky about this. This folder holds Spry CSS, Spry javascripts and Spry images
In your root folder create a folder and name it SpryAssets and DW will acknowledge it as your Spry folder.
Some people prefer to use "styles" instead of "css". This isn't a big deal.
Some people prefer to use "js" instead of "scripts" but if you embed a flash object, DW will create a "scripts" folder and suddenly you have two folders for javascripts, so I prefer to just have the one named "scripts".

Similar Messages

  • Simple query but not using index..please help??

    I do have this column indexed. Why my query is not using this index?
    Any help .
    select count(*) from v_dis_sub_har;
    SQL>
      COUNT(*)
       4543289
    1 row selected.
    SQL>
    select vzw_vendor_id , count(*)
    from v_dis_sub_har
    group by vzw_vendor_id
    SQL>   2    3    4 
    VZW_VENDOR_ID   COUNT(*)
           200091     908653
           200013     908659
           200012     908659
           200057     908659
           200031     908659
    5 rows selected.
    SQL> SQL>
    explain plan for
    select
    event_seq
    from v_dis_sub_har b 
    where b.VZW_VENDOR_ID='200013'
    -- and b.status='P' and b.extract_date is null
    SQL>   2    3    4    5    6    7 
    Explained.
    SQL> SQL>
    select plan_table_output from table(dbms_xplan.display)
    SQL> SQL>   2 
    PLAN_TABLE_OUTPUT
    Plan hash value: 2852398983
    | Id  | Operation         | Name          | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |               |   908K|  7986K|  3132  (16)| 00:00:38 |
    |*  1 |  TABLE ACCESS FULL| V_DIS_SUB_HAR |   908K|  7986K|  3132  (16)| 00:00:38 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("B"."VZW_VENDOR_ID"=200013)
    13 rows selected.
    SQL> SQL>

    You are right Justin. Oracle is not stupid as you may want to say some times when things do not happen according to you. I just created a bitmap index on status field and look what appened. Som times it uses bitmap index and some times it does not. And the reason is clear. Row count by status. 'S' status uses bitmap index where 'P' does not.
    Thanks for your help.
    select   status, count(*)
    from v_dis_sub_har
    group  by status
    ;SQL>   2    3    4 
    S   COUNT(*)
    A    5844982
    P    2312759
    S      20178
    3 rows selected.
    SQL>
    explain plan for
    select
    event_seq
    from v_dis_sub_har b 
    where
    --b.VZW_VENDOR_ID=200013
    --  and
    b.status='S'
    --and b.extract_date is null
    select plan_table_output from table(dbms_xplan.display)
    SQL>   2    3    4    5    6    7    8    9   10 
    Explained.
    SQL> SQL> SQL> SQL>   2 
    PLAN_TABLE_OUTPUT
    Plan hash value: 829738689
    | Id  | Operation                    | Name                         | Rows  | Bytes | Cost (%CPU)| T
    ime     |
    PLAN_TABLE_OUTPUT
    |   0 | SELECT STATEMENT             |                              | 20290 |   118K|  2772   (1)| 0
    0:00:34 |
    |   1 |  TABLE ACCESS BY INDEX ROWID | V_DIS_SUB_HAR                | 20290 |   118K|  2772   (1)| 0
    0:00:34 |
    |   2 |   BITMAP CONVERSION TO ROWIDS|                              |       |       |            |
            |
    |*  3 |    BITMAP INDEX SINGLE VALUE | V_DISPATCH_SUBSCRIPTION_NDX2 |       |       |            |
            |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       3 - access("B"."STATUS"='S')
    15 rows selected.
    SQL> SQL> set line 120
    SQL> /
    PLAN_TABLE_OUTPUT
    Plan hash value: 829738689
    | Id  | Operation                    | Name                         | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT             |                              | 20290 |   118K|  2772   (1)| 00:00:34 |
    |   1 |  TABLE ACCESS BY INDEX ROWID | V_DIS_SUB_HAR                | 20290 |   118K|  2772   (1)| 00:00:34 |
    |   2 |   BITMAP CONVERSION TO ROWIDS|                              |       |       |            |          |
    |*  3 |    BITMAP INDEX SINGLE VALUE | V_DISPATCH_SUBSCRIPTION_NDX2 |       |       |            |          |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       3 - access("B"."STATUS"='S')
    15 rows selected.
    SQL>
    explain plan for
    select
    event_seq
    from v_dis_sub_har b 
    where
    --b.VZW_VENDOR_ID=200013
    --  and
    b.status='P'
    --and b.extract_date is null
    select plan_table_output from table(dbms_xplan.display)
          SQL>   2    3    4    5    6    7    8    9   10 
    Explained.
    SQL> SQL> SQL> SQL>   2 
    PLAN_TABLE_OUTPUT
    Plan hash value: 2852398983
    | Id  | Operation         | Name          | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |               |  2325K|    13M|  5784  (18)| 00:01:10 |
    |*  1 |  TABLE ACCESS FULL| V_DIS_SUB_HAR |  2325K|    13M|  5784  (18)| 00:01:10 |
    Predicate Information (identified by operation id):
    PLAN_TABLE_OUTPUT
       1 - filter("B"."STATUS"='P')
    13 rows selected.
    SQL>

  • Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help.

    Hello, the 'Save As' dialog box used to allow the backspace button to go up one level in the directory when the focus is in the folder contents box but it does not work any more, please help. BTW the same 'Save As' dialog in other applications still allow the backspace button to go up one level in the directory.

    cor-el,
    I kept forgetting and procrastinating about following your instructions, since I have internet access only for limited amounts of time and usually I am busy with important tasks when I am.
    Out of the blue, the problem corrected itself (the Save As box started to open full screen, then shrunk down to a normal size and the edges can now be dragged to a custom size).
    Even the copy and paste problem in the filenaming area seems to have been less troublesome lately even though there have been no updates to Firefox in a few weeks.
    Even though I marked the solution as not helpful, the problem has in fact been resolved. I will save the solution instructions in case the issue returns.

  • Host does not recognize Spry Assets Folder

    I am using a host named "Dream Host" and after I uploaded the
    website all that showed was a menu bar in outline form. The only
    thing I found that worked was to upload the Spry Assets into the
    same folder with my pages and delete the "Spry Assets" that pointed
    to the folder. An additional problem is the gif arrow images are
    not showing in this option after I deleted the "Spry Assets Folder"
    from the tags. I am not sure why my website is not working with the
    folder. Any help is appreciated.
    Thank You,
    Annette

    graphicartist04 wrote:
    > I forgot to mention that the website is at
    www.lisciencecenter.org
    Regarding the images not showing up, you'll need to update
    the paths to the images in the SpryMenuBarHorizontal.css to remove
    the SpryAssets folder that you removed to make the menus work.
    No idea on why the SpryAssets folder wouldn't work out,
    perhaps it didn't get up loaded to the correct place?
    PS: You have the SpryMenuBarHorizontal.css file attached
    twice, you should remove one of the instances.
    Danilo Celic
    |
    http://blog.extensioneering.com/
    | WebAssist Extensioneer
    | Adobe Community Expert

  • TS3694 I tried to update my iphone 3gs from ios 5 to 6 but because of software crash and while restoring with ios 6 it is not activated. Now I degrade it in ios 4 and can not use any app. How can I update this iphone?

    I tried to update my iphone 3gs from ios 5 to 6 but because of software crash and while restoring with ios 6 it is not activated. Now I degrade it in ios 4 and can not use any app. How can I update this iphone?

    Downgrading the iOS is not supported, and likely has caused the problems you are experiencing.
    You'll need to go elsewhere for support.

  • Is there any way to have an ipad wifi 3G but not use the 3G (therefore avoiding the extra data plan costs) and just use the wifi?

    i am looking to buy an ipad 2 or the new ipad (preferably 32gb) but dont want to buy the 3G version as i have unlimited data usage in my mobile phone plan, i know the wifi only ipad is generally cheaper, but i was wondering if there was a way to buy the ipad with 3G capabilities but not use the 3G and avoid the cost of paying the extra unnecessary data plan? (I know this is a really weird question but i have the opportunity to buy a 3G ipad and was curious of the possibility? any help would be greatly appreciated. cheers

    Yes to your questions.
    You can download a complete iPad User Guide here: http://manuals.info.apple.com/en/ipad_user_guide.pdf
    If you want an iPad 2 32GB it will have to be a refurb model. The only new iPas 2 is 16GB.
    What are all the differences between the iPad 3rd Gen and the iPad 2? Is the iPad 2 worth the cost savings?
    http://everymac.com/systems/apple/ipad/ipad-faq/differences-between-ipad-3rd-gen -2012-ipad-2-2011.html
    What are all the differences between the iPad 3rd Gen models? Which should I buy?
    http://everymac.com/systems/apple/ipad/ipad-faq/differences-between-ipad-3rd-gen -early-2012-models.html
    Should I Buy a New iPad? Or an iPad 2?
    http://www.maclife.com/article/blogs/should_i_buy_new_ipad_or_ipad_2
    iPad 3 vs iPad 2 vs iPad 1- Feature comparisons with iOS 5
    http://ipadhelp.com/ipad-help/ipad-3-vs-ipad-2/
    iPad Q&A
    http://www.everymac.com/systems/apple/ipad/ipad-faq/differences-between-ipad-3rd -gen-early-2012-models.html
    A Few Questions (and Answers) About the New iPad
    http://pogue.blogs.nytimes.com/2012/03/15/a-few-questions-and-answers-about-the-   new-ipad/?ref=personaltechemail&nl=technology&emc=edit_ct_20120315
    New iPad: A Polishing of the Old
    http://www.nytimes.com/2012/03/15/technology/personaltech/the-new-ipad-is-much-t he-same-only-better.html?nl=technology&emc=edit_ct_20120315
    iPad 1, 2 and New Specifications
    http://www.everymac.com/systems/apple/ipad/index-ipad-specs.html
    16GB vs 32GB vs 64GB: Which new iPad storage capacity should you get?
    http://www.imore.com/2012/03/08/16gb-32gb-64gb-ipad-capacity/
    How much content will fit on my iPod or iPhone?
    http://support.apple.com/kb/HT1867
    If you think you may get an iPad 2:
    Refurbished iPad Prices
    http://store.apple.com/us/browse/home/specialdeals/ipad
    New 16GB iPad 2 Prices
    http://store.apple.com/us/browse/home/shop_ipad/family/ipad/select_ipad2
    When iOS 6 comes out in the fall, the iPad 3 will get Siri, but the iPad 2 won't.
     Cheers, Tom

  • Using QuickTime Pro with an .mpg movie, why can I only get it to play from the beginning, but not from any other point in the video?

    Using QuickTime Pro with an .mpg movie, why can I only get it to play from the beginning, but not from any other point in the video? How can I fix this?
    Baffled in SB

    What format of MPG is this?  Is this an MPEG1 or MPEG2 video?  How was the video created?

  • I upgraded to lion today and just realized I am not receiving any mail. I can send out but not receive. i'm using a POP Road Runner account. Any help appreciated.

    I just upgraded to Lion today and realized I'm not receiving any mail. I can send out but not receive. I am using a POP server Road Runner acct. Any help would be appreciated.

    Try Mail->Window->Connection Doctor.  If there is a problem reported, try:
    Open Mail->Preferences and check your settings.
    If you still have a problem, Copy your settings (screen capture ⇧⌘4), delete account, and re-setup account

  • Thunderbird has just duplicated x 2 every message in my inbox but not in any other folder. It's the fourth time it's done this so how do I get rid of them?

    Thunderbird has just duplicated x 2 every message in my inbox but not in any other folder. It's the fourth time it's done this so how do I get rid of them?
    I've just tried downloading two addons to try and fix this from the forum but one wasn't compatible with Firefox 28 and the other started downloading something very dodgy to do with .xpi file converters.
    So any help would be great, thanks.

    first you have an anti virus problem... duplicated message almost always occur through one of two reasons. Anti virus program barfs on a message (relatively common) Server side message corruption (becoming more common, particularly at Yahoo)
    Turning off anti virus checking will generally allow the message that causes the issue to download. logging into the webmail portal and deleting what you think looks like the "next" message to download will usually fix corruption that causes duplication of downloads.
    Now to the cleanup.
    This add-on should do that for you https://addons.mozilla.org/en-US/thunderbird/addon/remove-duplicate-messages-alte/?src=search

  • Corruption? - LIN_ATTACHMENT_RECORDs found but not used

    Hi,
    Since moving to GW 2014, a horrible problem has returned. We've used
    GroupWise for as many years as I can remember, and some years ago, we
    noticed on a regular basis, that emails were becoming 'corrupt' after
    GWCHECK contents scheduled maintenance jobs had been run.
    By 'corrupt', I mean we noticed numerous emails in shared mailbox folders
    (not always shared folders though) were showing as 'posted' items, and the
    header and property information was missing. Occasionally, all that remains
    is a posted note with the subject, but most of the time it's the attachments
    that are missing.
    Now, our end users rely heavily on these shared folders, and there own email
    mailboxes alike.
    I assume the part of the GWCHECK log that refers to this behaviour is
    "LIN_ATTACHMENT_RECORDs found but not used". I assume this because it
    appears in GWCHECK content check logs occasionally, and when I first noticed
    this issue all them years ago, it was present in the logs then too.
    Can anybody help me out here? What is happening, and why? I will be under
    real pressure to explain and solve this as soon as it is noticed once again
    by my end users, and I can see from the logs that it's happened 3 times
    since moving to GW2014...
    Any help very much appreciated.
    Thanks, Alan

    Hi Andy, sorry for the delay.
    This error from previous years, was attributed to something going on with
    the filesystem. However, just like back then, there is no AV or 3rd party
    product touching the GW filesystem, so I have to assume it's not that. The
    file systems is EXT3, the server was built by a consultant, so I'm not
    certain any specific tuning was done with the server. Back in the NW days,
    NSS settings were essential to optimise performance.
    The filesystem is not accessible to anyone.
    Hardware - it's a VM on VMWare, the data is on the SAN, not dedicated
    storage to the VM itself. It's the latest SP's of both SLES and GWise, as
    far as I am aware, it was built less than 2 months ago.
    The SR is open with Novell now, but they are waiting for me to try some
    things that need to be done out of hours...
    "1. Delete all the scheduled maintenance from the admin console.
    2. Wait for 10 minutes
    3. During non working hours, bring down the POA and MTA and any other GW
    agent
    4. Rename the wpcsin, wpcsout from teh PO folder
    5. Rename the wpcsin. wpcsout, MSLOCALfrom the domain folder
    6. Restart the Agents
    You can then use schedule one maintenance on the PO to check if all's well."
    I'm not sure if any of that will change things, will keep this thread
    updated though.
    Thanks, alan

  • When must you FTP the Spry Assets Folder.

    Must the Spry Assets Folder be FTP'ed every time you make a change to the CSS Spry sheets like background color or font color ...etc in Dreamweaver. I think it is a mute question but a set of rules would be a big assist.  Thanks.
    joepd

    Thanks Beth.
    Joe
    In a message dated 6/1/2010 12:46:44 P.M. Eastern Daylight Time, 
    [email protected] writes:
    You  actually are asking a very basic question, and the answer is also 
    basic.
    Here's the rule of thumb:
    Whenever you change  something in a file, you may FTP it to the server, if
    you want your changes to  be reflected in your page online. You will seldom
    if ever change your .js  file; so you will probably never have to FTP that
    more than once. If you are  making changes to your .css Spry stylesheet,
    you will want to FTP those  changes. And, of course, if you change the
    .html page, you will want to FTP  that.
    It is not necessary to FTP the entire SpryAssets folder,  just the files
    that change.
    It is also not necessary to FTP while  you are still working on the pages
    during a single session. Because you may  preview them locally in a browser,
    you might only FTP the changed files at the  end of your editing session, to
    finally check out the pages  online.
    Beth

  • Building an application that does not use any local program files or libraries

    I need to build an application that will not use any local libraries or LabView program files(even if LabView is installed on the PC). I also am curious if anyone knows if there is a way to debug such an application(in it's compiled state).
    Any help on these topics would be greatly appreciated.
    -Nate
    Solved!
    Go to Solution.

    Hello,
    I am unclear on what you are trying to accomplish here. As the previous poster mentioned, if you enable debugging when building your application, you can remotely connect and probe the block diagram of the running executable. Executables use the run-time engine but could also access drivers or other run-times if using a specialized toolkit/module. This all depends on your application.
    -Zach
    Certified LabVIEW Developer

  • No sound.  Mute is not checked, volume all the way up on iTunes and on status bar.  What am I doing wrong or missing?  I restarted last night and it worked before that but not since, any one have any ideas?

    No sound.  Mute is not checked, volume all the way up on iTunes and on status bar.  What am I doing wrong or missing?  I restarted last night and it worked before that but not since, any one have any ideas?
    Thanks, Rob

    First off did you go to System Preferences > Sound > Output > And is the correct output selected?
    Any red light coming out of the headphone jack? If so, you'll need to re-set the little switch in there by inserting a 3.5mm jack carefully in & out 20 odd times. Or grab a toothpick (non-conductive) and a flashlight.
    Tried anything else that produces a sound? On restart do you get the chime? Perhaps check into Audio Midi Setup to ensure your output is selected correctly using the cog at the bottom left.

  • I have an iphone6. And out of the blue my group messages aren't working. I can send but not receiving any back.

    I have an iphone6. And out of the blue my group messages aren't working. I can send but not receiving any back.  Any ideas???  I already reset my phone twice.

    You should check that your settings (both directions) match this:
    IMAP (Incoming Mail Server) information:
    Server name: imap.mail.me.com
    SSL Required: Yes
    Port: 993
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    SMTP (outgoing mail server) information:
    Server name: smtp.mail.me.com
    SSL Required: Yes
    Port: 587
    SMTP Authentication Required: Yes
    Username: [email protected] (use your @me.com address from your iCloud account)
    Password: Your iCloud password
    Note: If you receive errors using SSL, try using TLS instead.
    Your signature says you have 10.6.8 - is this correct? If you migrated from MobileMe using this your mail settings won't be correct and you will need to follow this procedure to re-enter them:
    Entering iCloud email settings manually in Snow Leopard or Leopard

  • Can't create new site, no Spry Assets folder

    I'd be very grateful if someone could help me with this please: I have tried creating a new site and when I try to define the site, I get an error message telling me the Spry assets folder is not inside the site. I have tried creating a SpryAssets folder inside my root folder and still no luck. I don't use spry widgets. I don't want to start using them. Why can't I create a root folder without them?
    Additionally, when I try editing an existing site I keep getting an error message telling me that the root folder does not exist. It does exist since I can navigate to it; and when I try to redefine it I once again get the above error message regarding Spry assets!
    Please Help!!

    Keep the default value for the SpryAssets folder.
    The folder will not be created until you start using Spry widgets

Maybe you are looking for

  • Missing Javascript menu items on Acrobat 9 Standard

    I've been trying to get into some more advanced JS coding within Acrobat for forms, and I'm running into a bit of a roadblock in accessing the javascript tools.  Specifically, I keep seeing references to Javascript menu items under the Advanced menu,

  • Extensions & DW Serial Number

    I would like to buy a 3rd-party plug-in. The vendor requires my DW Serial # so that my copy of the plug-in can be tied to my copy of DW. I purchased DW as part of the CS3 Web Premium package and installed all of the components. DW says that it is unr

  • Bug with ListView!?

    Can someone please run the following code and tell me what is wrong? We have the following problem: If some cell is selected, and then you select another cell, the previously selected cell becomes partly blank (only the text element). If I mouse over

  • How do you delete an asset on the web as I do not sync with my desktop?

    Hello All, I do not use sync from my desktop for my assets. I go to the web login an upload from there. I have a video I want to delete but there seems to be no option to delete. How do I trash/delete this file for good. Thanks, Joey

  • Flash & Webservices Integration

    I have a multiplayer game (4 users) that is developed in Flash and uses Webservices along with .NET. The host gives an invite to other three users and then the invite popup flashes for them. After accepting the invite the game window should launch fo