<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2" -->
<rss version="0.91">
    <channel>
        <title>[Pro] [REQ] List ID's Action</title>
        <description>The 10 most recently added comments in the topic &quot;[Pro] [REQ] List ID's Action&quot;</description>
        <link>http://freewaytalk.net/</link>
        <lastBuildDate>Fri, 03 Sep 2010 08:35:18 -500</lastBuildDate>
        <generator>FeedCreator 1.7.2</generator>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_51099</link>
            <description>&lt;p&gt;It was for an ExpressionEngine based project and I ended up just doing it as an embed template.  I was trying to &amp;#8220;do-it-all&amp;#8221; in Freeway and it turned out to be easier another way.  That list item isn&amp;#8217;t going to be updated too often and I was able to rig the entry to work better.&lt;/p&gt;

&lt;p&gt;I was hoping that an action could be used, but hey&amp;#8230;you gotta use what you got with what it can do.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Dan J</author>
            <pubDate>Thu, 09 Apr 2009 22:21:21 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_51061</link>
            <description>&lt;p&gt;Yes, but that&amp;#8217;s a one-way ticket out of Freeway. Your changes will be
overwritten the next time you change your design in Freeway. Depending
on your workflow, that might be a problem. I point it out for others,
since I know you tend to use Freeway as a scratch pad rather than a
project management solution.&lt;/p&gt;

&lt;p&gt;Walter&lt;/p&gt;

&lt;p&gt;On Apr 8, 2009, at 10:58 PM, Dan J wrote:&lt;/p&gt;



&lt;blockquote&gt;
  &lt;blockquote&gt;
    &lt;p&gt;I am sure you can think up some more elaborate examples.&lt;/p&gt;
  &lt;/blockquote&gt;
  
  &lt;p&gt;I probably could, but I&amp;#8217;ve spent enough time with it. :)&lt;/p&gt;
  
  &lt;p&gt;I took care of it manually using Espresso.&lt;/p&gt;
  
  &lt;p&gt;Thanks.&lt;/p&gt;
  
  &lt;hr /&gt;
  
  &lt;p&gt;actionsdev mailing list
  email@hidden
  Update your subscriptions at:
  &lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>waltd</author>
            <pubDate>Thu, 09 Apr 2009 12:37:53 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_51044</link>
            <description>&lt;blockquote&gt;
  &lt;p&gt;I am sure you can think up some more elaborate examples.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I probably could, but I&amp;#8217;ve spent enough time with it. :)&lt;/p&gt;

&lt;p&gt;I took care of it manually using Espresso.&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Dan J</author>
            <pubDate>Thu, 09 Apr 2009 02:58:56 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_51001</link>
            <description>&lt;p&gt;You can do the same thing with classes as with IDs:&lt;/p&gt;

&lt;p&gt;ul.class1 li.first { some style here }&lt;/p&gt;

&lt;p&gt;ul.class2 li.first { some other style here }&lt;/p&gt;

&lt;p&gt;Or you can use the cascade to do this:&lt;/p&gt;

&lt;p&gt;li.first { some fragment of style here }&lt;/p&gt;

&lt;p&gt;ul.class1 { some style here }&lt;/p&gt;

&lt;p&gt;ul.class2 { some other style here }&lt;/p&gt;

&lt;p&gt;As long as you don&amp;#8217;t set a particular attribute in the li that
overrides what you&amp;#8217;ve set in the ul (I&amp;#8217;m thinking color is a good
example here) you can modify that attribute later. Here&amp;#8217;s a practical
example:&lt;/p&gt;

&lt;h3&gt;html&lt;/h3&gt;

&lt;pre&gt;&lt;code&gt;    &amp;lt;ul class=&quot;class1&quot;&amp;gt;
        &amp;lt;li class=&quot;first&quot;&amp;gt;foo&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;bar&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;baz&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
    &amp;lt;ul class=&quot;class2&quot;&amp;gt;
        &amp;lt;li class=&quot;first&quot;&amp;gt;foo&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;bar&amp;lt;/li&amp;gt;
        &amp;lt;li&amp;gt;baz&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;h3&gt;css&lt;/h3&gt;

&lt;pre&gt;&lt;code&gt;ul.class1 {
    color: red;
}
ul.class2 {
    color: blue;
    font-weight: bold;
}
li.first {
    color: green;
    font-weight: bold;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Now both lists have the same color for the first element, but
different colors throughout the rest. The first list has normal type
weight except for the first element, the second has bold type
throughout.&lt;/p&gt;

&lt;p&gt;I am sure you can think up some more elaborate examples.&lt;/p&gt;

&lt;p&gt;Walter&lt;/p&gt;

&lt;p&gt;On Apr 8, 2009, at 12:19 PM, Dan J wrote:&lt;/p&gt;



&lt;blockquote&gt;
  &lt;p&gt;I thought if I could share the same class name in specific instances
  (for instance if I could have both of the first list items have a
  class name of &amp;#8220;first&amp;#8221;) but be under different IDs.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>waltd</author>
            <pubDate>Wed, 08 Apr 2009 16:33:51 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_50999</link>
            <description>&lt;p&gt;Well I wanted to use the &amp;#8220;List Element Styler&amp;#8221; action which would handle applying the class styles to individual list items and I was hoping to get an ID option for my &amp;lt;ul&amp;gt; tag.&lt;/p&gt;

&lt;p&gt;I thought if I could share the same class name in specific instances (for instance if I could have both of the first list items have a class name of &amp;#8220;first&amp;#8221;) but be under different IDs.&lt;/p&gt;

&lt;p&gt;Sounds complicated, but here&amp;#8217;s a code version I suppose.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;    &amp;lt;ul id=&quot;list&quot;&amp;gt;
    &amp;lt;li class=&quot;first&quot;&amp;gt;Something Here&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;

    &amp;lt;ul id=&quot;sublist&quot;&amp;gt;
    &amp;lt;li class=&quot;first&quot;&amp;gt;Something Else&amp;lt;/li&amp;gt;
    &amp;lt;/ul&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Dan J</author>
            <pubDate>Wed, 08 Apr 2009 16:19:36 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_50982</link>
            <description>&lt;p&gt;Hi Dan 
I looked at how styles were applied to lists and I cant see how else to add the class to them, if you did try to add an id rather than just a class then you wouldn&amp;#8217;t be able to make changes to one style and for that change to effect different lists on the same page.
Did you have some other way in which you wanted to control the lists?
all the best max&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>max</author>
            <pubDate>Wed, 08 Apr 2009 12:19:15 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_50939</link>
            <description>&lt;p&gt;I guess that would work.  It&amp;#8217;s not necessarily the cleanest way, but if that&amp;#8217;s how the program handles it.&lt;/p&gt;

&lt;p&gt;Thanks Max.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Dan J</author>
            <pubDate>Tue, 07 Apr 2009 18:16:43 -500</pubDate>
        </item>
        <item>
            <title>Re: [Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763#m_50874</link>
            <description>&lt;p&gt;Hi dan&lt;br /&gt;
why don&amp;#8217;t you just create a style.. for example: with a  name of &lt;strong&gt;test&lt;/strong&gt;, apply &lt;strong&gt;hollow bullets&lt;/strong&gt; and &lt;strong&gt;cyan&lt;/strong&gt; coloured text to this new style. Then just highlight the list text and apply the style via the inspector palette.
This adds the class &lt;strong&gt;test&lt;/strong&gt; to the list. This way it won&amp;#8217;t effect other text around this list and/or any other list in the run of text.&lt;/p&gt;

&lt;p&gt;You could create 3 different list styles and apply different style to dozens of list all on the same page. Plus you could change the look just by adjusting the styles.&lt;/p&gt;

&lt;p&gt;max&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>max</author>
            <pubDate>Tue, 07 Apr 2009 05:39:39 -500</pubDate>
        </item>
        <item>
            <title>[Pro] [REQ] List ID's Action</title>
            <link>http://freewaytalk.net/thread/view/50763</link>
            <description>&lt;p&gt;I have a request for an action, if possible, to apply an ID to the UL tag in a list.  It appears that the CSS Menu action does this already and figured it would be possible through the magic of Actions.&lt;/p&gt;

&lt;p&gt;What I would use this for is to ID about 5 lists on a page and then I could style them all at the same time while styling another series of lists at another time.  Avoiding the use of styling just a general &amp;lt;ul&amp;gt; tag.&lt;/p&gt;

&lt;p&gt;If there already is a way to do so in Freeway, I&amp;#8217;d like to know.&lt;/p&gt;

&lt;p&gt;Thanks.&lt;/p&gt;

&lt;hr /&gt;

&lt;p&gt;actionsdev mailing list
email@hidden
Update your subscriptions at:
&lt;a href=&quot;http://freewaytalk.net/person/options&quot;&gt;http://freewaytalk.net/person/options&lt;/a&gt;&lt;/p&gt;
</description>
            <author>Dan J</author>
            <pubDate>Fri, 03 Apr 2009 21:20:20 -500</pubDate>
        </item>
    </channel>
</rss>
