remove_action('wp_head','thematic_head_scripts'); is the first line in my functions.php but it won't remove this lines from the generated site.
<script type="text/javascript" src="http://localhost/wordpress/wp-content/themes/thematic/library/scripts/hoverIntent.js"></script>
<script type="text/javascript" src="http://localhost/wordpress/wp-content/themes/thematic/library/scripts/superfish.js"></script>
<script type="text/javascript" src="http://localhost/wordpress/wp-content/themes/thematic/library/scripts/supersubs.js"></script>
<script type="text/javascript" src="http://localhost/wordpress/wp-content/themes/thematic/library/scripts/thematic-dropdowns.js"></script>
put i the remove_action directly at the scripts.php after add_action('wp_head','thematic_head_scripts'); it works.
Whats going wrong?