-
1. Re: Has anyone worked out Bullet Point Indentation?
resdesign Nov 4, 2014 4:13 PM (in response to majedsahi)If you use the li tag they should align.
On Tue, Nov 4, 2014 at 4:35 PM, majedsahi <forums_noreply@adobe.com>
-
2. Re: Has anyone worked out Bullet Point Indentation?
resdesign Nov 4, 2014 4:16 PM (in response to majedsahi)Ex: sym.$("text").html('
-
3. Re: Has anyone worked out Bullet Point Indentation?
majedsahi Nov 4, 2014 4:45 PM (in response to resdesign)Hi resdesign,
Thank you for the quick reply. Do i put this code in compositionReady or creationComplete?Here is a small sample, if you could please put the code in the correct place. http://adobe.ly/1y0nSCP
Thanks.
-
4. Re: Has anyone worked out Bullet Point Indentation?
resdesign Nov 4, 2014 5:07 PM (in response to majedsahi)I am not at a computer right now. But yes, put it in compositionReady.
On Tue, Nov 4, 2014 at 6:46 PM, majedsahi <forums_noreply@adobe.com>
-
5. Re: Has anyone worked out Bullet Point Indentation?
majedsahi Nov 4, 2014 5:33 PM (in response to resdesign)Thanks resdesign, i will try this right away..
I appreciate your time and help as always.
Whenever you have time:
I have another small problem which i have spent whole day today without much luck.Basically i have a Grey colour button, with a mouse over i want it Black, and on a click change it to Red. I have this mostly working.. UNTIL i add multiple buttons, then the mouse out effect doesn't work.
Here is my project with two samples. It will make much more sense when you open the files. http://adobe.ly/1y0zIg1
cheer again.
-
6. Re: Has anyone worked out Bullet Point Indentation?
resdesign Nov 4, 2014 6:33 PM (in response to majedsahi)I am not at a computer so I cannot look at your files at the moment and typing code on a smartphone is no fun!So I would do it this way:
sym.$("button").bind('mouseenter', function(){
sym.$("button").css({'background-color':'black'});
});
sym.$("button").bind('click',function(){
sym.$("button").css({'background-color':'red'});
});
I will look at your files tomorrow. I usually group buttons' code so it is more compact.
On Tue, Nov 4, 2014 at 7:34 PM, majedsahi <forums_noreply@adobe.com>


