belle93
May 2, 11:53 AM
Thanks for the quick reply :-)
No water indicator has been launched, which i guess is for my advantage.
Since Denmark doesnt really have any Apple store, how would you recommend turning it in, if you have any knowledge in that field? :)
-Mikkel
No water indicator has been launched, which i guess is for my advantage.
Since Denmark doesnt really have any Apple store, how would you recommend turning it in, if you have any knowledge in that field? :)
-Mikkel
iSee
Apr 21, 11:41 AM
It's hard to give specific advice without code to look at but...
Put the thing you want to move up in it's own movie clip. Put an instance of the clip on top of the background and mercury. Give the instance a name so you can refer to it in action script. They are different ways you could layer stuff, but start simple and only get more complicated if you have to.
I assume you have some actionscript already that is correctly scaling the mercury, right? That's where you want to put the script to move the banner. Assign a value to the .y property to move it up and down. E.g. if your instance is called "banner" then banner.y = 100 will move it to position 100.
Figure out which y position corresponds to 0% and which to 100%. Let's call those two values yfor0 and yfor100. Yuo can then calulate the current .y position for the banner like this:
banner.y = yfor0 + (yfor100 - yfor0) * percentToTarget;
Once you've got that working, add a dynamic text field to the banner movie clip. Give it a name, e.g. percentDisplay. Then you can access it in script. E.g.,
banner.percentDisplay.text = String(percentToTarget * 100) + " %";
(you probably want to play with rounding to whole number for display)
Likewise you probably want to create another text field for displaying the $ amount raised.
Put the thing you want to move up in it's own movie clip. Put an instance of the clip on top of the background and mercury. Give the instance a name so you can refer to it in action script. They are different ways you could layer stuff, but start simple and only get more complicated if you have to.
I assume you have some actionscript already that is correctly scaling the mercury, right? That's where you want to put the script to move the banner. Assign a value to the .y property to move it up and down. E.g. if your instance is called "banner" then banner.y = 100 will move it to position 100.
Figure out which y position corresponds to 0% and which to 100%. Let's call those two values yfor0 and yfor100. Yuo can then calulate the current .y position for the banner like this:
banner.y = yfor0 + (yfor100 - yfor0) * percentToTarget;
Once you've got that working, add a dynamic text field to the banner movie clip. Give it a name, e.g. percentDisplay. Then you can access it in script. E.g.,
banner.percentDisplay.text = String(percentToTarget * 100) + " %";
(you probably want to play with rounding to whole number for display)
Likewise you probably want to create another text field for displaying the $ amount raised.
AndrewR23
Apr 11, 12:56 AM
i meant local stores. sears? best buy? etc etc.
If i wanted to purchase online, i rather save 8 dollars and purchase from hong kong :)
and wait a month?
If i wanted to purchase online, i rather save 8 dollars and purchase from hong kong :)
and wait a month?
Bigmacduck
Apr 5, 04:42 PM
Use Windows 7 installation DVD and start the boot sector repair program. You usually need to to run it twice and you'll be fine.
jessica.
Jun 29, 04:10 PM
More photos....
wywern209
Apr 21, 09:39 PM
Busted woofer surrounds sound like cracking and flapping on loud bass. Blown tweeters just don't work and make the speaker sound muddy. I'm not sure what hissing is. Could be an amp issue. Try switching speakers to see if the problem moves with the suspected bad one.
THIS. cross check to isolate the issue to the spaker or amp. it could be that u badly damaged the amp section for that particular speaker out on your receiver. This is rather unusual because most modern receivers have a protection mode that limits wattage in order stop overdriving. but such safeguards can only do so much; if it was being driven for hours, it could have easily been damaged.
THIS. cross check to isolate the issue to the spaker or amp. it could be that u badly damaged the amp section for that particular speaker out on your receiver. This is rather unusual because most modern receivers have a protection mode that limits wattage in order stop overdriving. but such safeguards can only do so much; if it was being driven for hours, it could have easily been damaged.
dmb420
Mar 13, 06:26 PM
Hope there will be an app coming out in Ipad 2 in those days to detect radioactivity before fallout carried by wind head to west coast.
http://www.youtube.com/watch?v=svwGRJA28lY
http://www.youtube.com/watch?v=svwGRJA28lY
Consultant
Apr 18, 11:29 AM
With all respect...if you are having to ask what to do with a DMG, do you really think you should be installing OSX server?
Exactly. OP is not the target audience of OS X server.
Exactly. OP is not the target audience of OS X server.
mickbab
Mar 23, 02:00 AM
The iPad launch seems that much closer now that our Australian prices are finally out!
Wifi: 579, 689, 799
3G: 729, 839, 949
I would love to be at the Sydney store launch just for the atmosphere of it all, but unfortunately I live 7 hours away and have school on Friday so don't think I'll be heading there. Hoping to get my hands on an iPad 2 ASAP though. Fingers crossed! :D
Wifi: 579, 689, 799
3G: 729, 839, 949
I would love to be at the Sydney store launch just for the atmosphere of it all, but unfortunately I live 7 hours away and have school on Friday so don't think I'll be heading there. Hoping to get my hands on an iPad 2 ASAP though. Fingers crossed! :D
ljg93
Apr 27, 04:41 PM
hey guys i am adding ads to my app
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
Nnavick
Apr 14, 07:25 AM
Now I see the roads but why there is no name above them?
Mitthrawnuruodo
Sep 29, 06:10 AM
IE for Mac stopped being developed years ago, and doesn't really support CSS. Some things might work, but most things won't.
Forget IE for Mac and test your pages in Safari (Mac), IE (Win), Firefox (Mac/Win/Linux) and Opera (Mac/Win/Linux). If it looks good, and the same, in those, you're safe... ;)
Forget IE for Mac and test your pages in Safari (Mac), IE (Win), Firefox (Mac/Win/Linux) and Opera (Mac/Win/Linux). If it looks good, and the same, in those, you're safe... ;)
definitive
Apr 11, 02:07 PM
I do not see why it should not work. CS3 works without problems under SL, so we can expect that CS4 works under Lion. However, make sure that you do not use incompatible third party plugins!
when sl came out, cs3 was having many issues with it such as loading files and crashing.
My CS5 Master works just fine.
cs5 is a much more recent package, and cs4 isn't really supported anymore. that's the main reason i'm asking.
when sl came out, cs3 was having many issues with it such as loading files and crashing.
My CS5 Master works just fine.
cs5 is a much more recent package, and cs4 isn't really supported anymore. that's the main reason i'm asking.
darkplanets
Mar 14, 09:21 PM
I'm not really surprised about helping out locals, as I imagine most places were.
I'm more surprised about their "write-off" attitude; that they would whatever was needed for someone to get somewhere... impressive.
I'm more surprised about their "write-off" attitude; that they would whatever was needed for someone to get somewhere... impressive.
obeygiant
Jul 27, 09:41 AM
lol. he looks a little worried. :)
Sneeper
Aug 13, 04:25 PM
I can't figure out what the current avatar is doing. Biting something? Spitting something out? And what is it?
It's fascinating to watch though.
It's fascinating to watch though.
iHerzeleid
Jun 22, 12:34 AM
man how embarrassing. yea its sealed as the ipod itself is. the box is not. 55 shipped and you have a deal. pm me?
gkarris
Dec 2, 12:07 AM
Sorry no PC. :)
This is the "Console Games" thread...
Any other cool deals out there post Black Friday?
This is the "Console Games" thread...
Any other cool deals out there post Black Friday?
glocke12
May 6, 01:13 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
It's a paintball
huh...no kidding. thats even more bizarre as no goes back there but me..that I know of anyway.
It's a paintball
huh...no kidding. thats even more bizarre as no goes back there but me..that I know of anyway.
Hammie
Jan 31, 09:48 AM
Maybe iTunes has the keep the library organized setting on?
It is not iTunes exclusive. Copy and paste doesn't work in OpenOffice, Safari, Chrome, Pages, etc.
And the Drag and Drop is not within the iTunes folder. I cannot move files to iDisk, nor can I drag file to the Trash.
It is not iTunes exclusive. Copy and paste doesn't work in OpenOffice, Safari, Chrome, Pages, etc.
And the Drag and Drop is not within the iTunes folder. I cannot move files to iDisk, nor can I drag file to the Trash.
t0mat0
Jun 18, 05:57 PM
Anyone going to be in Milton Keynes at 8am to pick up a new iPhone?
Well, the store opens at 8am. If anyone's interested, i'd imagine anyone with mobile access to macrumors could update this thread. I'll likely be down early to have a look, then go for a walk/get breakfast, then get back when they're a few more people around.
Harder to gauge really - Are there going to be shops open prior to the UK we could use as indicators of demand and stock at Apple stores? (3G iPhone had an amazing midnight opening in Europe - pity the UK didn't have the DJs and music going on to make it a midnight gig atmosphere last year).
Well, the store opens at 8am. If anyone's interested, i'd imagine anyone with mobile access to macrumors could update this thread. I'll likely be down early to have a look, then go for a walk/get breakfast, then get back when they're a few more people around.
Harder to gauge really - Are there going to be shops open prior to the UK we could use as indicators of demand and stock at Apple stores? (3G iPhone had an amazing midnight opening in Europe - pity the UK didn't have the DJs and music going on to make it a midnight gig atmosphere last year).
adam-uk
Dec 14, 11:34 AM
yeah you can use the iMac remote to control iTunes aswell, and DVD Player....anything that Front Row utilises, it can control - in my experience anyway
jmann
Nov 28, 10:38 AM
Anything Oprah likes becomes the most sought after item ever. Apple is lucky for this endorsement.
blackberrypilot
Apr 11, 03:23 PM
No it will peel the edges up on the zagg protector.
Комментариев нет:
Отправить комментарий