-
1. Re: .size ._droptarget
Ned Murphy Sep 28, 2011 11:52 AM (in response to Ron Colmen)Although I haven't check your code entirely, you aren't being consistent, which might be the problem...
var format1:TextFormat( = new TextFormat();
format1_fmt.size = 12;
-
2. Re: .size ._droptarget
Ron Colmen Sep 28, 2011 2:27 PM (in response to Ned Murphy)sorry! I agree.
I typed that quickly here (not a copy & paste) as I already tried that and it did not work.
var format1:TextFormat( = new TextFormat();
format1.size = 12;
-
3. Re: .size ._droptarget
Ned Murphy Sep 28, 2011 3:27 PM (in response to Ron Colmen)You have an extra " ( " that shouldn't be there as well
-
4. Re: .size ._droptarget
Ron Colmen Sep 28, 2011 3:30 PM (in response to Ned Murphy)tfNum_mc_.tf.size = 12;//did not work
var format1:TextFormat = new TextFormat();
format1.size = 12;
tfNum_mc_.tf.setNewTextFormat(format1);//did not work
-
5. Re: .size ._droptarget
Ned Murphy Sep 28, 2011 5:09 PM (in response to Ron Colmen)You should pay closer attention to your coding....
var tfNum_mc:MovieClip = tl.attachMovie
...
tfNum_mc_.tf.setNewTextFormat(format1);
-
6. Re: .size ._droptarget
Ron Colmen Sep 29, 2011 4:38 AM (in response to Ned Murphy)Thanks.
If none of these work, what do you suggest?
-
7. Re: .size ._droptarget
Ned Murphy Sep 29, 2011 5:15 AM (in response to Ron Colmen)It will work if you do it correctly... so I suggest you do it correctly and be mindful of your typos... it's better than coming here to have your spelling checks done for you. Still, based on your past postings, it wouldn't surprise me if you haven't disclosed all the info needed to make it work correctly.
-
8. Re: .size ._droptarget
Ron Colmen Sep 29, 2011 8:33 AM (in response to Ned Murphy)Apologies: When the code is long, I am used to post only the section that I'm having trouble with. Also sometimes I introduce typos because I retype them when trying to shortening the code. Will try to avoid these mistakes in future.
I'm not sure why it didn't work previously. Works fine now!! Thanks Ned.
-
9. Re: .size ._droptarget
Ned Murphy Sep 29, 2011 8:40 AM (in response to Ron Colmen)You're welcome



